123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Bowin.Common.Linq.Entity;
- using EMIS.ViewModel.TeachingMaterial;
- using EMIS.ViewModel.WorkflowManage;
- using EMIS.ViewModel.SystemView;
- using EMIS.ViewModel;
- using EMIS.CommonLogic.SystemServices;
- using EMIS.Entities;
- namespace EMIS.CommonLogic.TeachingMaterial
- {
- public interface ITeachersOrderServices : IBaseWorkflowServices<ET_TeachersOrder>
- {
- /// <summary>
- /// 查询教师征订记录
- /// </summary>
- /// <param name="configuretView"></param>
- /// <param name="campusID"></param>
- /// <param name="collegeID"></param>
- /// <param name="schoolyearID"></param>
- /// <param name="educationID"></param>
- /// <param name="learningformID"></param>
- /// <param name="approvalStatus"></param>
- /// <param name="pageIndex"></param>
- /// <param name="pageSize"></param>
- /// <returns></returns>
- IGridResultSet<TeachersOrderView> GetTeachersOrderViewGrid(ViewModel.ConfiguretView configuretView, Guid? schoolyearID,
- Guid? collegeID, Guid? coursematerialID, Guid? publishID, int? ApprovalStatus, int pageIndex, int pageSize);
- /// <summary>
- /// 导出教师征订记录
- /// </summary>
- /// <param name="configuretView"></param>
- /// <param name="campusID"></param>
- /// <param name="collegeID"></param>
- /// <param name="schoolyearID"></param>
- /// <param name="educationID"></param>
- /// <param name="learningformID"></param>
- /// <param name="approvalStatus"></param>
- /// <param name="pageIndex"></param>
- /// <param name="pageSize"></param>
- /// <returns></returns>
- List<TeachersOrderView> GetTeachersOrderViewList(ViewModel.ConfiguretView configuretView, Guid? schoolyearID,
- Guid? collegeID, Guid? coursematerialID, Guid? publishID, int? ApprovalStatus);
- IGridResultSet<TeachersOrderView> GetTeachersOrderDetailViewList(Guid? teachersOrderID, int pageIndex, int pageSize);
- /// <summary>
- /// 查询教师征订已经提交申请记录
- /// </summary>
- /// <param name="configuretView"></param>
- /// <param name="campusID"></param>
- /// <param name="collegeID"></param>
- /// <param name="schoolyearID"></param>
- /// <param name="educationID"></param>
- /// <param name="learningformID"></param>
- /// <param name="approvalStatus"></param>
- /// <param name="pageIndex"></param>
- /// <param name="pageSize"></param>
- /// <returns></returns>
- IGridResultSet<TeachersOrderView> GetTeachersOrderExamineViewGrid(ViewModel.ConfiguretView configuretView, Guid? schoolyearID,
- Guid? collegeID, Guid? coursematerialID, Guid? publishID, int? ApprovalStatus, int pageIndex, int pageSize);
- /// <summary>
- /// 提交教师征订记录
- /// </summary>
- /// <param name="teachersOrderIDs"></param>
- /// <param name="userID"></param>
- /// <param name="comment"></param>
- void SubmitTeachersOrder(List<Guid> teachersOrderIDs, Guid userID, string comment = "");
- /// <summary>
- /// 审核教师征订记录
- /// </summary>
- /// <param name="specialtyApplyIDs">专业申请ID</param>
- /// <param name="userID">当前操作用户ID</param>
- /// <param name="actionID">动作ID</param>
- /// <param name="comment">处理意见</param>
- void ApproveTeachersOrder(List<Guid> teachersOrderIDs, Guid userID, ActionView actionView, string comment = "");
- /// <summary>
- /// 添加教师征订信息
- /// </summary>
- /// <param name="SpecialtyApply">申请专业实体</param>
- /// <returns></returns>
- void AddTeachersOrder(List<TeachersOrderView> teachersOrderViews, Guid createUserID);
- /// <summary>
- /// 获取流程审批步骤详细信息
- /// </summary>
- /// <param name="specialtyApplyID"></param>
- /// <returns></returns>
- IGridResultSet<WorkflowApproveHistoryView> GetWorkflowApproveHistoryView(Guid? teachersOrderID);
- /// <summary>
- /// 删除征订信息
- /// </summary>
- /// <param name="publishID"></param>
- void DeleteTeachersOrder(List<Guid> teachersOrderIDs);
- /// <summary>
- /// 编辑征订信息
- /// </summary>
- /// <param name="publisherView"></param>
- void EditTeachersOrder(TeachersOrderView TeachersOrderView, Guid createUserID);
- /// <summary>
- /// 获取单个征订信息
- /// </summary>
- /// <returns></returns>
- TeachersOrderView GetSingleTeachersOrder(Guid teachersOrderID);
- /// <summary>
- /// 获取单个征订信息
- /// </summary>
- /// <returns></returns>
- TeachersOrderView GetSingleTeachersOrderById(Guid teachersOrderID);
- /// <summary>
- /// 获取征订信息列表导出
- /// </summary>
- /// <param name="exp"></param>
- /// <returns></returns>
- IList<TeachersOrderView> GetTeachersOrderViewExcel(ConfiguretView configuretView, Guid? publishID, Guid? coursematerialID, bool? isLate);
- /// <summary>
- /// 获取教师征订及关联教库信息
- /// </summary>
- /// <param name="configuretView"></param>
- /// <param name="publishID"></param>
- /// <param name="coursematerialID"></param>
- /// <param name="teachingMaterialPoolID"></param>
- /// <param name="teachersOrderID"></param>
- /// <param name="isLate"></param>
- /// <param name="pageIndex"></param>
- /// <param name="pageSize"></param>
- /// <returns></returns>
- IGridResultSet<TeachingMaterialPoolView> GetTeachingOrderByTeachingMaterialPoolViewGrid(ConfiguretView configuretView, Guid? publishID, Guid? coursematerialID, Guid? teachingMaterialPoolID, Guid? teachersOrderID, bool? isLate, int pageIndex, int pageSize);
- /// <summary>
- /// 获取书库信息列表
- /// </summary>
- /// <param name="exp"></param>
- /// <returns></returns>
- IGridResultSet<TeachingMaterialPoolView> GetTeachersOrderOrTeachingMaterialPoolViewGrid(ConfiguretView configuretView, Guid? teachingMaterialID, Guid? coursematerialID, bool? isLate, Guid? college, Guid? schoolyearID, int pageIndex, int pageSize);
- void OnApproveEnd(List<Guid> teacherOrderIDList, Guid? userID);
- }
- }
|