DailyFeePaymentRepository.cs 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  1. using AutoMapper;
  2. using NPOI.SS.Formula.Functions;
  3. using OASystem.Domain;
  4. using OASystem.Domain.Dtos;
  5. using OASystem.Domain.Dtos.Financial;
  6. using OASystem.Domain.Entities.Financial;
  7. using OASystem.Domain.ViewModels.Financial;
  8. using OASystem.Infrastructure.Repositories.System;
  9. using System;
  10. using System.Collections.Generic;
  11. using System.ComponentModel.Design;
  12. using System.Linq;
  13. using System.Runtime.Intrinsics.Arm;
  14. using System.Text;
  15. using System.Threading.Tasks;
  16. namespace OASystem.Infrastructure.Repositories.Financial
  17. {
  18. /// <summary>
  19. /// 财务 - 日付申请
  20. /// </summary>
  21. public class DailyFeePaymentRepository : BaseRepository<Fin_DailyFeePayment, Fin_DailyFeePaymentView>
  22. {
  23. private readonly IMapper _mapper;
  24. private readonly System.SetDataTypeRepository _setDataTypeRep;
  25. private readonly System.UsersRepository _UsersRep;
  26. private readonly System.CompanyRepository _CompanyRep;
  27. /// <summary>
  28. ///
  29. /// </summary>
  30. /// <param name="sqlSugar"></param>
  31. /// <param name="mapper"></param>
  32. /// <param name="setDataTypeRep"></param>
  33. /// <param name="usersRep"></param>
  34. /// <param name="companyRep"></param>
  35. public DailyFeePaymentRepository(SqlSugarClient sqlSugar,
  36. IMapper mapper,
  37. System.SetDataTypeRepository setDataTypeRep,
  38. UsersRepository usersRep,
  39. CompanyRepository companyRep)
  40. : base(sqlSugar)
  41. {
  42. this._mapper = mapper;
  43. this._setDataTypeRep = setDataTypeRep;
  44. this._UsersRep = usersRep;
  45. this._CompanyRep = companyRep;
  46. }
  47. /// <summary>
  48. /// 日付申请查询 使用的数据源
  49. /// </summary>
  50. /// <param name="dto"></param>
  51. /// <returns></returns>
  52. public async Task<Result> GetPagePriceTypeData(PortDtoBase dto, int currUserId = 0)
  53. {
  54. Result result = new Result() { Code = -2 };
  55. dynamic? DailyFeePaymentList = null;
  56. var setTypeData = _setDataTypeRep.QueryDto<Sys_SetDataType, Fin_DailyFeePaymentPagePriceTypeView>().ToList();
  57. var setData = _setDataTypeRep.QueryDto<Sys_SetData, Fin_DailyFeePaymentPagePriceSubTypeView>().ToList();
  58. //48人员费用 49办公费用 50 销售费用 51 其他费用 55 大运会
  59. var typeIds = new List<int>() {
  60. 48, //人员费用
  61. 49, //办公费用
  62. 50, //销售费用
  63. 51, //其他费用
  64. 55, //大运会
  65. 90, //各部门基础固定费用明细
  66. 104, //团组费用
  67. };
  68. var priceTypeData = setTypeData.Where(s => typeIds.Contains(s.Id)).ToList();
  69. var priceSubTypeData = setData.Where(s => typeIds.Contains(s.STid)).ToList();
  70. //var isEnable = false;
  71. //员工姓名列表
  72. var userData = _sqlSugar.Queryable<Sys_Users>()
  73. .LeftJoin<Sys_Department>((u, d) => u.DepId == d.Id)
  74. .LeftJoin<Sys_JobPost>((u, d, jp) => u.JobPostId == jp.Id)
  75. .Where((u, d, jp) => u.IsDel == 0)
  76. .Select((u, d, jp) => new
  77. {
  78. u.Id,
  79. u.CnName,
  80. u.DepId,
  81. d.DepName,
  82. u.JobPostId,
  83. jp.JobName
  84. })
  85. .ToList();
  86. //1 经理职位 查看该部门下所有人员
  87. if (currUserId > 0)
  88. {
  89. //42
  90. var auditUserIds = _sqlSugar.Queryable<Sys_UserAuthority>().Where(x => x.IsDel == 0 && x.SmId == 42 && x.FId == 12).Select(x => x.UId).ToList();
  91. if (!auditUserIds.Contains(currUserId))
  92. {
  93. var screenWheres = new List<string>() { "经理", "主管" };
  94. var userInfo = userData.Find(x => x.Id == currUserId && screenWheres.Contains(x.JobName));
  95. if (userInfo != null)
  96. {
  97. userData = userData.Where(x => x.DepName.Equals(userInfo.DepName)).ToList();
  98. }
  99. else
  100. {
  101. userData = userData.Where(x => x.Id == currUserId).ToList();
  102. }
  103. }
  104. else
  105. {
  106. userData.Insert(0, new { Id = -1, CnName = "全部", DepId = 0, DepName = "", JobPostId = 0, JobName = "" });
  107. }
  108. }
  109. var userData1 = userData.Select(x => new { x.Id, x.CnName }).ToList();
  110. //62 公转 63 私转
  111. var feeMarkTypeData = setTypeData.Where(s => s.Id == 62 || s.Id == 63).ToList();
  112. var feeMarkSubTypeData = setData.Where(s => s.STid == 62 || s.STid == 63).ToList();
  113. var companyNameData = await _CompanyRep.GetCompanyNameData();
  114. if (dto.PortType == 1) //web
  115. {
  116. DailyFeePaymentList = new
  117. {
  118. FeeTypeData = priceTypeData,
  119. FeeSubTypeData = priceSubTypeData,
  120. UserNameData = userData1,
  121. FeeMarkTypeData = feeMarkTypeData,
  122. FeeMarkSubTypeData = feeMarkSubTypeData,
  123. CompanyNameData = companyNameData.Data
  124. };
  125. }
  126. else if (dto.PortType == 2) //安卓
  127. {
  128. DailyFeePaymentList = new
  129. {
  130. UserNameData = userData1,
  131. FeeTypeData = priceTypeData,
  132. FeeTypeSubData = priceSubTypeData
  133. };
  134. }
  135. result.Code = 0;
  136. result.Msg = "查询成功!";
  137. result.Data = DailyFeePaymentList;
  138. return result;
  139. }
  140. /// <summary>
  141. /// 日付申请查询 使用的数据源
  142. /// </summary>
  143. /// <param name="dto"></param>
  144. /// <returns></returns>
  145. public async Task<Result> GetPriceTypeAddData(PortDtoBase dto)
  146. {
  147. Result result = new Result() { Code = -2 };
  148. dynamic? DailyFeePaymentList = null;
  149. var setTypeData = _setDataTypeRep.QueryDto<Sys_SetDataType, Fin_DailyFeePaymentPagePriceTypeView>().ToList();
  150. var setData = _setDataTypeRep.QueryDto<Sys_SetData, Fin_DailyFeePaymentPagePriceSubTypeView>().ToList();
  151. //48人员费用 49办公费用 50 销售费用 51 其他费用 55 大运会
  152. var priceTypeData = setTypeData.Where(s => s.Id == 48 || s.Id == 49 || s.Id == 50 || s.Id == 51 || s.Id == 55).ToList();
  153. var priceSubTypeData = setData.Where(s => s.STid == 48 || s.STid == 49 || s.STid == 50 || s.STid == 51 || s.STid == 55).ToList();
  154. //员工姓名列表
  155. var userNameData = await _UsersRep.GetUserNameList(dto.PortType);
  156. //62 公转 63 私转
  157. var feeMarkTypeData = setTypeData.Where(s => s.Id == 62 || s.Id == 63).ToList();
  158. var feeMarkSubTypeData = setData.Where(s => s.STid == 62 || s.STid == 63).ToList();
  159. var companyNameData = await _CompanyRep.GetCompanyNameData();
  160. if (dto.PortType == 1) //web
  161. {
  162. DailyFeePaymentList = new Fin_DailyFeePaymentPagePriceTypeDataView
  163. {
  164. FeeTypeData = priceTypeData,
  165. FeeSubTypeData = priceSubTypeData,
  166. UserNameData = userNameData.Data,
  167. FeeMarkTypeData = feeMarkTypeData,
  168. FeeMarkSubTypeData = feeMarkSubTypeData,
  169. CompanyNameData = companyNameData.Data
  170. };
  171. }
  172. else if (dto.PortType == 2) //安卓
  173. {
  174. DailyFeePaymentList = new
  175. {
  176. CompanyNameData = companyNameData.Data,
  177. FeeTypeData = feeMarkTypeData,
  178. FeeTypeSubData = feeMarkSubTypeData
  179. };
  180. }
  181. result.Code = 0;
  182. result.Msg = "查询成功!";
  183. result.Data = DailyFeePaymentList;
  184. return result;
  185. }
  186. /// <summary>
  187. /// 日付申请 page 查询
  188. /// </summary>
  189. /// <param name="dto"></param>
  190. /// <returns></returns>
  191. public async Task<Result> GetPageSearchAll(PageDailyFeePaymentDto dto)
  192. {
  193. Result result = new Result() { Code = -2 };
  194. ListViewBase<Fin_DailyFeePaymentPageListView> dailyFeePaymentPageList = new ListViewBase<Fin_DailyFeePaymentPageListView>()
  195. {
  196. ReceiveDt = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  197. };
  198. #region sql条件处理
  199. string sqlWhere = "";
  200. if (dto.CompanyId != -1) //公司
  201. sqlWhere += string.Format(" And dfp.CompanyId = {0}", dto.CompanyId);
  202. if (dto.FinancialAuditStatus != -1) //财务审核
  203. sqlWhere += string.Format(" And dfp.FAudit = {0}", dto.FinancialAuditStatus);
  204. if (dto.ManagerAuditStatus != -1) //总经理审核
  205. sqlWhere += string.Format(" And dfp.MAudit = {0}", dto.ManagerAuditStatus);
  206. if (dto.IsPaySign != -1) //付款状态
  207. {
  208. sqlWhere += string.Format(" And dfp.IsPay = {0}", dto.IsPaySign);
  209. }
  210. if (dto.FeeTypeId != -1) //费用类型
  211. {
  212. if (dto.FeeSubTypeId != -1) //子类处理
  213. {
  214. sqlWhere += string.Format(" And dfp.PriceTypeId = {0}", dto.FeeSubTypeId);
  215. }
  216. else
  217. {
  218. var setData = _setDataTypeRep.QueryDto<Sys_SetData, SetDataView>(s => s.STid == dto.FeeTypeId).ToList();
  219. if (setData.Count > 0)
  220. {
  221. string setDataIds = "";
  222. foreach (var item in setData)
  223. {
  224. setDataIds += item.Id + ",";
  225. }
  226. if (setDataIds.Length > 0)
  227. {
  228. setDataIds = setDataIds.Substring(0, setDataIds.Length - 1);
  229. sqlWhere += string.Format(" And dfp.PriceTypeId In ({0})", setDataIds);
  230. }
  231. }
  232. }
  233. }
  234. if (!string.IsNullOrEmpty(dto.FeeDesc))
  235. sqlWhere += string.Format(" And dfp.Instructions Like '%{0}%'", dto.FeeDesc);
  236. if (dto.CreateUserId != -1)
  237. sqlWhere += string.Format(" And dfp.CreateUserId = {0}", dto.CreateUserId);
  238. int startIndex = (dto.PageIndex - 1) * dto.PageSize + 1;
  239. int endIndex = startIndex + dto.PageSize - 1;
  240. string sqlPage = string.Format(@"Select * From (
  241. Select row_number() over (order by dfp.Id Desc) as RowNumber,
  242. dfp.Id,dfp.CompanyId,c.CompanyName,dfp.Instructions,dfp.SumPrice,
  243. dfp.CreateUserId,u.CnName CreateUser,dfp.CreateTime,dfp.FAudit,dfp.MAudit,
  244. dfp.PriceTypeId,dfp.IsPay
  245. From Fin_DailyFeePayment dfp
  246. Inner Join Sys_Company c On dfp.CompanyId = c.Id
  247. Left Join Sys_Users u On dfp.CreateUserId = u.Id
  248. Where dfp.IsDel=0 {0}
  249. ) temp Where RowNumber Between {1} and {2}", sqlWhere, startIndex, endIndex);
  250. string sqlCount = string.Format(@"Select COUNT(1) as Count From (
  251. Select dfp.Id,dfp.CompanyId,c.CompanyName,dfp.Instructions,dfp.SumPrice,
  252. dfp.CreateUserId,u.CnName CreateUser,dfp.CreateTime,dfp.FAudit,dfp.MAudit,
  253. dfp.PriceTypeId
  254. From Fin_DailyFeePayment dfp
  255. Inner Join Sys_Company c On dfp.CompanyId = c.Id
  256. Left Join Sys_Users u On dfp.CreateUserId = u.Id
  257. Where dfp.IsDel=0 {0}
  258. ) temp ", sqlWhere);
  259. #endregion
  260. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //web
  261. {
  262. //Fin_DailyFeePaymentPageCount
  263. var dailyFeePaymentCount = await _sqlSugar.SqlQueryable<Fin_DailyFeePaymentPageCount>(sqlCount).FirstAsync();
  264. var DailyFeePaymentData = await _sqlSugar.SqlQueryable<Fin_DailyFeePaymentPageListView>(sqlPage).ToListAsync();
  265. int totalCount = dailyFeePaymentCount.Count;
  266. dailyFeePaymentPageList = new ListViewBase<Fin_DailyFeePaymentPageListView>
  267. {
  268. CurrPageIndex = dto.PageIndex,
  269. CurrPageSize = dto.PageSize,
  270. DataCount = totalCount,
  271. DataList = DailyFeePaymentData
  272. };
  273. }
  274. result.Code = 0;
  275. result.Msg = "查询成功!";
  276. result.Data = dailyFeePaymentPageList;
  277. return result;
  278. }
  279. /// <summary>
  280. /// 日付申请 single 查询 By Id
  281. /// </summary>
  282. /// <param name="dto"></param>
  283. /// <returns></returns>
  284. public async Task<Result> GetSearchById(SearchDailyFeePaymentDto dto)
  285. {
  286. Result result = new Result() { Code = -2 };
  287. if (dto.PortType == 1) //web
  288. {
  289. Fin_DailyFeePaymentInfolView feeData = new Fin_DailyFeePaymentInfolView();
  290. string feeSql = string.Format(@"Select * From Fin_DailyFeePayment
  291. Where IsDel=0 And Id = {0} ", dto.Id);
  292. feeData = await _sqlSugar.SqlQueryable<Fin_DailyFeePaymentInfolView>(feeSql).FirstAsync();
  293. string feeContentSql = string.Format(@"Select * From Fin_DailyFeePaymentContent
  294. Where IsDel=0 And DFPId = {0} ", dto.Id);
  295. feeData.FeeContents = await _sqlSugar.SqlQueryable<Fin_DailyFeePaymentContentInfolView>(feeContentSql).ToListAsync();
  296. result.Code = 0;
  297. result.Msg = "查询成功!";
  298. result.Data = feeData;
  299. }
  300. else if (dto.PortType == 2 || dto.PortType == 3) //android And ios
  301. {
  302. Fin_DailyFeePaymentInfoAndroidlView feeData = new Fin_DailyFeePaymentInfoAndroidlView();
  303. string feeSql = string.Format(@"Select * From Fin_DailyFeePayment
  304. Where IsDel=0 And Id = {0} ", dto.Id);
  305. feeData = await _sqlSugar.SqlQueryable<Fin_DailyFeePaymentInfoAndroidlView>(feeSql).FirstAsync();
  306. //feeData.TransferTypeId = feeData.TransferTypeId == 0 ? 62 : feeData.TransferTypeId == 1 ? 63 : 0;
  307. string feeContentSql = string.Format(@"Select * From Fin_DailyFeePaymentContent
  308. Where IsDel=0 And DFPId = {0} ", dto.Id);
  309. feeData.FeeContents = await _sqlSugar.SqlQueryable<Fin_DailyFeePaymentContentInfolView>(feeContentSql).ToListAsync();
  310. result.Code = 0;
  311. result.Msg = "查询成功!";
  312. result.Data = feeData;
  313. }
  314. return result;
  315. }
  316. /// <summary>
  317. /// 日付申请 添加
  318. /// </summary>
  319. /// <param name="dto"></param>
  320. /// <returns></returns>
  321. public async Task<Result> Add(AddDailyFeePaymentDto dto)
  322. {
  323. Result result = new Result() { Code = -2 };
  324. _sqlSugar.BeginTran();
  325. var _fee = _mapper.Map<Fin_DailyFeePayment>(dto);
  326. _fee.CreateUserId = dto.UserId;
  327. /*
  328. * 2024-10-29
  329. * 各部门基础固定费用明细”里的费用数据新增后,财务和总经理审核都默认直接通过isAudit=1),并且可编辑,如果ispay=1的话将不可编辑
  330. * 2025-02-24
  331. * 团组费用 默认总经理审核通过
  332. * 2025-03-25
  333. * 各部门基础固定费用明细”里的费用数据新增后,默认老张通过 财务手动审核
  334. */
  335. var priceTypeInfo = await _sqlSugar.Queryable<Sys_SetData>().FirstAsync(x => x.IsDel == 0 && x.Id == dto.PriceTypeId);
  336. if (priceTypeInfo != null && (priceTypeInfo.STid == 90 || priceTypeInfo.STid == 104))
  337. {
  338. //if (priceTypeInfo.STid == 90)
  339. //{
  340. // _fee.FAudit = 1;
  341. // _fee.FAuditDate = DateTime.Now;
  342. //}
  343. _fee.MAudit = 1;
  344. _fee.MAuditDate = DateTime.Now;
  345. }
  346. int? feeId = await _sqlSugar.Insertable(_fee).ExecuteReturnIdentityAsync();
  347. if (dto.FeeContents.Any())
  348. {
  349. var _feeContents = _mapper.Map<List<Fin_DailyFeePaymentContent>>(dto.FeeContents);
  350. foreach (var item in _feeContents)
  351. {
  352. item.DFPId = feeId == null ? -1 : Convert.ToInt32(feeId);
  353. item.CreateUserId = dto.UserId;
  354. }
  355. await _sqlSugar.Insertable(_feeContents).ExecuteCommandAsync();
  356. }
  357. _sqlSugar.CommitTran();
  358. result.Code = 0;
  359. var data = new { dailyId = feeId, sign = 1 };
  360. result.Data = data;
  361. return result;
  362. }
  363. /// <summary>
  364. /// 日付申请 编辑
  365. /// </summary>
  366. /// <param name="dto"></param>
  367. /// <returns></returns>
  368. public async Task<Result> Edit(EditDailyFeePaymentDto dto)
  369. {
  370. Result result = new Result() { Code = -2 };
  371. #region 已审核的数据不可编辑
  372. var dailyFeeInfo = await _sqlSugar.Queryable<Fin_DailyFeePayment>().Where(it => it.Id == dto.Id && it.IsDel == 0).FirstAsync();
  373. if (dailyFeeInfo != null)
  374. {
  375. if (dailyFeeInfo.FAudit == 1 || dailyFeeInfo.MAudit == 1)
  376. {
  377. var setData = await _sqlSugar.Queryable<Sys_SetData>().FirstAsync(x => x.IsDel == 0 && x.Id == dto.PriceTypeId);
  378. if (setData != null)
  379. {
  380. if (setData.STid == 90 || setData.STid == 104)
  381. {
  382. if (dailyFeeInfo.IsPay == 1)
  383. {
  384. result.Msg = "该笔费用已付款,不可修改!";
  385. return result;
  386. }
  387. }
  388. else
  389. {
  390. result.Msg = "审核已通过,不可修改!";
  391. return result;
  392. }
  393. }
  394. else
  395. {
  396. result.Msg = "审核已通过,不可修改!";
  397. return result;
  398. }
  399. }
  400. }
  401. #endregion
  402. _sqlSugar.BeginTran();
  403. try
  404. {
  405. Fin_DailyFeePayment _fee = _mapper.Map<Fin_DailyFeePayment>(dto);
  406. /*
  407. *
  408. * 2025-02-24
  409. * 更改后的费用类型为 团组费用 默认总经理审核通过
  410. * 2025-03-25
  411. * 更改后的费用类型为 各部门基础固定费用明细”里的费用数据新增后,默认老张通过 财务手动审核
  412. *
  413. */
  414. var priceTypeInfo = await _sqlSugar.Queryable<Sys_SetData>().FirstAsync(x => x.IsDel == 0 && x.Id == dto.PriceTypeId);
  415. var auditStatus = false;
  416. if (priceTypeInfo != null && (priceTypeInfo.STid == 90 || priceTypeInfo.STid == 104))
  417. {
  418. auditStatus = true;
  419. }
  420. _fee.CreateUserId = dto.UserId;
  421. int? editFeeStatus = await _sqlSugar.Updateable<Fin_DailyFeePayment>()
  422. .SetColumns(a => new Fin_DailyFeePayment
  423. {
  424. Instructions = dto.Instructions,
  425. SumPrice = dto.SumPrice,
  426. TransferTypeId = dto.TransferTypeId,
  427. PriceTypeId = dto.PriceTypeId,
  428. CompanyId = dto.CompanyId,
  429. GroupId = dto.GroupId,
  430. })
  431. .SetColumnsIF(auditStatus, a => a.MAudit == 1)
  432. .SetColumnsIF(auditStatus, a => a.MAuditDate == DateTime.Now)
  433. .Where(a => a.Id == dto.Id)
  434. .ExecuteCommandAsync();
  435. var _feeContents = _mapper.Map<List<Fin_DailyFeePaymentContent>>(dto.FeeContents);
  436. await _sqlSugar.Updateable<Fin_DailyFeePaymentContent>()
  437. .Where(a => a.DFPId == _fee.Id)
  438. .SetColumns(a => new Fin_DailyFeePaymentContent
  439. {
  440. IsDel = 1,
  441. DeleteUserId = _fee.CreateUserId,
  442. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  443. })
  444. .ExecuteCommandAsync();
  445. if (_feeContents.Any())
  446. {
  447. foreach (var item in _feeContents)
  448. {
  449. item.DFPId = _fee.Id;
  450. item.CreateUserId = dto.UserId;
  451. }
  452. await _sqlSugar.Insertable(_feeContents).ExecuteCommandAsync();
  453. }
  454. _sqlSugar.CommitTran();
  455. result.Code = 0;
  456. var data = new { dailyId = dto.Id, sign = 2 };
  457. result.Data = data;
  458. }
  459. catch (Exception ex)
  460. {
  461. _sqlSugar.RollbackTran();
  462. result.Msg = ex.Message;
  463. }
  464. return result;
  465. }
  466. /// <summary>
  467. /// 日付申请 删除
  468. /// </summary>
  469. /// <param name="dto"></param>
  470. /// <returns></returns>
  471. public async Task<Result> Del(DelDailyFeePaymentDto dto)
  472. {
  473. Result result = new Result() { Code = -2 };
  474. int? delFeeStatus = await _sqlSugar.Updateable<Fin_DailyFeePayment>()
  475. .Where(a => a.Id == dto.Id)
  476. .SetColumns(a => new Fin_DailyFeePayment
  477. {
  478. IsDel = 1,
  479. DeleteUserId = dto.Id,
  480. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  481. }).ExecuteCommandAsync();
  482. result.Code = 0;
  483. return result;
  484. }
  485. /// <summary>
  486. /// 日付申请 审核
  487. /// </summary>
  488. /// <param name="dto"></param>
  489. /// <returns></returns>
  490. public async Task<Result> DailyPaymentAudit(DP_AuditStatusDto dto)
  491. {
  492. Result result = new Result() { Code = -2 };
  493. if (dto.AuditType == 1) //财务审核
  494. {
  495. int? auditStatus = await _sqlSugar.Updateable<Fin_DailyFeePayment>()
  496. .Where(a => a.Id == dto.Id)
  497. .SetColumns(a => new Fin_DailyFeePayment
  498. {
  499. FAudit = dto.AuditStatus,
  500. FAuditDate = DateTime.Now,
  501. }).ExecuteCommandAsync();
  502. if (auditStatus != null && auditStatus > 0)
  503. result.Code = 0;
  504. else
  505. result.Msg = "财务审核操作失败";
  506. }
  507. else if (dto.AuditType == 2) //总经理
  508. {
  509. int? auditStatus = await _sqlSugar.Updateable<Fin_DailyFeePayment>()
  510. .Where(a => a.Id == dto.Id)
  511. .SetColumns(a => new Fin_DailyFeePayment
  512. {
  513. MAudit = dto.AuditStatus,
  514. MAuditDate = DateTime.Now,
  515. }).ExecuteCommandAsync();
  516. if (auditStatus != null && auditStatus > 0)
  517. result.Code = 0;
  518. else
  519. result.Msg = "总经理审核操作失败";
  520. }
  521. return result;
  522. }
  523. }
  524. }