EnterExitCostQuoteRepository.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571
  1. using AutoMapper;
  2. using EyeSoft.Collections.Generic;
  3. using OASystem.Domain;
  4. using OASystem.Domain.Dtos.Groups;
  5. using OASystem.Domain.Entities.Groups;
  6. using OASystem.Domain.ViewModels.Groups;
  7. using OASystem.Infrastructure.Tools;
  8. using Org.BouncyCastle.Utilities;
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Linq;
  12. using System.Text;
  13. using System.Threading.Tasks;
  14. namespace OASystem.Infrastructure.Repositories.Groups
  15. {
  16. /// <summary>
  17. /// 团组-出入境费用报价表 仓储
  18. /// </summary>
  19. public class EnterExitCostQuoteRepository : BaseRepository<Grp_EnterExitCostQuoteItem, EnterExitCostQuoteView>
  20. {
  21. private readonly IMapper _mapper;
  22. public EnterExitCostQuoteRepository(SqlSugarClient sqlSugar, IMapper mapper) : base(sqlSugar)
  23. {
  24. _mapper = mapper;
  25. }
  26. /// <summary>
  27. /// 初始化基础项
  28. /// </summary>
  29. /// <param name="removeNl">是否移除换行符</param>
  30. /// <returns></returns>
  31. public async Task<List<InitBasicItemView>> InitBasicItemAsync(bool removeNl)
  32. {
  33. var origList = await _sqlSugar.Queryable<Sys_SetData>()
  34. .Where(x => x.IsDel == 0 && x.STid == 105)
  35. .Select(x => new
  36. {
  37. Id = x.Id,
  38. Name = x.Name,
  39. Index = x.Remark ?? "-1"
  40. }).ToListAsync();
  41. var newList = origList.Select(x => new InitBasicItemView
  42. {
  43. Id = x.Id,
  44. Name = removeNl ? x.Name.Replace("\\r\\n", "") : x.Name,
  45. Index = int.TryParse(x.Index, out int index) ? index : -1
  46. })
  47. .OrderBy(x => x.Index)
  48. .ToList();
  49. var onlyItems = new List<int>() {
  50. 1358, //邀请函发放对象
  51. 1360, //邀请函发放时间
  52. };
  53. newList.ForEach(x =>
  54. {
  55. if (onlyItems.Contains(x.Id)) x.IsOnlyRemark = true;
  56. });
  57. return newList;
  58. }
  59. /// <summary>
  60. /// 获取报价名称列表
  61. /// </summary>
  62. /// <param name="name"></param>
  63. /// <param name="pageIndex"></param>
  64. /// <param name="pageSize"></param>
  65. /// <returns></returns>
  66. public async Task<JsonView> QuoteNameListAsync(EnterExitCostQuoteNameListDto dto)
  67. {
  68. int pageIndex = dto.PageIndex, pageSize = dto.PageSize;
  69. string name = dto.Name;
  70. if (pageIndex < 1 || pageSize < 1)
  71. {
  72. var noPageList = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>()
  73. .Where(x => x.IsDel == 0 && !string.IsNullOrEmpty(x.Name))
  74. .WhereIF(!string.IsNullOrEmpty(name), x => x.Name.Contains(name))
  75. .Select(x => new EnterExitCostQuoteNameView
  76. {
  77. Id = x.Id,
  78. Name = x.Name
  79. }).ToListAsync();
  80. return new JsonView
  81. {
  82. Code = StatusCodes.Status200OK,
  83. Msg = "获取成功",
  84. Count = noPageList.Count,
  85. Data = noPageList
  86. };
  87. }
  88. RefAsync<int> total = 0;
  89. var pageList = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>()
  90. .Where(x => x.IsDel == 0 && !string.IsNullOrEmpty(x.Name))
  91. .WhereIF(!string.IsNullOrEmpty(name), x => x.Name.Contains(name))
  92. .Select(x => new EnterExitCostQuoteNameView
  93. {
  94. Id = x.Id,
  95. Name = x.Name
  96. }).ToPageListAsync(pageIndex, pageSize, total);
  97. return new JsonView
  98. {
  99. Code = StatusCodes.Status200OK,
  100. Msg = "获取成功",
  101. Count = total,
  102. Data = pageList
  103. };
  104. }
  105. /// <summary>
  106. /// 获取团组名称列表
  107. /// </summary>
  108. /// <param name="name"></param>
  109. /// <param name="pageIndex"></param>
  110. /// <param name="pageSize"></param>
  111. /// <returns></returns>
  112. public async Task<JsonView> GroupNameListAsync(EnterExitCostQuoteGroupNameListDto dto)
  113. {
  114. int pageIndex = dto.PageIndex, pageSize = dto.PageSize;
  115. string name = dto.Name;
  116. if (pageIndex < 1 || pageSize < 1)
  117. {
  118. var noPageList = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  119. .Where(x => x.IsDel == 0 && !string.IsNullOrEmpty(x.TeamName))
  120. .WhereIF(!string.IsNullOrEmpty(name), x => x.TeamName.Contains(name))
  121. .OrderByDescending(x => x.CreateTime)
  122. .Select(x => new EnterExitCostQuoteGroupNameView
  123. {
  124. Id = x.Id,
  125. Name = x.TeamName
  126. }).ToListAsync();
  127. return new JsonView
  128. {
  129. Code = StatusCodes.Status200OK,
  130. Msg = "获取成功",
  131. Count = noPageList.Count,
  132. Data = noPageList
  133. };
  134. }
  135. RefAsync<int> total = 0;
  136. var pageList = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  137. .Where(x => x.IsDel == 0 && !string.IsNullOrEmpty(x.TeamName))
  138. .WhereIF(!string.IsNullOrEmpty(name), x => x.TeamName.Contains(name))
  139. .OrderByDescending(x => x.CreateTime)
  140. .Select(x => new EnterExitCostQuoteGroupNameView
  141. {
  142. Id = x.Id,
  143. Name = x.TeamName
  144. }).ToPageListAsync(pageIndex, pageSize, total);
  145. return new JsonView
  146. {
  147. Code = StatusCodes.Status200OK,
  148. Msg = "获取成功",
  149. Count = total,
  150. Data = pageList
  151. };
  152. }
  153. /// <summary>
  154. /// 获取报价详情
  155. /// </summary>
  156. /// <param name="name"></param>
  157. /// <param name="pageIndex"></param>
  158. /// <param name="pageSize"></param>
  159. /// <returns></returns>
  160. public async Task<EnterExitCostQuoteInfoView> InfoAsync(EnterExitCostQuoteInfoDto dto)
  161. {
  162. int quoteId = dto.Id;
  163. var viewInfo = new EnterExitCostQuoteInfoView();
  164. viewInfo.Id = quoteId;
  165. var basicItems = await InitBasicItemAsync(true);
  166. if (basicItems.Any())
  167. {
  168. var quoteItemInfos = new List<QuoteItemInfo>();
  169. basicItems.ForEach(x =>
  170. {
  171. var quoteSubItemInfos = new List<QuoteSubItemInfo>();
  172. if (x.IsOnlyRemark)
  173. {
  174. quoteSubItemInfos.Add(new QuoteSubItemInfo
  175. {
  176. Id = 0,
  177. ItemId = x.Id,
  178. Index = 1,
  179. FeeName = "",
  180. UnitPrice = 0.00M,
  181. Currency = "CNY",
  182. Quantity = 1.00M,
  183. PplNum = 1,
  184. TotalAmt = 0.00M,
  185. Remark = $"-"
  186. });
  187. }
  188. quoteItemInfos.Add(new QuoteItemInfo
  189. {
  190. QuoteId = quoteId,
  191. ItemId = x.Id,
  192. ItemName = x.Name,
  193. IsOnlyRemark = x.IsOnlyRemark,
  194. Infos = quoteSubItemInfos.ToArray(),
  195. Index = x.Index
  196. });
  197. });
  198. viewInfo.FeeItems = quoteItemInfos.OrderBy(x => x.Index).ToArray();
  199. }
  200. var quoteInfo = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>()
  201. .Where(x => x.IsDel == 0 && x.Id == quoteId)
  202. .FirstAsync();
  203. if (quoteInfo != null)
  204. {
  205. viewInfo.Id = quoteInfo.Id;
  206. viewInfo.Name = quoteInfo.Name;
  207. viewInfo.GroupId = quoteInfo.GroupId;
  208. viewInfo.Rates = CommonFun.GetCurrencyChinaToList(quoteInfo.CurrencyRemark).ToArray();
  209. var quoteItems = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>()
  210. .Where(x => x.IsDel == 0 && x.QuoteId == quoteInfo.Id)
  211. .Select(x => new QuoteSubItemInfo
  212. {
  213. Id = x.Id,
  214. ItemId = x.ItemId,
  215. FeeName = x.FeeName,
  216. UnitPrice = x.UnitPrice,
  217. Quantity = x.Quantity,
  218. PplNum = x.PplNum,
  219. Currency = x.Currency,
  220. TotalAmt = x.TotalAmt,
  221. Index = x.Index
  222. }).ToListAsync();
  223. if (quoteItems.Any())
  224. {
  225. foreach (var x in viewInfo.FeeItems)
  226. {
  227. var currQuoteInfos = quoteItems.Where(y => y.ItemId == x.ItemId).OrderBy(y => y.Index).ToArray();
  228. if (x.IsOnlyRemark)
  229. {
  230. if (currQuoteInfos.Length > 0)
  231. {
  232. x.Infos = currQuoteInfos;
  233. }
  234. }
  235. else x.Infos = currQuoteInfos;
  236. }
  237. }
  238. }
  239. return viewInfo;
  240. }
  241. /// <summary>
  242. /// 获取报价详情 By GroupId
  243. /// </summary>
  244. /// <param name="name"></param>
  245. /// <param name="pageIndex"></param>
  246. /// <param name="pageSize"></param>
  247. /// <returns></returns>
  248. public async Task<EnterExitCostQuoteInfoView> InfoByGroupIdAsync(int groupId)
  249. {
  250. var viewInfo = new EnterExitCostQuoteInfoView();
  251. var basicItems = await InitBasicItemAsync(true);
  252. if (basicItems.Any())
  253. {
  254. var quoteItemInfos = new List<QuoteItemInfo>();
  255. basicItems.ForEach(x =>
  256. {
  257. var quoteSubItemInfos = new List<QuoteSubItemInfo>();
  258. if (x.IsOnlyRemark)
  259. {
  260. quoteSubItemInfos.Add(new QuoteSubItemInfo
  261. {
  262. Id = 0,
  263. ItemId = x.Id,
  264. Index = 1,
  265. FeeName = "",
  266. UnitPrice = 0.00M,
  267. Currency = "CNY",
  268. Quantity = 1.00M,
  269. PplNum = 1,
  270. TotalAmt = 0.00M,
  271. Remark = $"-"
  272. });
  273. }
  274. quoteItemInfos.Add(new QuoteItemInfo
  275. {
  276. QuoteId = 0,
  277. ItemId = x.Id,
  278. ItemName = x.Name,
  279. IsOnlyRemark = x.IsOnlyRemark,
  280. Infos = quoteSubItemInfos.ToArray(),
  281. Index = x.Index
  282. });
  283. });
  284. viewInfo.FeeItems = quoteItemInfos.OrderBy(x => x.Index).ToArray();
  285. }
  286. var quoteInfo = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>()
  287. .Where(x => x.IsDel == 0 && x.GroupId == groupId)
  288. .FirstAsync();
  289. if (quoteInfo != null)
  290. {
  291. viewInfo.Id = quoteInfo.Id;
  292. viewInfo.Name = quoteInfo.Name;
  293. viewInfo.GroupId = quoteInfo.GroupId;
  294. viewInfo.Rates = CommonFun.GetCurrencyChinaToList(quoteInfo.CurrencyRemark).ToArray();
  295. var quoteItems = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>()
  296. .Where(x => x.IsDel == 0 && x.QuoteId == quoteInfo.Id)
  297. .Select(x => new QuoteSubItemInfo
  298. {
  299. Id = x.Id,
  300. ItemId = x.ItemId,
  301. FeeName = x.FeeName,
  302. UnitPrice = x.UnitPrice,
  303. Quantity = x.Quantity,
  304. PplNum = x.PplNum,
  305. Currency = x.Currency,
  306. TotalAmt = x.TotalAmt,
  307. Index = x.Index
  308. }).ToListAsync();
  309. if (quoteItems.Any())
  310. {
  311. //viewInfo.FeeItems = viewInfo.FeeItems.Select(x => new QuoteItemInfo { Index = x.Index, QuoteId = quoteInfo.Id, ItemId = x.ItemId, ItemName = x.ItemName, Infos = quoteItems.Where(y => y.ItemId == x.ItemId).OrderBy(y => y.Index).ToArray() }).ToArray();
  312. viewInfo.FeeItems.ForEach(x =>
  313. {
  314. x.QuoteId = quoteInfo.Id;
  315. x.Infos = quoteItems.Where(y => y.ItemId == x.ItemId).OrderBy(y => y.Index).ToArray(); ;
  316. });
  317. }
  318. }
  319. return viewInfo;
  320. }
  321. /// <summary>
  322. /// Add Or Edit
  323. /// </summary>
  324. /// <param name="name"></param>
  325. /// <param name="pageIndex"></param>
  326. /// <param name="pageSize"></param>
  327. /// <returns></returns>
  328. public async Task<JsonView> OpAsync(EnterExitCostQuoteOpDto dto)
  329. {
  330. var jw = new JsonView() { Code = StatusCodes.Status400BadRequest };
  331. string quoteName = dto.Name;
  332. int quoteId = dto.Id;
  333. if (string.IsNullOrEmpty(dto.Name))
  334. {
  335. jw.Msg = "报价名称不能为空";
  336. return jw;
  337. }
  338. var quoteInfo = new Grp_EnterExitCostQuote
  339. {
  340. Id = quoteId,
  341. Name = quoteName,
  342. GroupId = dto.GroupId,
  343. CurrencyRemark = CommonFun.GetCurrencyChinaToString(dto.Rates.ToList()),
  344. CreateUserId = dto.CurrUserId
  345. };
  346. var quoteItemInfos = new List<Grp_EnterExitCostQuoteItem>();
  347. if (dto.FeeItems.Any())
  348. {
  349. foreach (var item in dto.FeeItems)
  350. {
  351. if (item.Infos.Any())
  352. {
  353. quoteItemInfos.AddRange(item.Infos.Select(x => new Grp_EnterExitCostQuoteItem
  354. {
  355. Id = x.Id,
  356. QuoteId = quoteId,
  357. ItemId = x.ItemId,
  358. Index = x.Index,
  359. FeeName = x.FeeName,
  360. UnitPrice = x.UnitPrice,
  361. Currency = x.Currency,
  362. Quantity = x.Quantity,
  363. PplNum = x.PplNum,
  364. TotalAmt = x.TotalAmt,
  365. Remark = x.Remark,
  366. CreateUserId = dto.CurrUserId
  367. }));
  368. }
  369. }
  370. }
  371. var isNull = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>().FirstAsync(x => x.IsDel == 0 && x.Name.Equals(quoteName)) == null ? true : false;
  372. _sqlSugar.BeginTran();
  373. if (isNull) //新增
  374. {
  375. quoteId = await _sqlSugar.Insertable(quoteInfo).ExecuteReturnIdentityAsync();
  376. if (quoteId < 1)
  377. {
  378. jw.Msg = "新增失败!";
  379. _sqlSugar.RollbackTran();
  380. return jw;
  381. }
  382. quoteItemInfos.ForEach(x => x.QuoteId = quoteId);
  383. var quoteItemIds = await _sqlSugar.Insertable(quoteItemInfos).ExecuteReturnIdentityAsync();
  384. if (quoteItemIds < 1)
  385. {
  386. jw.Msg = "新增失败";
  387. _sqlSugar.RollbackTran();
  388. return jw;
  389. }
  390. jw.Msg = "新增成功!";
  391. }
  392. else if (!isNull) //编辑
  393. {
  394. var quoteUpd = await _sqlSugar.Updateable(quoteInfo)
  395. .IgnoreColumns(x => new { x.CreateUserId, x.CreateTime, x.IsDel })
  396. .ExecuteCommandAsync();
  397. if (quoteUpd < 1)
  398. {
  399. jw.Msg = "编辑失败!";
  400. _sqlSugar.RollbackTran();
  401. return jw;
  402. }
  403. var addItems = quoteItemInfos.Where(x => x.Id < 1).ToList();
  404. var updItems = quoteItemInfos.Where(x => x.Id > 0).ToList();
  405. if (addItems.Any())
  406. {
  407. var addItem = await _sqlSugar.Insertable(addItems).ExecuteCommandAsync();
  408. if (addItem < 1)
  409. {
  410. jw.Msg = "编辑失败!";
  411. _sqlSugar.RollbackTran();
  412. return jw;
  413. }
  414. }
  415. if (updItems.Any())
  416. {
  417. //验证及处理前台删除项数据
  418. var perDelItems = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>()
  419. .Where(x => x.IsDel == 0 && x.QuoteId == quoteId)
  420. .ToListAsync();
  421. if (perDelItems.Any())
  422. {
  423. var delItems = perDelItems.Where(x => !updItems.Select(y => y.Id).Contains(x.Id)).ToList();
  424. if (delItems.Any())
  425. {
  426. var newDelItems = delItems.Select(x =>
  427. new Grp_EnterExitCostQuoteItem
  428. {
  429. Id = x.Id,
  430. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  431. DeleteUserId = dto.CurrUserId,
  432. IsDel = 1
  433. }).ToList();
  434. var delItemStatus = await _sqlSugar.Updateable(newDelItems)
  435. .UpdateColumns(x => new { x.DeleteTime, x.DeleteUserId, x.IsDel })
  436. .ExecuteCommandAsync();
  437. if (delItemStatus < 1)
  438. {
  439. jw.Msg = "移除项费用失败!";
  440. _sqlSugar.RollbackTran();
  441. return jw;
  442. }
  443. }
  444. }
  445. var updItem = await _sqlSugar.Updateable(updItems).IgnoreColumns(x => new { x.CreateUserId, x.CreateTime, x.IsDel }).ExecuteCommandAsync();
  446. if (updItem < 1)
  447. {
  448. jw.Msg = "编辑失败!";
  449. _sqlSugar.RollbackTran();
  450. return jw;
  451. }
  452. }
  453. jw.Msg = "编辑成功!";
  454. }
  455. _sqlSugar.CommitTran();
  456. jw.Code = StatusCodes.Status200OK;
  457. jw.Data = quoteId;
  458. return jw;
  459. }
  460. /// <summary>
  461. /// ItemDel
  462. /// </summary>
  463. /// <param name="name"></param>
  464. /// <param name="pageIndex"></param>
  465. /// <param name="pageSize"></param>
  466. /// <returns></returns>
  467. public async Task<JsonView> ItemDelAsync(EnterExitCostQuoteItemDelDto dto)
  468. {
  469. var jw = new JsonView() { Code = StatusCodes.Status400BadRequest };
  470. int currUserId = dto.CurrUserId,
  471. id = dto.Id;
  472. if (currUserId < 1)
  473. {
  474. jw.Msg = MsgTips.UserId;
  475. return jw;
  476. }
  477. if (id < 1)
  478. {
  479. jw.Msg = MsgTips.Id;
  480. return jw;
  481. }
  482. var info = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>().FirstAsync(x => x.IsDel == 0 && x.Id == id);
  483. if (info == null)
  484. {
  485. jw.Msg = $"操作成功!";
  486. jw.Code = StatusCodes.Status200OK;
  487. return jw;
  488. }
  489. var itemInfos = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>().Where(x => x.IsDel == 0 && x.QuoteId == info.QuoteId && x.ItemId == info.ItemId).ToListAsync();
  490. _sqlSugar.BeginTran();
  491. var delInfo = new Grp_EnterExitCostQuoteItem { DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), DeleteUserId = currUserId, IsDel = 1 };
  492. var del = await _sqlSugar.Updateable(delInfo)
  493. .UpdateColumns(x => new { x.DeleteTime, x.DeleteUserId, x.IsDel })
  494. .Where(x => x.Id == id)
  495. .ExecuteCommandAsync();
  496. if (del < 1)
  497. {
  498. jw.Msg = $"删除失败!";
  499. _sqlSugar.RollbackTran();
  500. return jw;
  501. }
  502. if (itemInfos.Any())
  503. {
  504. // 更新剩余项的索引
  505. var itemsToUpdate = itemInfos.Where(i => i.Index > itemInfos.First(i => i.Id == id).Index).ToList();
  506. foreach (var item in itemsToUpdate)
  507. {
  508. item.Index -= 1;
  509. }
  510. await _sqlSugar.Updateable(itemsToUpdate).ExecuteCommandAsync();
  511. }
  512. _sqlSugar.CommitTran();
  513. jw.Msg = "操作成功!";
  514. jw.Code = StatusCodes.Status200OK;
  515. return jw;
  516. }
  517. }
  518. }