DailyFeePaymentRepository.cs 26 KB

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