123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using GxPress.Api.AdminControllers;
- using GxPress.Auth;
- using GxPress.Entity.WorkFlowDto;
- using GxPress.EnumConst;
- using GxPress.Repository.Interface;
- using GxPress.Repository.Interface.WorkFlow;
- using GxPress.Repository.Interface.WorkProcess;
- using GxPress.Request.App.Flow;
- using GxPress.Result.App;
- using GxPress.Result.App.Flow;
- using GxPress.Service.Interface;
- using GxPress.Service.Interface.Doc;
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Logging;
- namespace GxPress.Api.AppControllers
- {
-
-
-
- [Route("api/app/flow")]
- [ApiController]
- [Authorize]
- public partial class AppFlowController : ControllerBase
- {
- private readonly ILogger<AppVersionController> _logger;
- private readonly IWebHostEnvironment _environment;
- private readonly ILoginContext _loginContext;
- private readonly IFlowMessageRepository _flowMessageRepository;
- private readonly IFlowTodoRepository _flowTodoRepository;
- private readonly IProcessRepository _processRepository;
- private readonly IProcessService _processService;
- private readonly IFlowService _flowService;
- private readonly IUserRepository _userRepository;
- private readonly IFlowRepository _flowRepository;
- private readonly IDocService docService;
- public AppFlowController(
- ILogger<AppVersionController> logger,
- IWebHostEnvironment environment,
- ILoginContext loginContext,
- IFlowMessageRepository flowMessageRepository,
- IFlowTodoRepository flowTodoRepository,
- IProcessRepository processRepository,
- IProcessService processService,
- IFlowService flowService,
- IUserRepository userRepository,
- IFlowRepository flowRepository, IDocService docService
- )
- {
- _logger = logger;
- _environment = environment;
- _loginContext = loginContext;
- _flowMessageRepository = flowMessageRepository;
- _flowTodoRepository = flowTodoRepository;
- _processRepository = processRepository;
- _processService = processService;
- _flowService = flowService;
- _userRepository = userRepository;
- _flowRepository = flowRepository;
- this.docService = docService;
- }
-
-
-
-
-
- [HttpDelete("{id}")]
- public async Task Delete(int id)
- {
- await _flowService.DeleteAsync(id);
- }
-
-
-
-
-
- [HttpPost]
- [AllowAnonymous]
- public async Task<FlowDto> Add([FromBody] FlowDto flow)
- {
- flow.State = FlowState.Checking;
- flow.UserId = _loginContext.AccountId;
- if (flow.Id > 0)
- await _flowService.DeleteAsync(flow.Id);
- flow.Id = await _flowService.AddAsync(flow);
- return flow;
- }
-
-
-
-
-
- [HttpGet("{id}")]
- [AllowAnonymous]
- public async Task<FlowResult> Get(int id)
- {
- await _flowTodoRepository.UpdateCCIsDoneAsync(_loginContext.AccountId, id);
- return await _flowService.GetFlowResult(id, _loginContext.AccountId);
- }
-
-
-
-
-
- [HttpGet("web/{id}")]
- [AllowAnonymous]
- public async Task<FlowResult> GetWeb(int id)
- {
-
- return await _flowService.GetFlowResult(id, 0);
- }
-
-
-
-
- [HttpGet]
- [AllowAnonymous]
- public async Task<ListResult> List([FromQuery] FlowListRequest request)
- {
- var userId = _loginContext.AccountId;
- if (request.Type == nameof(FlowListTypeConst.MyChecking))
- {
- return await _flowService.ListMyCheckingAsync(userId, request, nameof(FlowListTypeConst.MyChecking));
- }
- if (request.Type == nameof(FlowListTypeConst.MyChecked))
- {
- return await _flowService.ListMyCheckedAsync(userId, request, nameof(FlowListTypeConst.MyChecked));
- }
- if (request.Type == nameof(FlowListTypeConst.CcUnread))
- {
- return await _flowService.ListCcUnreadAsync(userId, request);
- }
- if (request.Type == nameof(FlowListTypeConst.CcAll))
- {
- return await _flowService.ListCcAllAsync(userId, request);
- }
- if (request.Type == nameof(FlowListTypeConst.SubmittedChecking))
- {
- return await _flowService.ListSubmittedCheckingAsync(userId, request);
- }
- if (request.Type == nameof(FlowListTypeConst.SubmittedChecked))
- {
- return await _flowService.ListSubmittedCheckedAsync(userId, request);
- }
- return new ListResult();
- }
-
-
-
-
- [HttpPost("list")]
- public async Task<ListResult> PostList(FlowListRequest request)
- {
- var userId = _loginContext.AccountId;
- if (request.Type == nameof(FlowListTypeConst.MyChecking))
- {
- return await _flowService.ListMyCheckingAsync(userId, request, nameof(FlowListTypeConst.MyChecking));
- }
- if (request.Type == nameof(FlowListTypeConst.MyChecked))
- {
- return await _flowService.ListMyCheckedAsync(userId, request, nameof(FlowListTypeConst.MyChecked));
- }
- if (request.Type == nameof(FlowListTypeConst.CcUnread))
- {
- return await _flowService.ListCcUnreadAsync(userId, request);
- }
- if (request.Type == nameof(FlowListTypeConst.CcAll))
- {
- return await _flowService.ListCcAllAsync(userId, request, nameof(FlowListTypeConst.CcAll));
- }
- if (request.Type == nameof(FlowListTypeConst.SubmittedChecking))
- {
- return await _flowService.ListSubmittedCheckingAsync(userId, request, nameof(FlowListTypeConst.SubmittedChecking));
- }
- if (request.Type == nameof(FlowListTypeConst.SubmittedChecked))
- {
- return await _flowService.ListSubmittedCheckedAsync(userId, request);
- }
- return new ListResult();
- }
-
-
-
-
- [HttpGet("todo")]
- [AllowAnonymous]
- public async Task<ListResult> TodoList([FromQuery] AdminFlowController.ListRequest request)
- {
- var userId = _loginContext.AccountId;
- var flowListRequest = new FlowListRequest();
- flowListRequest.Page = request.Page;
- flowListRequest.PerPage = request.PerPage;
- var result = await _flowService.ListMyCheckingAsync(userId, flowListRequest, nameof(FlowListTypeConst.MyChecking));
- return new ListResult
- {
- Count = result.Count,
- Items = result.Items
- };
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
-
-
-
-
- [HttpGet("count")]
- [AllowAnonymous]
- public async Task<GetCountResult> GetCount()
- {
- var userId = _loginContext.AccountId;
- var request = new FlowListRequest();
- var result = new GetCountResult
- {
- MyCheckingCount =
- await _flowTodoRepository.GetCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), false,
- request),
- MyCheckedCount =
- await _flowTodoRepository.GetCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), true, request),
- SubmittedCheckingCount = await _flowRepository.GetCountByUserIdAsync(userId, true, request),
-
- SubmittedCheckedCount = await _flowRepository.GetCountByUserIdAsync(userId, false, request),
- CcUnreadCount =
- await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, false),
- CcAllCount = await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, true)
- };
- return result;
- }
-
-
-
-
- [HttpGet("filter")]
- [AllowAnonymous]
- public async Task<List<Option>> Filter()
- {
- var processes = await _processRepository.GetListByDepartmentIdAsync(_loginContext.DepartmentId);
- var list = processes.Select(x => new Option
- {
- Label = x.Name,
- Value = x.Id
- }).ToList();
- list.Insert(0, new Option
- {
- Label = "全部",
- Value = 0
- });
- return list;
- }
- }
- }
|