using Microsoft.AspNetCore.Mvc; using System; using System.Threading.Tasks; using Yitter.IdGenerator; using Znyc.Recruitment.Admin.AspNetCore.Controllers; using Znyc.Recruitment.Admin.AspNetCore.Entitys; using Znyc.Recruitment.Admin.AspNetCore.Mvc; using Znyc.Recruitment.Admin.Commons.Entitys; using Znyc.Recruitment.Admin.Commons.Helpers; using Znyc.Recruitment.Admin.Commons.Pages; using Znyc.Recruitment.Admin.Security.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; using Znyc.Recruitment.Admin.Security.IRepositories; using Znyc.Recruitment.Admin.Security.IServices; namespace Znyc.Recruitment.Admin.WebApi.Controllers { /// /// 数据字典接口 /// [ApiController] [Route("api/Security/[controller]")] public class StatisticalController : AreaApiController { private readonly IApplyJobService _applyJobService; private readonly ILoginLogsRepository _loginLogsRepository; private readonly IOrderService _orderService; private readonly IRecruitmentService _recruitmentService; private readonly IStatisticalService _statisticalService; private readonly IUserService _userService; /// /// 构造函数 /// /// /// /// /// /// /// /// public StatisticalController(IStatisticalService statisticalService, IUserService userService, IRecruitmentService recruitmentService, IApplyJobService applyJobService, ILoginLogsRepository loginLogsRepository, IOrderService orderService ) : base(statisticalService) { _statisticalService = statisticalService; _applyJobService = applyJobService; _userService = userService; _recruitmentService = recruitmentService; _loginLogsRepository = loginLogsRepository; _orderService = orderService; } /// /// 新增前处理数据 /// /// protected override void OnBeforeInsert(StatisticalEntity info) { info.CreatedTime = DateTime.Now; info.CreatedUserId = CurrentUser.UserId; info.IsDeleted = false; } /// /// 在更新数据前对数据的修改操作 /// /// /// protected override void OnBeforeUpdate(StatisticalEntity info) { info.ModifiedUserId = CurrentUser.UserId; info.ModifiedTime = DateTime.Now; } /// /// 异步新增数据 /// /// [HttpPost("InsertAsync")] [FunctionAuthorize("Add")] public async Task InsertAsync() { CommonResult result = new CommonResult(); StatisticalEntity statistical = await _statisticalService.GetStatisticalAsync(); int userAddTotal = await _userService.GetCountByWhereAsync("date_format(CreatedTime,'%Y-%m-%d') = date_format(NOW(),'%Y-%m-%d')"); dynamic todayIncome = await _orderService.GetSumValueByFieldAsync("PaymentMoney", "OrderStatus >= 20 and date_format(CreatedTime,'%Y-%m-%d') = date_format(NOW(),'%Y-%m-%d')"); dynamic income = await _orderService.GetSumValueByFieldAsync("PaymentMoney", "OrderStatus >= 20"); StatisticalEntity info = new StatisticalEntity { Id = YitIdHelper.NextId(), Time = DateTime.Now.ToString("yyyy-MM-dd"), UserAddTotal = userAddTotal, UserSumTotal = await _userService.GetCountByWhereAsync("IsDeleted = 0"), ApplyJobsAddTotal = await _applyJobService.GetCountByWhereAsync("date_format(CreatedTime,'%Y-%m-%d') = date_format(NOW(),'%Y-%m-%d')"), RecruitmentAddTotal = await _recruitmentService.GetCountByWhereAsync("date_format(CreatedTime,'%Y-%m-%d') = date_format(NOW(),'%Y-%m-%d')"), ActiveUserTotal = await _loginLogsRepository.GetActiveUserTotal(), TodayIncome = todayIncome.sumVaule, Income = income.sumVaule, ModifiedTime = DateTime.Now, CreatedTime = DateTime.Now }; if (statistical == null) { info.UserAddTotalPercent = 0; info.TodayIncomePercent = 0; } else { //UserAddTotalPercent = statistical.UserSumTotal!=0 ? (userAddTotal / statistical.UserSumTotal) * 100 : 0, info.UserAddTotalPercent = StringHelper.GetPercent(userAddTotal, statistical.UserSumTotal); //TodayIncomePercent = statistical.Income!=0 ? (todayIncome.sumVaule / statistical.Income) * 100 :0, info.TodayIncomePercent = StringHelper.GetPercent(todayIncome.sumVaule, statistical.Income); } OnBeforeInsert(info); long ln = await _service.InsertAsync(info).ConfigureAwait(false); if (ln > 0) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43001; result.ErrCode = "43001"; } return ToJsonContent(result); } /// /// 异步分页查询 /// /// /// [HttpPost("FindWithPagerSearchAsync")] [FunctionAuthorize("List")] public async Task FindWithPagerSearchAsync(SearchUserModel search) { CommonResult> result = new CommonResult> { ResData = await _statisticalService.FindWithPagerSearchAsync(search), ErrCode = ErrCode.successCode }; return ToJsonContent(result); } } }