EnterExitCostQuoteRepository.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  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. viewInfo.FeeItems = basicItems.Select(x =>
  169. new QuoteItemInfo {
  170. ItemId = x.Id,
  171. ItemName = x.Name,
  172. IsOnlyRemark = x.IsOnlyRemark,
  173. Index = x.Index
  174. })
  175. .OrderBy(x => x.Index)
  176. .ToArray();
  177. }
  178. var quoteInfo = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>()
  179. .Where(x => x.IsDel == 0 && x.Id == quoteId)
  180. .FirstAsync();
  181. if (quoteInfo != null)
  182. {
  183. viewInfo.Id = quoteInfo.Id;
  184. viewInfo.Name = quoteInfo.Name;
  185. viewInfo.GroupId = quoteInfo.GroupId;
  186. viewInfo.Rates = CommonFun.GetCurrencyChinaToList(quoteInfo.CurrencyRemark).ToArray();
  187. var quoteItems = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>()
  188. .Where(x => x.IsDel == 0 && x.QuoteId == quoteInfo.Id)
  189. .Select(x => new QuoteSubItemInfo
  190. {
  191. Id = x.Id,
  192. ItemId = x.ItemId,
  193. FeeName = x.FeeName,
  194. UnitPrice = x.UnitPrice,
  195. Quantity = x.Quantity,
  196. PplNum = x.PplNum,
  197. Currency = x.Currency,
  198. TotalAmt = x.TotalAmt,
  199. Index = x.Index
  200. }).ToListAsync();
  201. if (quoteItems.Any())
  202. {
  203. viewInfo.FeeItems = viewInfo.FeeItems.Select(x => new QuoteItemInfo { Index = x.Index, QuoteId = dto.Id, ItemId = x.ItemId, ItemName = x.ItemName, Infos = quoteItems.Where(y => y.ItemId == x.ItemId).OrderBy(y => y.Index).ToArray() }).ToArray();
  204. }
  205. }
  206. return viewInfo;
  207. }
  208. /// <summary>
  209. /// 获取报价详情 By GroupId
  210. /// </summary>
  211. /// <param name="name"></param>
  212. /// <param name="pageIndex"></param>
  213. /// <param name="pageSize"></param>
  214. /// <returns></returns>
  215. public async Task<EnterExitCostQuoteInfoView> InfoByGroupIdAsync(int groupId)
  216. {
  217. var viewInfo = new EnterExitCostQuoteInfoView();
  218. var basicItems = await InitBasicItemAsync(true);
  219. if (basicItems.Any())
  220. {
  221. viewInfo.FeeItems = basicItems.Select(x =>
  222. new QuoteItemInfo
  223. {
  224. ItemId = x.Id,
  225. ItemName = x.Name,
  226. IsOnlyRemark = x.IsOnlyRemark,
  227. Index = x.Index
  228. })
  229. .OrderBy(x => x.Index)
  230. .ToArray();
  231. }
  232. var quoteInfo = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>()
  233. .Where(x => x.IsDel == 0 && x.GroupId == groupId)
  234. .FirstAsync();
  235. if (quoteInfo != null)
  236. {
  237. viewInfo.Id = quoteInfo.Id;
  238. viewInfo.Name = quoteInfo.Name;
  239. viewInfo.GroupId = quoteInfo.GroupId;
  240. viewInfo.Rates = CommonFun.GetCurrencyChinaToList(quoteInfo.CurrencyRemark).ToArray();
  241. var quoteItems = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>()
  242. .Where(x => x.IsDel == 0 && x.QuoteId == quoteInfo.Id)
  243. .Select(x => new QuoteSubItemInfo
  244. {
  245. Id = x.Id,
  246. ItemId = x.ItemId,
  247. FeeName = x.FeeName,
  248. UnitPrice = x.UnitPrice,
  249. Quantity = x.Quantity,
  250. PplNum = x.PplNum,
  251. Currency = x.Currency,
  252. TotalAmt = x.TotalAmt,
  253. Index = x.Index
  254. }).ToListAsync();
  255. if (quoteItems.Any())
  256. {
  257. 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();
  258. }
  259. }
  260. return viewInfo;
  261. }
  262. /// <summary>
  263. /// Add Or Edit
  264. /// </summary>
  265. /// <param name="name"></param>
  266. /// <param name="pageIndex"></param>
  267. /// <param name="pageSize"></param>
  268. /// <returns></returns>
  269. public async Task<JsonView> OpAsync(EnterExitCostQuoteOpDto dto)
  270. {
  271. var jw = new JsonView() { Code = StatusCodes.Status400BadRequest };
  272. string quoteName = dto.Name;
  273. int quoteId = dto.Id;
  274. if (string.IsNullOrEmpty(dto.Name))
  275. {
  276. jw.Msg = "报价名称不能为空";
  277. return jw;
  278. }
  279. var quoteInfo = new Grp_EnterExitCostQuote
  280. {
  281. Id = quoteId,
  282. Name = quoteName,
  283. GroupId = dto.GroupId,
  284. CurrencyRemark = CommonFun.GetCurrencyChinaToString(dto.Rates.ToList()),
  285. CreateUserId = dto.CurrUserId
  286. };
  287. var quoteItemInfos = new List<Grp_EnterExitCostQuoteItem>();
  288. if (dto.FeeItems.Any())
  289. {
  290. foreach (var item in dto.FeeItems)
  291. {
  292. if (item.Infos.Any())
  293. {
  294. quoteItemInfos.AddRange(item.Infos.Select(x => new Grp_EnterExitCostQuoteItem
  295. {
  296. Id = x.Id,
  297. QuoteId = quoteId,
  298. ItemId = x.ItemId,
  299. Index = x.Index,
  300. FeeName = x.FeeName,
  301. UnitPrice = x.UnitPrice,
  302. Currency = x.Currency,
  303. Quantity = x.Quantity,
  304. PplNum = x.PplNum,
  305. TotalAmt = x.TotalAmt,
  306. Remark = x.Remark,
  307. CreateUserId = dto.CurrUserId
  308. }));
  309. }
  310. }
  311. }
  312. var isNull = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>().FirstAsync(x => x.IsDel == 0 && x.Name.Equals(quoteName)) == null ? true : false;
  313. _sqlSugar.BeginTran();
  314. if (isNull) //新增
  315. {
  316. quoteId = await _sqlSugar.Insertable(quoteInfo).ExecuteReturnIdentityAsync();
  317. if (quoteId < 1)
  318. {
  319. jw.Msg = "新增失败!";
  320. _sqlSugar.RollbackTran();
  321. return jw;
  322. }
  323. quoteItemInfos.ForEach(x => x.QuoteId = quoteId);
  324. var quoteItemIds = await _sqlSugar.Insertable(quoteItemInfos).ExecuteReturnIdentityAsync();
  325. if (quoteItemIds < 1)
  326. {
  327. jw.Msg = "新增失败";
  328. _sqlSugar.RollbackTran();
  329. return jw;
  330. }
  331. jw.Msg = "新增成功!";
  332. }
  333. else if (!isNull) //编辑
  334. {
  335. var quoteUpd = await _sqlSugar.Updateable(quoteInfo)
  336. .IgnoreColumns(x => new { x.CreateUserId, x.CreateTime, x.IsDel })
  337. .ExecuteCommandAsync();
  338. if (quoteUpd < 1)
  339. {
  340. jw.Msg = "编辑失败!";
  341. _sqlSugar.RollbackTran();
  342. return jw;
  343. }
  344. var addItems = quoteItemInfos.Where(x => x.Id < 1).ToList();
  345. var updItems = quoteItemInfos.Where(x => x.Id > 0).ToList();
  346. if (addItems.Any())
  347. {
  348. var addItem = await _sqlSugar.Insertable(addItems).ExecuteCommandAsync();
  349. if (addItem < 1)
  350. {
  351. jw.Msg = "编辑失败!";
  352. _sqlSugar.RollbackTran();
  353. return jw;
  354. }
  355. }
  356. if (updItems.Any())
  357. {
  358. //验证及处理前台删除项数据
  359. var perDelItems = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>()
  360. .Where(x => x.IsDel == 0 && x.QuoteId == quoteId)
  361. .ToListAsync();
  362. if (perDelItems.Any())
  363. {
  364. var delItems = perDelItems.Where(x => !updItems.Select(y => y.Id).Contains(x.Id)).ToList();
  365. if (delItems.Any())
  366. {
  367. var newDelItems = delItems.Select(x =>
  368. new Grp_EnterExitCostQuoteItem
  369. {
  370. Id = x.Id,
  371. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  372. DeleteUserId = dto.CurrUserId,
  373. IsDel = 1
  374. }).ToList();
  375. var delItemStatus = await _sqlSugar.Updateable(newDelItems)
  376. .UpdateColumns(x => new { x.DeleteTime, x.DeleteUserId, x.IsDel })
  377. .ExecuteCommandAsync();
  378. if (delItemStatus < 1)
  379. {
  380. jw.Msg = "移除项费用失败!";
  381. _sqlSugar.RollbackTran();
  382. return jw;
  383. }
  384. }
  385. }
  386. var updItem = await _sqlSugar.Updateable(updItems).IgnoreColumns(x => new { x.CreateUserId, x.CreateTime, x.IsDel }).ExecuteCommandAsync();
  387. if (updItem < 1)
  388. {
  389. jw.Msg = "编辑失败!";
  390. _sqlSugar.RollbackTran();
  391. return jw;
  392. }
  393. }
  394. jw.Msg = "编辑成功!";
  395. }
  396. _sqlSugar.CommitTran();
  397. jw.Code = StatusCodes.Status200OK;
  398. jw.Data = quoteId;
  399. return jw;
  400. }
  401. /// <summary>
  402. /// ItemDel
  403. /// </summary>
  404. /// <param name="name"></param>
  405. /// <param name="pageIndex"></param>
  406. /// <param name="pageSize"></param>
  407. /// <returns></returns>
  408. public async Task<JsonView> ItemDelAsync(EnterExitCostQuoteItemDelDto dto)
  409. {
  410. var jw = new JsonView() { Code = StatusCodes.Status400BadRequest };
  411. int currUserId = dto.CurrUserId,
  412. id = dto.Id;
  413. if (currUserId < 1)
  414. {
  415. jw.Msg = MsgTips.UserId;
  416. return jw;
  417. }
  418. if (id < 1)
  419. {
  420. jw.Msg = MsgTips.Id;
  421. return jw;
  422. }
  423. var info = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>().FirstAsync(x => x.IsDel == 0 && x.Id == id);
  424. if (info == null)
  425. {
  426. jw.Msg = $"操作成功!";
  427. jw.Code = StatusCodes.Status200OK;
  428. return jw;
  429. }
  430. var itemInfos = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>().Where(x => x.IsDel == 0 && x.QuoteId == info.QuoteId && x.ItemId == info.ItemId).ToListAsync();
  431. _sqlSugar.BeginTran();
  432. var delInfo = new Grp_EnterExitCostQuoteItem { DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), DeleteUserId = currUserId, IsDel = 1 };
  433. var del = await _sqlSugar.Updateable(delInfo)
  434. .UpdateColumns(x => new { x.DeleteTime, x.DeleteUserId, x.IsDel })
  435. .Where(x => x.Id == id)
  436. .ExecuteCommandAsync();
  437. if (del < 1)
  438. {
  439. jw.Msg = $"删除失败!";
  440. _sqlSugar.RollbackTran();
  441. return jw;
  442. }
  443. if (itemInfos.Any())
  444. {
  445. // 更新剩余项的索引
  446. var itemsToUpdate = itemInfos.Where(i => i.Index > itemInfos.First(i => i.Id == id).Index).ToList();
  447. foreach (var item in itemsToUpdate)
  448. {
  449. item.Index -= 1;
  450. }
  451. await _sqlSugar.Updateable(itemsToUpdate).ExecuteCommandAsync();
  452. }
  453. _sqlSugar.CommitTran();
  454. jw.Msg = "操作成功!";
  455. jw.Code = StatusCodes.Status200OK;
  456. return jw;
  457. }
  458. }
  459. }