GoodsRepository.cs 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238
  1. using Aspose.Cells;
  2. using AutoMapper;
  3. using Newtonsoft.Json;
  4. using OASystem.Domain;
  5. using OASystem.Domain.Dtos.PersonnelModule;
  6. using OASystem.Domain.Entities.Groups;
  7. using OASystem.Domain.Entities.PersonnelModule;
  8. using OASystem.Domain.ViewModels.PersonnelModule;
  9. using OASystem.Infrastructure.Tools;
  10. namespace OASystem.Infrastructure.Repositories.PersonnelModule
  11. {
  12. /// <summary>
  13. /// 物品进销存
  14. /// 仓储
  15. /// </summary>
  16. public class GoodsRepository : BaseRepository<Pm_GoodsInfo, GoodsInfoView>
  17. {
  18. private readonly IMapper _mapper;
  19. private JsonView _jv;
  20. private string _url;
  21. private string _excelPath;
  22. public GoodsRepository(SqlSugarClient sqlSugar, IMapper mapper) : base(sqlSugar)
  23. {
  24. _mapper = mapper;
  25. _jv = new JsonView() { Code = StatusCodes.Status400BadRequest, Msg = "操作失败!" };
  26. _url = AppSettingsHelper.Get("ExcelBaseUrl");
  27. _excelPath = $"{AppSettingsHelper.Get("ExcelBasePath")}";
  28. if (!Directory.Exists(_excelPath))
  29. {
  30. Directory.CreateDirectory(_excelPath);
  31. }
  32. }
  33. /// <summary>
  34. /// 基础数据
  35. /// </summary>
  36. /// <returns></returns>
  37. public async Task<JsonView> InitDataSource()
  38. {
  39. var typeData = await _sqlSugar.Queryable<GoodsTypeView>()
  40. .Includes(x => x.SubTypeItems.Where(z => z.IsDel == 0)
  41. //.Select(z => new {
  42. // z.Id,
  43. // z.STid,
  44. // z.Name
  45. //})
  46. .ToList())
  47. .Where(x => x.IsDel == 0 &&
  48. x.Remark.Equals("GoodsType"))
  49. //.Select(x => new {
  50. // x.Id,
  51. // x.Name,
  52. // x.SubTypeItems
  53. //})
  54. .ToListAsync();
  55. var groupData = await _sqlSugar.Queryable<Grp_DelegationInfo>()
  56. .Where(x => x.IsDel == 0)
  57. .Select(x => new
  58. {
  59. id = x.Id,
  60. groupName = x.TeamName
  61. })
  62. .OrderByDescending(x => x.id)
  63. .ToListAsync();
  64. groupData.Insert(0, new { id = 0, groupName = "其他物资(公司内部物资)" });
  65. groupData.Insert(0, new { id = -1, groupName = "拜访客户所使用的物资" });
  66. groupData.Insert(0, new { id = -2, groupName = "库存调整" });
  67. var userData = await _sqlSugar.Queryable<Sys_Users>()
  68. .Where(x => x.IsDel == 0)
  69. .Select(x => new
  70. {
  71. x.Id,
  72. UserName = x.CnName,
  73. })
  74. .ToListAsync();
  75. //库存状态
  76. var stockStatus = new List<dynamic>() {
  77. new { Value = -1, Text = "全部" },
  78. new { Value = 0, Text = "待确认" },
  79. new { Value = 1, Text = "部分确认" },
  80. new { Value = 2, Text = "已确认" },
  81. new { Value = 3, Text = "已拒绝" },
  82. };
  83. //领用出库状态
  84. var receiveStatus = new List<dynamic>() {
  85. new { Value = -1, Text = "全部" },
  86. new { Value = GoodsAuditEnum.Pending, Text = GoodsAuditEnum.Pending.GetEnumDescription() },
  87. new { Value = GoodsAuditEnum.Approved, Text = GoodsAuditEnum.Approved.GetEnumDescription() },
  88. new { Value = GoodsAuditEnum.UnApproved, Text = GoodsAuditEnum.UnApproved.GetEnumDescription() },
  89. new { Value = GoodsAuditEnum.OutPending, Text = GoodsAuditEnum.OutPending.GetEnumDescription() },
  90. new { Value = GoodsAuditEnum.OutConfirming, Text = GoodsAuditEnum.OutConfirming.GetEnumDescription() },
  91. new { Value = GoodsAuditEnum.OutConfirmed, Text = GoodsAuditEnum.OutConfirmed.GetEnumDescription() },
  92. new { Value = GoodsAuditEnum.OutRejected, Text = GoodsAuditEnum.OutRejected.GetEnumDescription() },
  93. };
  94. _jv.Code = StatusCodes.Status200OK;
  95. _jv.Data = new { goodsTypeData = typeData, stockStatus = stockStatus, receiveStatus = receiveStatus, groupNameData = groupData, userNameData = userData };
  96. _jv.Msg = $"操作成功";
  97. return _jv;
  98. }
  99. /// <summary>
  100. /// 物品列表
  101. /// </summary>
  102. /// <param name="dto"></param>
  103. /// <returns></returns>
  104. public async Task<JsonView> GoodsList(GoodsListDto dto)
  105. {
  106. var ids = new List<int>();
  107. if (!string.IsNullOrEmpty(dto.TypeIds))
  108. {
  109. var strArray = dto.TypeIds.Split(',');
  110. foreach (var str in strArray)
  111. {
  112. if (int.TryParse(str, out int id))
  113. {
  114. ids.Add(id);
  115. }
  116. }
  117. }
  118. var auditEnums = new List<GoodsAuditEnum>() {
  119. GoodsAuditEnum.Pending,
  120. GoodsAuditEnum.OutPending,
  121. GoodsAuditEnum.OutConfirming
  122. };
  123. RefAsync<int> total = 0;
  124. var data = await _sqlSugar.Queryable<GoodsListView>()
  125. //.Includes(glv => glv.Receives.Where(z1 => z1.IsDel == 0 && z1.AuditStatus == GoodsAuditEnum.Pending).ToList())
  126. .Includes(glv => glv.Receives.Where(z1 => z1.IsDel == 0 && auditEnums.Contains(z1.AuditStatus)).ToList())
  127. .Includes(glv => glv.TypeData)
  128. .Includes(glv => glv.UserData)
  129. .LeftJoin<Sys_SetData>((glv, sd) => glv.Type == sd.Id)
  130. .LeftJoin<Sys_Users>((glv, sd, u) => glv.LastUpdateUserId == u.Id)
  131. .Where(glv => glv.IsDel == 0)
  132. .WhereIF(ids.Count > 0, glv => ids.Contains(glv.Type))
  133. .WhereIF(!string.IsNullOrEmpty(dto.GoodsName), glv => glv.Name.Contains(dto.GoodsName))
  134. .OrderByDescending(glv => glv.LastUpdateTime)
  135. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  136. var view = data.Select(x => new
  137. {
  138. x.Id,
  139. x.Name,
  140. x.Type,
  141. TypeName = x.TypeData?.Name ?? string.Empty,
  142. LastUpdateUserName = x.UserData?.CnName ?? string.Empty,
  143. x.LastUpdateTime,
  144. StockQuantity = x.StockQuantity - x.WaitAuditQuantity,
  145. x.Unit,
  146. x.StockQuantityLabel,
  147. x.Remark
  148. }).ToList();
  149. _jv.Code = StatusCodes.Status200OK;
  150. _jv.Data = view;
  151. _jv.Count = total;
  152. _jv.Msg = $"操作成功";
  153. return _jv;
  154. }
  155. /// <summary>
  156. /// 物品Info
  157. /// </summary>
  158. /// <param name="portType"></param>
  159. /// <param name="id"></param>
  160. /// <returns></returns>
  161. public async Task<JsonView> GoodsInfo(int portType, int id)
  162. {
  163. var data = await _sqlSugar.Queryable<Pm_GoodsInfo>()
  164. .LeftJoin<Sys_SetData>((gi, sd) => gi.Type == sd.Id)
  165. .LeftJoin<Sys_Users>((gi, sd, u1) => gi.LastUpdateUserId == u1.Id)
  166. .LeftJoin<Sys_Users>((gi, sd, u1, u2) => gi.CreateUserId == u2.Id)
  167. .Where((gi, sd, u1, u2) => gi.IsDel == 0 && gi.Id == id)
  168. .Select((gi, sd, u1, u2) => new
  169. {
  170. gi.Id,
  171. gi.Name,
  172. ParentType = sd.STid,
  173. gi.Type,
  174. TypeName = sd.Name,
  175. gi.SQ_Total,
  176. gi.OQ_Total,
  177. gi.PriceTotal,
  178. gi.StockQuantity,
  179. gi.Unit,
  180. gi.Remark,
  181. LastUpdateUserName = u1.CnName,
  182. gi.LastUpdateTime,
  183. CreateUserName = u2.CnName,
  184. gi.CreateTime,
  185. })
  186. .FirstAsync();
  187. _jv.Code = StatusCodes.Status200OK;
  188. _jv.Data = data;
  189. _jv.Msg = $"操作成功";
  190. return _jv;
  191. }
  192. /// <summary>
  193. /// 物品 OP(Create Or Edit)
  194. /// </summary>
  195. /// <param name="dto"></param>
  196. /// <param name="currUserId"></param>
  197. /// <returns></returns>
  198. public async Task<JsonView> GoodsOp(GoodsOpDto dto, int currUserId)
  199. {
  200. var info = new Pm_GoodsInfo()
  201. {
  202. Id = dto.Id,
  203. Name = dto.Name,
  204. Type = dto.Type,
  205. SQ_Total = 0,
  206. OQ_Total = 0,
  207. PriceTotal = 0,
  208. StockQuantity = 0,
  209. Unit = dto.Unit,
  210. Remark = dto.Remark,
  211. LastUpdateUserId = currUserId,
  212. LastUpdateTime = DateTime.Now,
  213. CreateUserId = currUserId
  214. };
  215. if (dto.Id > 0) //Edit
  216. {
  217. var upd = await _sqlSugar.Updateable(info)
  218. .UpdateColumns(x => new
  219. {
  220. x.Name,
  221. x.Type,
  222. x.Unit,
  223. x.Remark,
  224. x.LastUpdateUserId,
  225. x.LastUpdateTime,
  226. })
  227. .ExecuteCommandAsync();
  228. if (upd > 0)
  229. {
  230. _jv.Msg = $"修改成功!";
  231. _jv.Code = StatusCodes.Status200OK;
  232. return _jv;
  233. }
  234. }
  235. else if (dto.Id < 1) //添加
  236. {
  237. var selectInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().FirstAsync(x => x.Name.Equals(info.Name));
  238. if (selectInfo != null)
  239. {
  240. _jv.Msg = $"“{info.Name}”该物品已存在,请勿重新添加!";
  241. return _jv;
  242. }
  243. var add = await _sqlSugar.Insertable(info).ExecuteCommandAsync();
  244. if (add > 0)
  245. {
  246. _jv.Msg = $"添加成功!";
  247. _jv.Code = StatusCodes.Status200OK;
  248. return _jv;
  249. }
  250. }
  251. return _jv;
  252. }
  253. /// <summary>
  254. /// 物品 Del
  255. /// </summary>
  256. /// <param name="id"></param>
  257. /// <param name="currUserId"></param>
  258. /// <returns></returns>
  259. public async Task<JsonView> GoodsDel(int id, int currUserId)
  260. {
  261. _sqlSugar.BeginTran();
  262. var goods = await _sqlSugar.Updateable<Pm_GoodsInfo>()
  263. .SetColumns(x => new Pm_GoodsInfo()
  264. {
  265. IsDel = 1,
  266. DeleteUserId = currUserId,
  267. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  268. })
  269. .Where(x => x.Id == id)
  270. .ExecuteCommandAsync();
  271. if (goods < 1)
  272. {
  273. _sqlSugar.RollbackTran();
  274. _jv.Msg = $"操作失败";
  275. return _jv;
  276. }
  277. var goodsStorage = await _sqlSugar.Updateable<Pm_GoodsStorage>()
  278. .SetColumns(x => new Pm_GoodsStorage()
  279. {
  280. IsDel = 1,
  281. DeleteUserId = currUserId,
  282. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  283. })
  284. .Where(x => x.Id == id)
  285. .ExecuteCommandAsync();
  286. var goodsReceive = await _sqlSugar.Updateable<Pm_GoodsReceive>()
  287. .SetColumns(x => new Pm_GoodsReceive()
  288. {
  289. IsDel = 1,
  290. DeleteUserId = currUserId,
  291. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  292. })
  293. .Where(x => x.Id == id)
  294. .ExecuteCommandAsync();
  295. _sqlSugar.CommitTran();
  296. _jv.Code = StatusCodes.Status200OK;
  297. _jv.Msg = $"操作成功!";
  298. return _jv;
  299. }
  300. /// <summary>
  301. /// 入库/出库 审核类型
  302. /// 根据物品类型 处理审核是否需要多部门审核
  303. /// </summary>
  304. /// <param name="goodsTypeId">物品类型Id </param>
  305. /// <returns></returns>
  306. public bool GoodsAuditType(int goodsTypeId)
  307. {
  308. //多部门审核类型Id
  309. var goodsTypeIds = new List<int>() {
  310. 1423, //1423 贵重物品
  311. };
  312. if (goodsTypeIds.Contains(goodsTypeId))
  313. {
  314. return true;
  315. }
  316. return false;
  317. }
  318. /// <summary>
  319. /// 物品入库列表(带审核)
  320. /// </summary>
  321. /// <param name="dto"></param>
  322. /// <returns></returns>
  323. public async Task<JsonView> GoodsStorageList(GoodsStorageListDto dto)
  324. {
  325. string reqAuditLabel = dto.AuditLabel;
  326. var auditLabel = Array.Empty<int>();
  327. int userId = dto.CurrUserId;
  328. if (!string.IsNullOrEmpty(reqAuditLabel))
  329. {
  330. if (!reqAuditLabel.Contains("-1"))
  331. {
  332. auditLabel = reqAuditLabel
  333. .Split(',')
  334. .Select(x =>
  335. {
  336. if (int.TryParse(x, out var id)) return id;
  337. return id;
  338. })
  339. .ToArray();
  340. }
  341. }
  342. RefAsync<int> total = 0;
  343. var data = await _sqlSugar.Queryable<Pm_GoodsStorage>()
  344. .LeftJoin<Pm_GoodsInfo>((gs, gi) => gs.GoodsId == gi.Id)
  345. .LeftJoin<Sys_Users>((gs, gi, u) => gs.CreateUserId == u.Id)
  346. .LeftJoin<Sys_Users>((gs, gi, u, u1) => gs.StorageUserId == u1.Id)
  347. .Where((gs, gi, u, u1) => gs.IsDel == 0)
  348. .WhereIF(dto.GoodsId > 0, (gs, gi, u, u1) => gs.GoodsId == dto.GoodsId)
  349. .WhereIF(auditLabel.Length > 0, (gs, gi, u, u1) => auditLabel.Contains((int)gs.ConfirmStatus))
  350. .WhereIF(!string.IsNullOrEmpty(dto.GoodsName), (gs, gi, u, u1) => gi.Name.Contains(dto.GoodsName))
  351. .WhereIF(!string.IsNullOrEmpty(dto.BatchNo), (gs, gi, u, u1) => gs.BatchNo.Contains(dto.BatchNo))
  352. .Select((gs, gi, u, u1) => new GoodsStorageListView()
  353. {
  354. Id = gs.Id,
  355. GoodsId = gs.GoodsId,
  356. GoodsType = gi.Type,
  357. BatchNo = gs.BatchNo,
  358. GoodsName = gi.Name,
  359. Quantity = gs.Quantity,
  360. UnitPrice = gs.UnitPrice,
  361. TotalPrice = gs.TotalPrice,
  362. SupplierName = gs.SupplierName,
  363. SupplierTel = gs.SupplierTel,
  364. SupplierAddress = gs.SupplierAddress,
  365. SupplierSource = gs.SupplierSource,
  366. StorageUserName = u1.CnName,
  367. StorageTime = gs.StorageTime,
  368. CreateUserName = u.CnName,
  369. ConfirmStatus = gs.ConfirmStatus,
  370. StatusDesc = gs.StatusDesc,
  371. CreateTime = gs.CreateTime,
  372. Remark = gs.Remark
  373. })
  374. .OrderByDescending(gs => gs.CreateTime)
  375. .ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  376. var auditList = GoodsStorageConfirmAuditDep(1);
  377. var hrAuditPer = false;
  378. var finAuditPer = false;
  379. var hrAuditInfo = auditList.FirstOrDefault(x => x.AuditDep == GoodsAuditDepEnum.Hr);
  380. var finAuditInfo = auditList.FirstOrDefault(x => x.AuditDep == GoodsAuditDepEnum.Financial);
  381. if (hrAuditInfo != null)
  382. {
  383. if (hrAuditInfo.AuditorIds.Any(x => x == userId)) hrAuditPer = true;
  384. }
  385. if (finAuditInfo != null)
  386. {
  387. if (finAuditInfo.AuditorIds.Any(x => x == userId)) finAuditPer = true;
  388. }
  389. foreach (var item in data)
  390. {
  391. var auditDeps = new List<GoodsStorageAuditPerView>();
  392. auditDeps.Add(new() { AuditPer = hrAuditPer, AuditDep = GoodsAuditDepEnum.Hr, ButtonText = GoodsAuditDepEnum.Hr.GetEnumDescription() });
  393. var auditPer = GoodsAuditType(item.GoodsType);
  394. if (auditPer)
  395. {
  396. auditDeps.Add(new() { AuditPer = finAuditPer, AuditDep = GoodsAuditDepEnum.Financial, ButtonText = GoodsAuditDepEnum.Financial.GetEnumDescription() });
  397. }
  398. item.AuditPers = auditDeps.ToArray();
  399. }
  400. _jv.Code = StatusCodes.Status200OK;
  401. _jv.Data = data;
  402. _jv.Count = total;
  403. _jv.Msg = $"操作成功";
  404. return _jv;
  405. }
  406. /// <summary>
  407. /// 物品入库详情
  408. /// </summary>
  409. /// <param name="id"></param>
  410. /// <returns></returns>
  411. public async Task<JsonView> GoodsStorageInfo(int portType, int id)
  412. {
  413. var data = await _sqlSugar.Queryable<Pm_GoodsStorage>()
  414. .LeftJoin<Pm_GoodsInfo>((gs, gi) => gs.GoodsId == gi.Id)
  415. .LeftJoin<Sys_Users>((gs, gi, u) => gs.CreateUserId == u.Id)
  416. .LeftJoin<Sys_Users>((gs, gi, u, u1) => gs.StorageUserId == u1.Id)
  417. .Where((gs, gi, u, u1) => gs.IsDel == 0)
  418. .WhereIF(id > 0, (gs, gi, u, u1) => gs.Id == id)
  419. .Select((gs, gi, u, u1) => new
  420. {
  421. gs.Id,
  422. gs.GoodsId,
  423. GoodsName = gi.Name,
  424. gs.Quantity,
  425. gs.UnitPrice,
  426. gs.TotalPrice,
  427. gs.SupplierName,
  428. gs.SupplierTel,
  429. gs.SupplierAddress,
  430. gs.SupplierSource,
  431. gs.ReceiveQuantity,
  432. gs.StorageUserId,
  433. StorageUser = u1.CnName,
  434. gs.StorageTime,
  435. CreateUserName = u.CnName,
  436. gs.CreateUserId,
  437. gs.CreateTime,
  438. gs.Remark,
  439. //gs.IsInConfirm
  440. })
  441. .FirstAsync();
  442. _jv.Msg = $"操作成功!";
  443. _jv.Code = StatusCodes.Status200OK;
  444. _jv.Data = data;
  445. return _jv;
  446. }
  447. /// <summary>
  448. /// 物品入库 操作(Create Or Edit)
  449. /// </summary>
  450. /// <param name="dto"></param>
  451. /// <param name="currUserId"></param>
  452. /// <returns></returns>
  453. public async Task<JsonView> GoodsStorageOp(GoodsStorageOpDto dto, int currUserId)
  454. {
  455. var info = _mapper.Map<Pm_GoodsStorage>(dto);
  456. info.CreateUserId = currUserId;
  457. info.BatchNo = DateTime.Now.ToString("yyyyMMddHHmmssfff");
  458. _sqlSugar.BeginTran();
  459. if (info.Id > 0) //修改
  460. {
  461. var selectInfo = await _sqlSugar.Queryable<Pm_GoodsStorage>().FirstAsync(x => x.Id == dto.Id);
  462. var auditStatus = selectInfo.ConfirmStatus;
  463. if (auditStatus == GoodsConfirmEnum.Confirmed || auditStatus == GoodsConfirmEnum.PartConfirmed)
  464. {
  465. _sqlSugar.RollbackTran();
  466. _jv.Msg = $"该条入库信息已确认或部分确认审核,不可更改!如若更改请取消已确认或部分确认审核状态!";
  467. return _jv;
  468. }
  469. var storageEdit = await _sqlSugar.Updateable(info)
  470. .UpdateColumns(x => new
  471. {
  472. x.Quantity,
  473. x.UnitPrice,
  474. x.TotalPrice,
  475. x.SupplierName,
  476. x.SupplierTel,
  477. x.SupplierAddress,
  478. x.SupplierSource,
  479. x.StorageUserId,
  480. x.StorageTime
  481. })
  482. .Where(x => x.Id == dto.Id)
  483. .ExecuteCommandAsync();
  484. if (storageEdit < 1)
  485. {
  486. _sqlSugar.RollbackTran();
  487. _jv.Msg = $"修改失败!";
  488. return _jv;
  489. }
  490. //入库确认默认状态 多条 or 单条
  491. var auditInfos = await _sqlSugar.Queryable<Pm_GoodsAudit>().Where(x => x.Type == 1 && x.DataId == dto.Id).ToListAsync();
  492. if (auditInfos.Any())
  493. {
  494. var isAuditPer = false;
  495. var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().FirstAsync(x => x.IsDel == 0 && x.Id == dto.GoodsId);
  496. if (goodsInfo != null)
  497. {
  498. isAuditPer = GoodsAuditType(goodsInfo.Type);
  499. }
  500. if (!isAuditPer && auditInfos.Count == 1)
  501. {
  502. var auditInfo = new Pm_GoodsAudit(1, GoodsAuditDepEnum.Financial, dto.Id, GoodsConfirmEnum.WaitConfirm, currUserId);
  503. await _sqlSugar.Insertable(auditInfo).ExecuteCommandAsync();
  504. }
  505. }
  506. }
  507. else if (info.Id < 1) //添加
  508. {
  509. info.ConfirmStatus = GoodsConfirmEnum.WaitConfirm;
  510. var storageAddId = await _sqlSugar.Insertable(info).ExecuteReturnIdentityAsync();
  511. if (storageAddId < 1)
  512. {
  513. _sqlSugar.RollbackTran();
  514. _jv.Msg = $"添加失败!";
  515. return _jv;
  516. }
  517. //入库确认默认状态
  518. List<Pm_GoodsAudit> auditInfos = GoodsStorageConfirm(1, storageAddId, info.CreateUserId);
  519. if (auditInfos.Any())
  520. {
  521. //验证添加多条或者单条审核状态
  522. var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().FirstAsync(x => x.IsDel == 0 && x.Id == dto.GoodsId);
  523. if (goodsInfo != null)
  524. {
  525. var isAuditPer = GoodsAuditType(goodsInfo.Type);
  526. if (!isAuditPer) auditInfos = auditInfos.Where(x => x.Dep == GoodsAuditDepEnum.Hr).ToList();
  527. }
  528. await _sqlSugar.Insertable(auditInfos).ExecuteCommandAsync();
  529. }
  530. }
  531. _sqlSugar.CommitTran();
  532. _jv.Msg = $"操作成功!";
  533. _jv.Code = StatusCodes.Status200OK;
  534. return _jv;
  535. }
  536. /// <summary>
  537. /// 物品入库 确认操作-默认审核部门
  538. /// </summary>
  539. /// <param name="auditType">
  540. /// 审核类型
  541. /// 1.入库 2.出库
  542. /// </param>
  543. /// <param name="dataId">dataId</param>
  544. /// <param name="currUserId">审核人</param>
  545. /// <returns></returns>
  546. public List<Pm_GoodsAudit> GoodsStorageConfirm(int auditType, int dataId, int currUserId)
  547. {
  548. var goodsAuditList = new List<Pm_GoodsAudit>();
  549. goodsAuditList.Add(new Pm_GoodsAudit(auditType, GoodsAuditDepEnum.Hr, dataId, GoodsConfirmEnum.WaitConfirm, currUserId));
  550. goodsAuditList.Add(new Pm_GoodsAudit(auditType, GoodsAuditDepEnum.Financial, dataId, GoodsConfirmEnum.WaitConfirm, currUserId));
  551. return goodsAuditList;
  552. }
  553. /// <summary>
  554. /// 物品入库 确认操作
  555. /// </summary>
  556. /// <param name="dto"></param>
  557. /// <returns></returns>
  558. public async Task<JsonView> GoodsStorageConfirmStatusChange(GoodsStorageConfirmDto dto, int currUserId)
  559. {
  560. int gsId = dto.Id;
  561. var auditDep = dto.AuditDep;
  562. if (gsId < 1)
  563. {
  564. _jv.Msg = string.Format("{0}", MsgTips.Id);
  565. return _jv;
  566. }
  567. if (currUserId < 1)
  568. {
  569. _jv.Msg = string.Format("{0}", MsgTips.UserId);
  570. return _jv;
  571. }
  572. //验证审核部门
  573. (bool auditPer, GoodsAuditDepEnum goodsAuditDep) = GoodsAuditDep(currUserId, auditDep, 1);
  574. if (!auditPer)
  575. {
  576. _jv.Msg = string.Format("未分配入库确认权限!");
  577. return _jv;
  578. }
  579. //入库确认 更改审核状态
  580. _sqlSugar.BeginTran();
  581. var info = await _sqlSugar.Queryable<Pm_GoodsStorage>().Where(x => x.IsDel == 0 && x.Id == gsId).FirstAsync();
  582. if (info == null)
  583. {
  584. _jv.Msg = string.Format("入库信息不存在!");
  585. return _jv;
  586. }
  587. var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().Where(x => x.IsDel == 0 && x.Id == info.GoodsId).FirstAsync();
  588. if (goodsInfo == null)
  589. {
  590. _jv.Msg = string.Format("物品信息不存在!");
  591. return _jv;
  592. }
  593. int goodsTypeId = goodsInfo.Type;
  594. var preChangeStatus = info.ConfirmStatus;
  595. if (preChangeStatus == dto.ConfirmStatus)
  596. {
  597. _jv.Msg = string.Format("“{0}”已操作,请勿重复该操作!", dto.ConfirmStatus.GetEnumDescription());
  598. return _jv;
  599. }
  600. var preInfos = await _sqlSugar.Queryable<Pm_GoodsAudit>().Where(x => x.IsDel == 0 && x.DataId == gsId).ToListAsync();
  601. //验证是否需要多级确认
  602. var isAuditPer = GoodsAuditType(goodsTypeId);
  603. //单部门审核时默认人事部审核
  604. if (!isAuditPer) goodsAuditDep = GoodsAuditDepEnum.Hr;
  605. var auditInfo = preInfos.FirstOrDefault(x => x.Dep == goodsAuditDep);
  606. if (auditInfo != null)
  607. {
  608. //移除部门审核状态
  609. preInfos.Remove(auditInfo);
  610. auditInfo.AuditStatus = dto.ConfirmStatus;
  611. auditInfo.AuditUserId = currUserId;
  612. auditInfo.AuditTime = DateTime.Now;
  613. var updStatus = await _sqlSugar.Updateable(auditInfo)
  614. .UpdateColumns(x => new { x.AuditStatus, x.AuditUserId, x.AuditTime })
  615. .ExecuteCommandAsync();
  616. if (updStatus < 1)
  617. {
  618. _sqlSugar.RollbackTran();
  619. _jv.Msg = string.Format("入库确认失败!");
  620. return _jv;
  621. }
  622. }
  623. else
  624. {
  625. auditInfo = new Pm_GoodsAudit(1, goodsAuditDep, gsId, dto.ConfirmStatus, currUserId, currUserId);
  626. var addStatus = await _sqlSugar.Insertable(auditInfo).ExecuteCommandAsync();
  627. if (addStatus < 1)
  628. {
  629. _sqlSugar.RollbackTran();
  630. _jv.Msg = string.Format("入库确认失败!");
  631. return _jv;
  632. }
  633. }
  634. preInfos.Add(auditInfo);
  635. //入库确认 更改入库状态及扣或增加除库存数、金额
  636. var confirmStatus = GoodsConfirmEnum.WaitConfirm;
  637. if (isAuditPer) //多级审核确认
  638. {
  639. if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() >= 2)
  640. {
  641. confirmStatus = GoodsConfirmEnum.Confirmed;
  642. }
  643. else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() >= 1)
  644. {
  645. confirmStatus = GoodsConfirmEnum.PartConfirmed;
  646. }
  647. else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.UnApproved).Count() > 0)
  648. {
  649. confirmStatus = GoodsConfirmEnum.UnApproved;
  650. }
  651. else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.PartConfirmed).Count() > 0)
  652. {
  653. confirmStatus = GoodsConfirmEnum.PartConfirmed;
  654. }
  655. }
  656. else //人事部审核确认
  657. {
  658. confirmStatus = GoodsConfirmEnum.Confirmed;
  659. confirmStatus = dto.ConfirmStatus;
  660. preInfos = preInfos.Where(x => x.Dep == GoodsAuditDepEnum.Hr).ToList();
  661. }
  662. //入库状态描述
  663. var statusDesc = new StringBuilder();
  664. foreach (var preInfo in preInfos)
  665. {
  666. string depName = preInfo.Dep.GetEnumDescription(),
  667. auditStatus = preInfo.AuditStatus.GetEnumDescription(),
  668. auditUserName = preInfo.AuditUserId > 0 ? _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == preInfo.AuditUserId)?.CnName ?? "-" : "-",
  669. auditTime = preInfo.AuditUserId > 0 ? preInfo.AuditTime.ToString("yyyy-MM-dd HH:mm:ss") : "-";
  670. statusDesc.Append(string.Format("{0}:状态:{1} 审核人:{2} 审核时间:{3};<br/>", depName, auditStatus, auditUserName, auditTime));
  671. }
  672. //更改入库状态及描述
  673. info.ConfirmStatus = confirmStatus;
  674. info.StatusDesc = statusDesc.ToString();
  675. var goodsStorageUpd = await _sqlSugar.Updateable(info)
  676. .UpdateColumns(x => new
  677. {
  678. x.ConfirmStatus,
  679. x.StatusDesc,
  680. })
  681. .Where(x => x.Id == info.Id)
  682. .ExecuteCommandAsync();
  683. if (goodsStorageUpd < 1)
  684. {
  685. _sqlSugar.RollbackTran();
  686. _jv.Msg = $"入库确认状态更改失败!";
  687. return _jv;
  688. }
  689. //入库审核通过数量、金额
  690. decimal auditQuantity = info.Quantity,
  691. auditTotalPrice = info.TotalPrice;
  692. goodsInfo.LastUpdateUserId = currUserId;
  693. goodsInfo.LastUpdateTime = DateTime.Now;
  694. if (confirmStatus == GoodsConfirmEnum.Confirmed) // 确认状态
  695. {
  696. //更改后的状态和更改前的状态不一致时 更改库存数、金额
  697. if (preChangeStatus != confirmStatus) //
  698. {
  699. goodsInfo.SQ_Total += auditQuantity;
  700. goodsInfo.StockQuantity += auditQuantity;
  701. goodsInfo.PriceTotal += auditTotalPrice;
  702. }
  703. }
  704. else //其他状态 拒绝、部分确认、等待确认
  705. {
  706. //更改前状态为确认状态时,减库存数、金额
  707. if (preChangeStatus == GoodsConfirmEnum.Confirmed)
  708. {
  709. goodsInfo.SQ_Total -= auditQuantity;
  710. goodsInfo.StockQuantity -= auditQuantity;
  711. goodsInfo.PriceTotal -= auditTotalPrice;
  712. }
  713. }
  714. var goodsUpd = await _sqlSugar.Updateable(goodsInfo)
  715. .UpdateColumns(x => new
  716. {
  717. x.SQ_Total,
  718. x.StockQuantity,
  719. x.PriceTotal,
  720. x.LastUpdateUserId,
  721. x.LastUpdateTime,
  722. })
  723. .Where(x => x.Id == info.GoodsId)
  724. .ExecuteCommandAsync();
  725. if (goodsUpd > 0)
  726. {
  727. _sqlSugar.CommitTran();
  728. _jv.Msg = $"操作成功!";
  729. _jv.Code = StatusCodes.Status200OK;
  730. return _jv;
  731. }
  732. _sqlSugar.RollbackTran();
  733. _jv.Msg = $"操作失败!";
  734. return _jv;
  735. }
  736. /// <summary>
  737. /// 获取物品审核部门
  738. /// </summary>
  739. /// <param name="userId"> userId </param>
  740. /// <param name="auditDepEnum"> 审核部门枚举 </param>
  741. /// <param name="auditType">
  742. /// 指定审核类型(入库/出库)
  743. /// 1:入库审核
  744. /// 2:出库审核
  745. /// </param>
  746. /// <returns></returns>
  747. public (bool, GoodsAuditDepEnum) GoodsAuditDep(int userId, GoodsAuditDepEnum auditDepEnum, int auditType = 1)
  748. {
  749. if (userId < 1) return (false, GoodsAuditDepEnum.Hr);
  750. var auditList = GoodsStorageConfirmAuditDep(1);
  751. if (auditType == 1)
  752. {
  753. if (auditList.Any(x => x.AuditDep == auditDepEnum && x.AuditorIds.Contains(userId)))
  754. {
  755. return (true, auditDepEnum);
  756. }
  757. }
  758. return (false, GoodsAuditDepEnum.Hr);
  759. }
  760. /// <summary>
  761. /// 物品审核部门列表
  762. /// </summary>
  763. /// <param name="auditType">
  764. /// 指定审核类型(入库/出库)
  765. /// 1:入库审核
  766. /// 2:出库审核
  767. /// </param>
  768. /// <returns></returns>
  769. public List<GoodsAuditDepView> GoodsStorageConfirmAuditDep(int auditType = 1)
  770. {
  771. var auditList = new List<GoodsAuditDepView>();
  772. var hrAuditorIds = new GoodsAuditDepView()
  773. {
  774. AuditDep = GoodsAuditDepEnum.Hr,
  775. AuditorIds = new int[] {
  776. 309, // 赖红燕
  777. 343, // 陈湘
  778. //374, // 罗颖
  779. 208, // 雷怡
  780. }
  781. };
  782. var finAuditorIds = new GoodsAuditDepView()
  783. {
  784. AuditDep = GoodsAuditDepEnum.Financial,
  785. AuditorIds = new int[] {
  786. 187, // 曾艳
  787. 281, // 伏虹瑾
  788. 208, // 雷怡
  789. }
  790. };
  791. if (auditType == 1)//入库
  792. {
  793. hrAuditorIds.AuditorIds = new int[] {
  794. //343, // 陈湘
  795. 374, // 罗颖
  796. 208, // 雷怡
  797. };
  798. auditList.Add(hrAuditorIds);
  799. auditList.Add(finAuditorIds);
  800. }
  801. else if (auditType == 2) //出库
  802. {
  803. auditList.Add(hrAuditorIds);
  804. auditList.Add(finAuditorIds);
  805. }
  806. return auditList;
  807. }
  808. /// <summary>
  809. /// 物品入库 Del
  810. /// </summary>
  811. /// <param name="id"></param>
  812. /// <returns></returns>
  813. public async Task<JsonView> GoodsStorageDel(int id, int userId)
  814. {
  815. var storageInfo = await _sqlSugar
  816. .Queryable<Pm_GoodsStorage>()
  817. .Where(x => x.Id == id)
  818. .FirstAsync();
  819. if (storageInfo == null) return _jv;
  820. var auditStatus = storageInfo.ConfirmStatus;
  821. if (auditStatus == GoodsConfirmEnum.Confirmed || auditStatus == GoodsConfirmEnum.PartConfirmed)
  822. {
  823. _sqlSugar.RollbackTran();
  824. _jv.Msg = $"该条入库信息已确认或部分确认审核,不可删除!如若删除请取消已确认或部分确认审核状态!";
  825. return _jv;
  826. }
  827. decimal delAgoQuantity = storageInfo.Quantity,
  828. delAgoTotalPrice = storageInfo.TotalPrice;
  829. var goodsId = storageInfo.GoodsId;
  830. _sqlSugar.BeginTran();
  831. var storageDel = await _sqlSugar.Updateable<Pm_GoodsStorage>()
  832. .SetColumns(x => new Pm_GoodsStorage
  833. {
  834. DeleteUserId = userId,
  835. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  836. IsDel = 1
  837. })
  838. .Where(x => x.Id == id)
  839. .ExecuteCommandAsync();
  840. if (storageDel < 1)
  841. {
  842. _sqlSugar.RollbackTran();
  843. _jv.Msg = $"操作失败!";
  844. return _jv;
  845. }
  846. var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().FirstAsync(x => x.Id == goodsId);
  847. goodsInfo.SQ_Total = goodsInfo.SQ_Total - delAgoQuantity;
  848. goodsInfo.StockQuantity = goodsInfo.StockQuantity - delAgoQuantity;
  849. goodsInfo.PriceTotal = goodsInfo.PriceTotal - delAgoTotalPrice;
  850. goodsInfo.LastUpdateUserId = userId;
  851. goodsInfo.LastUpdateTime = DateTime.Now;
  852. var goodsEdit = await _sqlSugar.Updateable(goodsInfo)
  853. .UpdateColumns(x => new
  854. {
  855. x.SQ_Total,
  856. x.StockQuantity,
  857. x.PriceTotal,
  858. x.LastUpdateUserId,
  859. x.LastUpdateTime,
  860. })
  861. .Where(x => x.Id == goodsId)
  862. .ExecuteCommandAsync();
  863. if (goodsEdit > 0)
  864. {
  865. _sqlSugar.CommitTran();
  866. _jv.Msg = $"操作成功!";
  867. _jv.Code = StatusCodes.Status200OK;
  868. return _jv;
  869. }
  870. _sqlSugar.RollbackTran();
  871. _jv.Msg = $"操作失败!";
  872. return _jv;
  873. }
  874. /// <summary>
  875. /// 物品入库
  876. /// excelDownload
  877. /// </summary>
  878. /// <param name="dto"></param>
  879. /// <returns></returns>
  880. public async Task<JsonView> GoodsStorageExcelDownload()
  881. {
  882. var fileName = $"物资入库{Guid.NewGuid()}.xlsx";
  883. var excelTempPath = $"{_excelPath}Template/物资入库Temp.xlsx";
  884. if (!File.Exists(excelTempPath))
  885. {
  886. _jv.Code = StatusCodes.Status204NoContent;
  887. _jv.Msg = $"该模板文件不存在!";
  888. return _jv;
  889. }
  890. _url = $"{_url}Office/Excel/GoodsFiles/";
  891. _excelPath = $"{_excelPath}GoodsFiles";
  892. if (!Directory.Exists(_excelPath))
  893. {
  894. Directory.CreateDirectory(_excelPath);
  895. }
  896. //入库记录
  897. var storageData = await _sqlSugar.Queryable<Pm_GoodsStorage>()
  898. .LeftJoin<Sys_Users>((gs, su) => gs.StorageUserId == su.Id)
  899. .Where((gs, su) => gs.IsDel == 0)
  900. .Select((gs, su) => new
  901. {
  902. gs.GoodsId,
  903. gs.Quantity,
  904. su.CnName,
  905. gs.StorageTime
  906. })
  907. .ToListAsync();
  908. //出库记录
  909. var receiveData = await _sqlSugar.Queryable<Pm_GoodsReceive>()
  910. .LeftJoin<Sys_Users>((gr, su) => gr.CreateUserId == su.Id)
  911. .Where((gr, su) => gr.IsDel == 0)
  912. .Select((gr, su) => new
  913. {
  914. gr.GoodsId,
  915. gr.Quantity,
  916. su.CnName,
  917. gr.CreateTime,
  918. gr.Reason
  919. })
  920. .ToListAsync();
  921. var data = await _sqlSugar.Queryable<Pm_GoodsInfo>()
  922. .Where(gi => gi.IsDel == 0)
  923. .Select(gi => new GoodsStorageExcelDownloadView
  924. {
  925. Id = gi.Id,
  926. Name = gi.Name,
  927. SQ_Total = gi.SQ_Total,
  928. OQ_Total = gi.OQ_Total,
  929. StockQuantity = gi.StockQuantity,
  930. Unit = gi.Unit
  931. })
  932. .ToListAsync();
  933. foreach (var item in data)
  934. {
  935. var storageData1 = storageData.Where(x => x.GoodsId == item.Id).ToList();
  936. if (storageData1.Any())
  937. {
  938. item.SQ_Total1 = storageData1.Sum(x => x.Quantity);
  939. item.SQ_Total -= item.SQ_Total1;
  940. item.StorageLabel = string.Join("\r\n", storageData1.Select(x => "数量:【" + x.Quantity.ToString("#0.00") + "】 入库人:【" + x.CnName + "】 入库时间:【" + x.StorageTime + "】").ToList());
  941. }
  942. var receiveData1 = receiveData.Where(x => x.GoodsId == item.Id).ToList();
  943. if (receiveData1.Any())
  944. {
  945. item.ReceiveLabel = string.Join("\r\n", receiveData1.Select(x => "数量:【" + x.Quantity.ToString("#0.00") + "】 申请人:【" + x.CnName + "】 申请时间:【" + x.CreateTime.ToString("yyyy-MM-dd HH:mm:ss") + "】 原因:【" + x.Reason + "】").ToList());
  946. }
  947. }
  948. //载入模板
  949. WorkbookDesigner designer = new WorkbookDesigner();
  950. designer.Workbook = new Workbook(excelTempPath);
  951. designer.SetDataSource("Export", data);
  952. designer.Process();
  953. #region 渲染Cell批注
  954. var sheet = designer.Workbook.Worksheets[0];
  955. for (int i = 0; i < data.Count; i++)
  956. {
  957. string storageComment = $"C{i + 2}",
  958. receiveComment = $"D{i + 2}",
  959. storageCommentText = data[i].StorageLabel,
  960. receiveCommentText = data[i].ReceiveLabel;
  961. if (!string.IsNullOrEmpty(storageCommentText))
  962. {
  963. int storageIndex = sheet.Comments.Add(storageComment);
  964. Aspose.Cells.Comment comment = sheet.Comments[storageIndex];
  965. comment.Note = storageCommentText;
  966. comment.Width = 500;
  967. comment.Height = 200;
  968. //comment.Font.Color = Color.Red;
  969. }
  970. if (!string.IsNullOrEmpty(receiveCommentText))
  971. {
  972. int receiveIndex = sheet.Comments.Add(receiveComment);
  973. Aspose.Cells.Comment comment = sheet.Comments[receiveIndex];
  974. comment.Note = receiveCommentText;
  975. comment.Width = 800;
  976. comment.Height = 200;
  977. //comment.Font.Color = Color.Red;
  978. }
  979. }
  980. #endregion
  981. string serverPath = $"{_url}{fileName}";
  982. designer.Workbook.Save($"{_excelPath}/{fileName}");
  983. _jv.Code = StatusCodes.Status200OK;
  984. _jv.Data = new { url = serverPath };
  985. _jv.Msg = $"操作成功";
  986. return _jv;
  987. }
  988. /// <summary>
  989. /// 物品领用列表
  990. /// </summary>
  991. /// <param name="dto"></param>
  992. /// <returns></returns>
  993. public async Task<JsonView> GoodsReceiveList(GoodsReceiveListDTO dto)
  994. {
  995. //参数处理
  996. int[] typeLabel = Array.Empty<int>(),
  997. userLabel = Array.Empty<int>(),
  998. auditLabel = Array.Empty<int>(),
  999. groupLabel = Array.Empty<int>();
  1000. int currUserId = dto.CurrUserId;
  1001. if (!string.IsNullOrEmpty(dto.TypeLabel))
  1002. {
  1003. typeLabel = dto.TypeLabel
  1004. .Split(',')
  1005. .Select(x =>
  1006. {
  1007. if (int.TryParse(x, out var id)) return id;
  1008. return id;
  1009. })
  1010. .ToArray();
  1011. }
  1012. if (!string.IsNullOrEmpty(dto.UserLabel))
  1013. {
  1014. userLabel = dto.UserLabel
  1015. .Split(',')
  1016. .Select(x =>
  1017. {
  1018. if (int.TryParse(x, out var id)) return id;
  1019. return id;
  1020. })
  1021. .ToArray();
  1022. }
  1023. if (!string.IsNullOrEmpty(dto.AuditLabel))
  1024. {
  1025. auditLabel = dto.AuditLabel
  1026. .Split(',')
  1027. .Select(x =>
  1028. {
  1029. if (int.TryParse(x, out var id)) return id;
  1030. return id;
  1031. })
  1032. .ToArray();
  1033. if (auditLabel.Any(x => x == -1))
  1034. {
  1035. auditLabel = auditLabel.Where(x => x != -1).ToArray();
  1036. }
  1037. }
  1038. if (!string.IsNullOrEmpty(dto.GroupLabel))
  1039. {
  1040. groupLabel = dto.GroupLabel
  1041. .Split(',')
  1042. .Select(x =>
  1043. {
  1044. if (int.TryParse(x, out var id)) return id;
  1045. return id;
  1046. })
  1047. .ToArray();
  1048. }
  1049. //物品ID和物品名称只能传一个
  1050. if (dto.GoodsId > 0) dto.GoodsName = string.Empty;
  1051. if (!string.IsNullOrEmpty(dto.GoodsName)) dto.GoodsId = 0;
  1052. var beginBool = DateTime.TryParse(!string.IsNullOrEmpty(dto.BeginDt) ? $"{dto.BeginDt} 00:00:00" : string.Empty, out var begin);
  1053. var endBool = DateTime.TryParse(!string.IsNullOrEmpty(dto.EndDt) ? $"{dto.EndDt} 00:00:00" : string.Empty, out var end);
  1054. RefAsync<int> total = 0;
  1055. var data = _sqlSugar.Queryable<Pm_GoodsReceive>()
  1056. .LeftJoin<Pm_GoodsInfo>((gr, gi) => gr.GoodsId == gi.Id)
  1057. .LeftJoin<Sys_SetData>((gr, gi, sd) => gi.Type == sd.Id)
  1058. .LeftJoin<Sys_Users>((gr, gi, sd, u1) => gr.AuditUserId == u1.Id)
  1059. .LeftJoin<Sys_Users>((gr, gi, sd, u1, u2) => gr.CreateUserId == u2.Id)
  1060. .LeftJoin<Grp_DelegationInfo>((gr, gi, sd, u1, u2, di) => gr.GroupId == di.Id)
  1061. .Where((gr, gi, sd, u1, u2, di) => gr.IsDel == 0)
  1062. .WhereIF(dto.GoodsId > 0, (gr, gi, sd, u1, u2, di) => gr.GoodsId == dto.GoodsId)
  1063. .WhereIF(!string.IsNullOrEmpty(dto.GoodsName), (gr, gi, sd, u1, u2, di) => gi.Name.Contains(dto.GoodsName))
  1064. .WhereIF(auditLabel.Length > 0, (gr, gi, sd, u1, u2, di) => auditLabel.Contains((int)gr.AuditStatus))
  1065. .WhereIF(typeLabel.Length > 0, (gr, gi, sd, u1, u2, di) => typeLabel.Contains(gi.Type))
  1066. .WhereIF(userLabel.Length > 0, (gr, gi, sd, u1, u2, di) => userLabel.Contains(gr.CreateUserId))
  1067. .WhereIF(groupLabel.Length > 0, (gr, gi, sd, u1, u2, di) => groupLabel.Contains(gr.GroupId))
  1068. .WhereIF(beginBool && endBool, (gr, gi, sd, u1, u2, di) => gr.CreateTime >= begin && gr.CreateTime <= end)
  1069. .Select((gr, gi, sd, u1, u2, di) => new GoodsReceiveListMobileView
  1070. {
  1071. Id = gr.Id,
  1072. GroupId = gr.GroupId,
  1073. GroupName = di.TeamName,
  1074. GoodsId = gr.GoodsId,
  1075. GoodsName = gi.Name,
  1076. GoodsTypeId = gi.Type,
  1077. GoodsType = sd.Name,
  1078. Quantity = gr.Quantity,
  1079. Unit = gi.Unit,
  1080. Reason = gr.Reason,
  1081. Remark = gr.Remark,
  1082. AuditStatus = gr.AuditStatus,
  1083. StatusDesc = gr.StatusDesc,
  1084. AuditUserId = gr.AuditUserId,
  1085. AuditUserName = u1.CnName,
  1086. AuditTime = gr.AuditTime,
  1087. CreateUserName = u2.CnName,
  1088. CreateTime = gr.CreateTime
  1089. })
  1090. .OrderByDescending(gr => gr.CreateTime);
  1091. //excel导出
  1092. if (dto.IsExcelDownload)
  1093. {
  1094. var fileName = $"物资领用{Guid.NewGuid()}.xlsx";
  1095. var excelTempPath = $"{_excelPath}Template/物资领用Temp.xlsx";
  1096. if (!File.Exists(excelTempPath))
  1097. {
  1098. _jv.Code = StatusCodes.Status204NoContent;
  1099. _jv.Msg = $"该模板文件不存在!";
  1100. return _jv;
  1101. }
  1102. _url = $"{_url}Office/Excel/GoodsFiles/";
  1103. _excelPath = $"{_excelPath}GoodsFiles";
  1104. if (!Directory.Exists(_excelPath))
  1105. {
  1106. Directory.CreateDirectory(_excelPath);
  1107. }
  1108. //载入模板
  1109. WorkbookDesigner designer = new WorkbookDesigner();
  1110. designer.Workbook = new Workbook(excelTempPath);
  1111. var tableData = await data.ToListAsync();
  1112. designer.SetDataSource("Export", tableData);
  1113. designer.Process();
  1114. string serverPath = $"{_url}{fileName}";
  1115. designer.Workbook.Save($"{_excelPath}/{fileName}");
  1116. _jv.Code = StatusCodes.Status200OK;
  1117. _jv.Data = new { url = serverPath };
  1118. _jv.Msg = $"操作成功";
  1119. return _jv;
  1120. }
  1121. //返回分页数据
  1122. var view = await data.ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  1123. //财务人事审核权限处理
  1124. var auditList = GoodsStorageConfirmAuditDep(2);
  1125. bool hrAuditPer = false;
  1126. var hrAuditInfo = auditList.FirstOrDefault(x => x.AuditDep == GoodsAuditDepEnum.Hr);
  1127. if (hrAuditInfo.AuditorIds.Any(x => x == currUserId))
  1128. {
  1129. hrAuditPer = true;
  1130. }
  1131. foreach (var item in view)
  1132. {
  1133. //默认审核验证 多条 or 单挑
  1134. var isAudit = GoodsAuditType(item.GoodsTypeId);
  1135. var auditPers = new List<GoodsStorageAuditPerView>()
  1136. {
  1137. new (){ AuditPer = true, AuditDep = GoodsAuditDepEnum.Hr, ButtonText = $"领用确认"},
  1138. };
  1139. if (isAudit) auditPers.Add(new() { AuditPer = hrAuditPer, AuditDep = GoodsAuditDepEnum.Hr, ButtonText = $"出库确认" });
  1140. item.AuditPers = auditPers.ToArray();
  1141. }
  1142. if (dto.PortType == 2 || dto.PortType == 3)
  1143. {
  1144. _jv.Data = view;
  1145. }
  1146. else if (dto.PortType == 1)
  1147. {
  1148. var view1 = _mapper.Map<List<GoodsReceiveListView>>(view);
  1149. _jv.Data = view1;
  1150. }
  1151. _jv.Code = StatusCodes.Status200OK;
  1152. _jv.Count = total;
  1153. _jv.Msg = $"操作成功";
  1154. return _jv;
  1155. }
  1156. /// <summary>
  1157. /// 物品领用详情
  1158. /// </summary>
  1159. /// <param name="portType"></param>
  1160. /// <param name="id"></param>
  1161. /// <returns></returns>
  1162. public async Task<JsonView> GoodsReceiveInfo(int portType, int id)
  1163. {
  1164. var data = await _sqlSugar.Queryable<Pm_GoodsReceive>()
  1165. .LeftJoin<Pm_GoodsInfo>((gr, gi) => gr.GoodsId == gi.Id)
  1166. .LeftJoin<Sys_Users>((gr, gi, u1) => gr.AuditUserId == u1.Id)
  1167. .LeftJoin<Sys_Users>((gr, gi, u1, u2) => gr.CreateUserId == u2.Id)
  1168. .LeftJoin<Grp_DelegationInfo>((gr, gi, u1, u2, di) => gr.GroupId == di.Id)
  1169. .Where((gr, gi, u1, u2, di) => gr.IsDel == 0)
  1170. .WhereIF(id > 0, (gr, gi, u1, u2, di) => gr.Id == id)
  1171. .Select((gr, gi, u1, u2, di) => new GoodsReceiveInfoMobileView
  1172. {
  1173. Id = gr.Id,
  1174. GroupId = gr.GroupId,
  1175. GroupName = di.TeamName,
  1176. GoodsId = gr.GoodsId,
  1177. GoodsName = gi.Name,
  1178. Quantity = gr.Quantity,
  1179. Reason = gr.Reason,
  1180. Remark = gr.Remark,
  1181. GoodsStorageInfo = gr.GoodsStorageInfo,
  1182. AuditStatus = gr.AuditStatus,
  1183. AuditUserId = gr.AuditUserId,
  1184. AuditUserName = u1.CnName,
  1185. AuditTime = gr.AuditTime,
  1186. CreateUserName = u2.CnName,
  1187. CreateTime = gr.CreateTime
  1188. })
  1189. .FirstAsync();
  1190. if (!string.IsNullOrEmpty(data.GoodsStorageInfo))
  1191. {
  1192. var subData = new List<dynamic>();
  1193. try
  1194. {
  1195. var subData1 = JsonConvert.DeserializeObject<List<GoodsReceiveLinkStorageView>>(data.GoodsStorageInfo);
  1196. if (subData1.Count > 0)
  1197. {
  1198. string goodsStorageInfoStr = string.Empty;
  1199. var storageIds = subData1.Select(x => x.StorageId).ToList();
  1200. var storages = await _sqlSugar.Queryable<Pm_GoodsStorage>().Where(x => x.IsDel == 0 && storageIds.Contains(x.Id)).ToListAsync();
  1201. foreach (var item in subData1)
  1202. {
  1203. var storageInfo = storages.Find(x => x.Id == item.StorageId);
  1204. if (storageInfo != null)
  1205. {
  1206. subData.Add(new
  1207. {
  1208. StorageId = item.StorageId,
  1209. BatchNo = storageInfo.BatchNo,
  1210. RecsiveQuantity = item.Quantity
  1211. });
  1212. goodsStorageInfoStr += $"物品名称:{data.GoodsName} 批次号:{storageInfo.BatchNo} 领用数量:{item.Quantity} \r\n";
  1213. }
  1214. }
  1215. data.QuantityInfos = subData;
  1216. data.GoodsStorageInfoStr = goodsStorageInfoStr;
  1217. }
  1218. }
  1219. catch (Exception e)
  1220. {
  1221. Console.WriteLine(e);
  1222. }
  1223. }
  1224. _jv.Code = StatusCodes.Status200OK;
  1225. _jv.Msg = $"操作成功";
  1226. if (portType == 2 || portType == 3) //移动端
  1227. {
  1228. _jv.Data = data;
  1229. }
  1230. else if (portType == 1) //pc端
  1231. {
  1232. _jv.Data = _mapper.Map<GoodsReceiveInfoView>(data);
  1233. }
  1234. return _jv;
  1235. }
  1236. /// <summary>
  1237. /// 物品领用 OP(Add Or Edit)
  1238. /// </summary>
  1239. /// <param name="dto"></param>
  1240. /// <param name="currUserId"></param>
  1241. /// <returns></returns>
  1242. public async Task<JsonView> GoodsReceiveOp(GoodsReceiveOpDto dto, int currUserId)
  1243. {
  1244. var info = _mapper.Map<Pm_GoodsReceive>(dto);
  1245. info.CreateUserId = currUserId;
  1246. var auditEnums = new List<GoodsAuditEnum>() {
  1247. GoodsAuditEnum.Approved, // 1
  1248. GoodsAuditEnum.UnApproved, // 2
  1249. GoodsAuditEnum.OutConfirmed,// 5
  1250. GoodsAuditEnum.OutRejected // 6
  1251. };
  1252. _sqlSugar.BeginTran();
  1253. //物品现有库存
  1254. var goodsInfo = _sqlSugar.Queryable<Pm_GoodsInfo>().First(x => x.Id == info.GoodsId);
  1255. var stockQuantity = goodsInfo?.StockQuantity ?? 0.00M;
  1256. //待审核 该物品数量
  1257. var waitAuditQuantity = await _sqlSugar.Queryable<Pm_GoodsReceive>().Where(x => x.IsDel == 0 &&
  1258. x.GoodsId == dto.GoodsId &&
  1259. !auditEnums.Contains(x.AuditStatus)
  1260. ).SumAsync(x => x.Quantity);
  1261. if (info.Id > 0) //修改
  1262. {
  1263. //审核验证
  1264. var selectInfo = await _sqlSugar.Queryable<Pm_GoodsReceive>().FirstAsync(x => x.Id == info.Id);
  1265. if (auditEnums.Contains(selectInfo.AuditStatus))
  1266. {
  1267. _sqlSugar.RollbackTran();
  1268. _jv.Msg = $"该条数据已执行操作({selectInfo.AuditStatus.GetEnumDescription()}),不可更改!";
  1269. return _jv;
  1270. }
  1271. //物品数量验证
  1272. var editAfterQuantity = waitAuditQuantity - selectInfo.Quantity + info.Quantity;
  1273. if (editAfterQuantity > stockQuantity)
  1274. {
  1275. _sqlSugar.RollbackTran();
  1276. _jv.Msg = $"该物品现有库存不足,不可更改!请联系采购人员购买!";
  1277. return _jv;
  1278. }
  1279. var edit = await _sqlSugar.Updateable(info)
  1280. .UpdateColumns(x => new
  1281. {
  1282. x.GroupId,
  1283. x.Quantity,
  1284. x.Reason,
  1285. x.Remark,
  1286. })
  1287. .Where(x => x.Id == info.Id)
  1288. .ExecuteCommandAsync();
  1289. if (edit > 0)
  1290. {
  1291. _sqlSugar.CommitTran();
  1292. _jv.Msg = $"操作成功!";
  1293. _jv.Code = StatusCodes.Status200OK;
  1294. return _jv;
  1295. }
  1296. //验证默认审核 多条 or 单挑
  1297. var isAuditPer = GoodsAuditType(goodsInfo?.Type ?? 0);
  1298. if (!isAuditPer)
  1299. {
  1300. //出库确认默认审核状态
  1301. var goodsAuditList = new List<Pm_GoodsAudit>() {
  1302. new (2, GoodsAuditDepEnum.Hr, info.Id, GoodsConfirmEnum.WaitConfirm, currUserId),
  1303. //new (2, GoodsAuditDepEnum.Financial, add, GoodsConfirmEnum.WaitConfirm, currUserId)
  1304. };
  1305. await _sqlSugar.Insertable(goodsAuditList).ExecuteCommandAsync();
  1306. }
  1307. }
  1308. else if (info.Id < 1) //添加
  1309. {
  1310. //物品数量验证
  1311. decimal addAgoQuantity = waitAuditQuantity + info.Quantity;
  1312. if (addAgoQuantity > stockQuantity)
  1313. {
  1314. _sqlSugar.RollbackTran();
  1315. _jv.Msg = $"该物品现有库存不足,不可更改!请联系采购人员购买!";
  1316. return _jv;
  1317. }
  1318. var add = await _sqlSugar.Insertable(info).ExecuteReturnIdentityAsync();
  1319. if (add < 1)
  1320. {
  1321. _sqlSugar.RollbackTran();
  1322. _jv.Msg = $"添加失败!";
  1323. _jv.Code = StatusCodes.Status400BadRequest;
  1324. return _jv;
  1325. }
  1326. //验证默认审核 多条 or 单挑
  1327. var isAuditPer = GoodsAuditType(goodsInfo?.Type ?? 0);
  1328. if (isAuditPer)
  1329. {
  1330. //出库确认默认审核状态
  1331. var goodsAuditList = new List<Pm_GoodsAudit>() {
  1332. new (2, GoodsAuditDepEnum.Hr, add, GoodsConfirmEnum.WaitConfirm, currUserId),
  1333. //new (2, GoodsAuditDepEnum.Financial, add, GoodsConfirmEnum.WaitConfirm, currUserId)
  1334. };
  1335. await _sqlSugar.Insertable(goodsAuditList).ExecuteCommandAsync();
  1336. }
  1337. _sqlSugar.CommitTran();
  1338. _jv.Msg = $"操作成功!";
  1339. _jv.Code = StatusCodes.Status200OK;
  1340. return _jv;
  1341. }
  1342. _sqlSugar.RollbackTran();
  1343. return _jv;
  1344. }
  1345. /// <summary>
  1346. /// 物品领用 Audit
  1347. /// </summary>
  1348. /// <param name="idArray"></param>
  1349. /// <param name="userId"></param>
  1350. /// <param name="auditEnum"></param>
  1351. /// <returns></returns>
  1352. public async Task<JsonView> GoodsReceiveAudit(int[] idArray, int userId, GoodsAuditEnum auditEnum)
  1353. {
  1354. if (idArray.Length < 1) return _jv;
  1355. var auditEnums = new List<GoodsAuditEnum>() {
  1356. GoodsAuditEnum.Pending,
  1357. GoodsAuditEnum.Approved,
  1358. GoodsAuditEnum.UnApproved,
  1359. GoodsAuditEnum.OutPending,
  1360. GoodsAuditEnum.OutConfirmed,
  1361. GoodsAuditEnum.OutRejected,
  1362. };
  1363. if (!auditEnums.Contains(auditEnum))
  1364. {
  1365. _jv.Msg = $"出库确认状态超出可用范围!";
  1366. return _jv;
  1367. }
  1368. int receiveId = idArray[0];
  1369. //验证审核部门 审核状态 大于等于 OutPending 时 验证
  1370. var auditDep = GoodsAuditDepEnum.Hr;
  1371. if (auditEnum >= GoodsAuditEnum.OutPending)
  1372. {
  1373. var auditList = GoodsStorageConfirmAuditDep(2);
  1374. var auditDepInfo = auditList.Find(x => x.AuditorIds.Contains(userId));
  1375. if (auditDepInfo == null)
  1376. {
  1377. _jv.Msg = string.Format("未分配出库确认权限!");
  1378. return _jv;
  1379. }
  1380. auditDep = auditDepInfo.AuditDep;
  1381. }
  1382. var currUserName = _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == userId)?.CnName ?? "-";
  1383. _sqlSugar.BeginTran();
  1384. var receiveInfo = await _sqlSugar
  1385. .Queryable<Pm_GoodsReceive>()
  1386. //.Where(x => x.IsDel == 0 && idArray.Contains(x.Id))
  1387. .Where(x => x.IsDel == 0 && receiveId == x.Id)
  1388. .FirstAsync();
  1389. if (receiveInfo == null)
  1390. {
  1391. _sqlSugar.RollbackTran();
  1392. _jv.Msg = $"当前领用信息不存在!";
  1393. return _jv;
  1394. }
  1395. //审核前状态
  1396. var preChangeStatus = receiveInfo.AuditStatus;
  1397. //状态验证
  1398. //if (preChangeStatus == auditEnum)
  1399. //{
  1400. // _sqlSugar.RollbackTran();
  1401. // _jv.Msg = $"该条数据状态已设置,不可重复设置!";
  1402. // return _jv;
  1403. //}
  1404. switch (auditEnum)
  1405. {
  1406. case GoodsAuditEnum.Pending: //领用待确认(取消确认、取消拒绝)
  1407. _jv = await GoodsReceivePending(preChangeStatus, receiveId, userId, currUserName, auditEnum);
  1408. break;
  1409. case GoodsAuditEnum.Approved: //领用确认
  1410. _jv = await GoodsReceiveApproved(preChangeStatus, receiveId, userId, currUserName, auditEnum);
  1411. break;
  1412. case GoodsAuditEnum.UnApproved: //领用拒绝
  1413. _jv = await GoodsReceiveUnApproved(preChangeStatus, receiveId, userId, currUserName, auditEnum);
  1414. break;
  1415. case GoodsAuditEnum.OutPending: //出库待确认(取消出库确认、取消出库拒绝)
  1416. _jv = await GoodsReceiveOutPending(preChangeStatus, receiveInfo, userId, auditDep, auditEnum);
  1417. break;
  1418. case GoodsAuditEnum.OutConfirmed: //出库确认
  1419. _jv = await GoodsReceiveOutConfirming(receiveInfo, userId, auditDep, auditEnum);
  1420. break;
  1421. case GoodsAuditEnum.OutRejected: //出库拒绝
  1422. _jv = await GoodsReceiveOutConfirming(receiveInfo, userId, auditDep, auditEnum);
  1423. break;
  1424. }
  1425. if (_jv.Code == StatusCodes.Status200OK)
  1426. {
  1427. _sqlSugar.CommitTran();
  1428. _jv.Msg = $"操作成功!";
  1429. _jv.Data = auditEnum;
  1430. return _jv;
  1431. }
  1432. _sqlSugar.RollbackTran();
  1433. return _jv;
  1434. }
  1435. /// <summary>
  1436. /// 物品领用状态 - 领用待确认(取消确认、取消拒绝)
  1437. /// </summary>
  1438. /// <param name="preChangeStatus">更改前状态</param>
  1439. /// <param name="receiveId"></param>
  1440. /// <param name="userId"></param>
  1441. /// <param name="userName"></param>
  1442. /// <param name="auditEnum"></param>
  1443. /// <returns></returns>
  1444. public async Task<JsonView> GoodsReceivePending(GoodsAuditEnum preChangeStatus, int receiveId, int userId, string userName, GoodsAuditEnum auditEnum)
  1445. {
  1446. _jv.Code = StatusCodes.Status400BadRequest;
  1447. //领用待确认 操作范围
  1448. var audirEnumPers = new List<GoodsAuditEnum>() {
  1449. GoodsAuditEnum.Approved,
  1450. GoodsAuditEnum.UnApproved
  1451. };
  1452. if (!audirEnumPers.Contains(preChangeStatus))
  1453. {
  1454. _jv.Msg = $"{GoodsAuditEnum.Approved.GetEnumDescription()}、{GoodsAuditEnum.UnApproved.GetEnumDescription()},状态下可取消操作!";
  1455. return _jv;
  1456. }
  1457. var currUserOpDt = DateTime.Now;
  1458. var currUserOpTime = currUserOpDt.ToString("yyyy-MM-dd HH:mm:ss");
  1459. var statusDesc = string.Format(@"领用确认:状态:{0} 审核人:{1} 审核时间:{2};<br/>人事部确认:状态:待确认 审核人:- 审核时间:-;<br/>财务部确认:状态:待确认 审核人:- 审核时间:-;", auditEnum.GetEnumDescription(), userName, currUserOpTime);
  1460. auditEnum = GoodsAuditEnum.Pending;
  1461. var changeStatus = await _sqlSugar
  1462. .Updateable<Pm_GoodsReceive>()
  1463. .SetColumns(x => new Pm_GoodsReceive()
  1464. {
  1465. AuditStatus = auditEnum,
  1466. AuditUserId = userId,
  1467. AuditTime = currUserOpDt,
  1468. StatusDesc = statusDesc
  1469. })
  1470. .Where(x => x.Id == receiveId)
  1471. .ExecuteCommandAsync();
  1472. if (changeStatus > 0)
  1473. {
  1474. _jv.Code = StatusCodes.Status200OK;
  1475. }
  1476. return _jv;
  1477. }
  1478. /// <summary>
  1479. /// 物品领用状态 - 领用确认
  1480. /// </summary>
  1481. /// <param name="preChangeStatus">更改前状态</param>
  1482. /// <param name="receiveId"></param>
  1483. /// <param name="userId"></param>
  1484. /// <param name="userName"></param>
  1485. /// <param name="auditEnum"></param>
  1486. /// <returns></returns>
  1487. public async Task<JsonView> GoodsReceiveApproved(GoodsAuditEnum preChangeStatus, int receiveId, int userId, string userName, GoodsAuditEnum auditEnum)
  1488. {
  1489. _jv.Code = StatusCodes.Status400BadRequest;
  1490. if (preChangeStatus != GoodsAuditEnum.Pending)
  1491. {
  1492. _jv.Msg = $"{GoodsAuditEnum.Pending.GetEnumDescription()},状态下可取消操作!";
  1493. return _jv;
  1494. }
  1495. var currUserOpDt = DateTime.Now;
  1496. var currUserOpTime = currUserOpDt.ToString("yyyy-MM-dd HH:mm:ss");
  1497. var statusDesc = string.Format(@"领用确认:状态:{0} 审核人:{1} 审核时间:{2};<br/>人事部确认:状态:待确认 审核人:- 审核时间:-;<br/>财务部确认:状态:待确认 审核人:- 审核时间:-;", auditEnum.GetEnumDescription(), userName, currUserOpTime);
  1498. auditEnum = GoodsAuditEnum.OutPending;
  1499. var changeStatus = await _sqlSugar
  1500. .Updateable<Pm_GoodsReceive>()
  1501. .SetColumns(x => new Pm_GoodsReceive()
  1502. {
  1503. AuditStatus = auditEnum,
  1504. AuditUserId = userId,
  1505. AuditTime = currUserOpDt,
  1506. StatusDesc = statusDesc
  1507. })
  1508. .Where(x => x.Id == receiveId)
  1509. .ExecuteCommandAsync();
  1510. if (changeStatus > 0)
  1511. {
  1512. _jv.Code = StatusCodes.Status200OK;
  1513. }
  1514. return _jv;
  1515. }
  1516. /// <summary>
  1517. /// 物品领用状态 - 领用拒绝
  1518. /// </summary>
  1519. /// <param name="preChangeStatus">更改前状态</param>
  1520. /// <param name="receiveId"></param>
  1521. /// <param name="userId"></param>
  1522. /// <param name="userName"></param>
  1523. /// <param name="auditEnum"></param>
  1524. /// <returns></returns>
  1525. public async Task<JsonView> GoodsReceiveUnApproved(GoodsAuditEnum preChangeStatus, int receiveId, int userId, string userName, GoodsAuditEnum auditEnum)
  1526. {
  1527. _jv.Code = StatusCodes.Status400BadRequest;
  1528. if (preChangeStatus != GoodsAuditEnum.Pending)
  1529. {
  1530. _jv.Msg = $"{GoodsAuditEnum.Pending.GetEnumDescription()},状态下可取消操作!";
  1531. return _jv;
  1532. }
  1533. auditEnum = GoodsAuditEnum.UnApproved;
  1534. var currUserOpDt = DateTime.Now;
  1535. var currUserOpTime = currUserOpDt.ToString("yyyy-MM-dd HH:mm:ss");
  1536. var statusDesc = string.Format(@"领用确认:状态:{0} 审核人:{1} 审核时间:{2};<br/>人事部确认:状态:待确认 审核人:- 审核时间:-;<br/>财务部认:状态:待确认 审核人:- 审核时间:-;<br/>", auditEnum.GetEnumDescription(), userName, currUserOpTime);
  1537. var changeStatus = await _sqlSugar
  1538. .Updateable<Pm_GoodsReceive>()
  1539. .SetColumns(x => new Pm_GoodsReceive()
  1540. {
  1541. AuditStatus = auditEnum,
  1542. AuditUserId = userId,
  1543. AuditTime = currUserOpDt,
  1544. StatusDesc = statusDesc
  1545. })
  1546. .Where(x => x.Id == receiveId)
  1547. .ExecuteCommandAsync();
  1548. if (changeStatus > 0)
  1549. {
  1550. _jv.Code = StatusCodes.Status200OK;
  1551. }
  1552. return _jv;
  1553. }
  1554. /// <summary>
  1555. /// 物品领用状态 - 出库待确认(出库确认、出库拒绝)
  1556. /// </summary>
  1557. /// <param name="preChangeStatus">更改前状态</param>
  1558. /// <param name="receiveId"></param>
  1559. /// <param name="userId"></param>
  1560. /// <param name="userName"></param>
  1561. /// <param name="auditEnum"></param>
  1562. /// <returns></returns>
  1563. public async Task<JsonView> GoodsReceiveOutPending(GoodsAuditEnum preChangeStatus, Pm_GoodsReceive receiveInfo, int userId, GoodsAuditDepEnum depEnum, GoodsAuditEnum auditEnum)
  1564. {
  1565. _jv.Code = StatusCodes.Status400BadRequest;
  1566. //出库待确认 操作范围
  1567. var audirEnumPers = new List<GoodsAuditEnum>() {
  1568. GoodsAuditEnum.OutConfirmed,
  1569. GoodsAuditEnum.OutRejected
  1570. };
  1571. if (!audirEnumPers.Contains(preChangeStatus))
  1572. {
  1573. _jv.Msg = $"{GoodsAuditEnum.OutConfirmed.GetEnumDescription()}、{GoodsAuditEnum.OutRejected.GetEnumDescription()},状态下可取消操作!";
  1574. return _jv;
  1575. }
  1576. var currUserOpDt = DateTime.Now;
  1577. var currUserOpTime = currUserOpDt.ToString("yyyy-MM-dd HH:mm:ss");
  1578. var auditInfos = await _sqlSugar.Queryable<Pm_GoodsAudit>()
  1579. .Where(x => x.IsDel == 0 && x.DataId == receiveInfo.Id && x.Type == 2)
  1580. .ToListAsync();
  1581. auditEnum = GoodsAuditEnum.OutPending;
  1582. var auditStatus = GoodsConfirmEnum.WaitConfirm;
  1583. var auditInfo = auditInfos.Find(x => x.Dep == depEnum);
  1584. if (auditInfo == null)
  1585. {
  1586. auditInfo = new Pm_GoodsAudit(2, depEnum, receiveInfo.Id, auditStatus, userId);
  1587. var addStatus = await _sqlSugar.Insertable(auditInfo).ExecuteCommandAsync();
  1588. if (addStatus < 1)
  1589. {
  1590. _jv.Msg = $"出库确认取消操作失败!";
  1591. return _jv;
  1592. }
  1593. auditInfos.Add(auditInfo);
  1594. }
  1595. else
  1596. {
  1597. //移除旧数据
  1598. auditInfos.Remove(auditInfo);
  1599. auditInfo.AuditStatus = auditStatus;
  1600. auditInfo.AuditUserId = userId;
  1601. auditInfo.AuditTime = currUserOpDt;
  1602. var updStatus = await _sqlSugar.Updateable<Pm_GoodsAudit>()
  1603. .SetColumns(x => new Pm_GoodsAudit()
  1604. {
  1605. AuditStatus = auditStatus,
  1606. AuditUserId = userId,
  1607. AuditTime = currUserOpDt
  1608. })
  1609. .Where(x => x.Id == auditInfo.Id)
  1610. .ExecuteCommandAsync();
  1611. if (updStatus < 1)
  1612. {
  1613. _jv.Msg = $"出库确认操作失败!";
  1614. return _jv;
  1615. }
  1616. //添加更新后的数据
  1617. auditInfos.Add(auditInfo);
  1618. }
  1619. //处理状态描述
  1620. StringBuilder statusDesc = new StringBuilder();
  1621. var receiveUserName = _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == receiveInfo.AuditUserId)?.CnName ?? "-";
  1622. string receiveStatusDesc = string.Format("{0}:状态:{1} 审核人:{2} 审核时间:{3};<br/>",
  1623. "领用确认", GoodsAuditEnum.Approved.GetEnumDescription(), receiveUserName, receiveInfo.AuditTime.ToString("yyyy-MM-dd HH:mm:ss"));
  1624. statusDesc.Append(receiveStatusDesc);
  1625. foreach (var auditInf in auditInfos)
  1626. {
  1627. string userName = _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == auditInf.AuditUserId)?.CnName ?? "-";
  1628. string userOpTime = !userName.Equals("-") ? auditInf.AuditTime.ToString("yyyy-MM-dd HH:mm:ss") : "-";
  1629. string auditInfStatusDesc = string.Format("{0}:状态:{1} 审核人:{2} 审核时间:{3};<br/>",
  1630. auditInf.Dep.GetEnumDescription(), auditInf.AuditStatus.GetEnumDescription(), userName, currUserOpTime);
  1631. statusDesc.Append(auditInfStatusDesc);
  1632. }
  1633. //批次库存信息
  1634. string goodsStorageInfo = receiveInfo.GoodsStorageInfo;
  1635. //出库确认取消是单独处理
  1636. if (preChangeStatus == GoodsAuditEnum.OutConfirming)
  1637. {
  1638. if (auditInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() == 1)
  1639. {
  1640. auditEnum = GoodsAuditEnum.OutConfirming;
  1641. }
  1642. //2.1 更改库存
  1643. var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().Where(x => x.Id == receiveInfo.GoodsId).FirstAsync();
  1644. goodsInfo.StockQuantity -= receiveInfo.Quantity;
  1645. goodsInfo.OQ_Total += receiveInfo.Quantity;
  1646. goodsInfo.LastUpdateTime = DateTime.Now;
  1647. goodsInfo.LastUpdateUserId = userId;
  1648. var editGoods = await _sqlSugar
  1649. .Updateable(goodsInfo)
  1650. .UpdateColumns(x => new
  1651. {
  1652. x.StockQuantity,
  1653. x.OQ_Total,
  1654. x.LastUpdateUserId,
  1655. x.LastUpdateTime,
  1656. })
  1657. .Where(x => x.Id == receiveInfo.GoodsId)
  1658. .ExecuteCommandAsync();
  1659. if (editGoods < 1)
  1660. {
  1661. _jv.Msg = $"库存更新失败!";
  1662. return _jv;
  1663. }
  1664. //2.2 入库批次关联领用人 更改批次库存
  1665. var goodsStorages = await _sqlSugar
  1666. .Queryable<Pm_GoodsStorage>()
  1667. .Where(x => x.IsDel == 0 &&
  1668. x.GoodsId == receiveInfo.GoodsId &&
  1669. (x.Quantity - x.ReceiveQuantity) > 0
  1670. )
  1671. .OrderBy(x => x.CreateTime)
  1672. .ToListAsync();
  1673. var goodsReceiveInfos = new List<GoodsReceiveLinkStorageView>();
  1674. var batchStorageInfos = new List<Pm_GoodsStorage>();
  1675. var receiveQuantity = 0.00M; //领用总数量
  1676. foreach (var storage in goodsStorages)
  1677. {
  1678. if (receiveInfo.Quantity == receiveQuantity) break;
  1679. var thisBatchSurplusQuantity = storage.Quantity - storage.ReceiveQuantity;
  1680. if (thisBatchSurplusQuantity <= 0.00M) continue;
  1681. var thisBatchReceiveQuantity = 0.00M; //此批次领用数量
  1682. const decimal unit = 0.50M;
  1683. while (receiveQuantity < receiveInfo.Quantity)
  1684. {
  1685. if (thisBatchSurplusQuantity == thisBatchReceiveQuantity) break;
  1686. thisBatchReceiveQuantity += unit;
  1687. receiveQuantity += unit;
  1688. }
  1689. goodsReceiveInfos.Add(new GoodsReceiveLinkStorageView
  1690. {
  1691. StorageId = storage.Id,
  1692. Quantity = thisBatchReceiveQuantity
  1693. });
  1694. storage.ReceiveQuantity += thisBatchReceiveQuantity;
  1695. var storageUpd = storage;
  1696. //storageUpd.ReceiveQuantity += thisBatchReceiveQuantity;
  1697. batchStorageInfos.Add(storageUpd);
  1698. }
  1699. //2.2.1 更改批次库存
  1700. if (goodsReceiveInfos.Count > 0)
  1701. {
  1702. var edit1 = await _sqlSugar.Updateable(batchStorageInfos)
  1703. .UpdateColumns(x => x.ReceiveQuantity)
  1704. .WhereColumns(x => x.Id)
  1705. .ExecuteCommandAsync();
  1706. if (edit1 < 1)
  1707. {
  1708. _jv.Msg = $"批次库存更新失败!";
  1709. return _jv;
  1710. }
  1711. }
  1712. //2.2.2 添加入库批次关联领用人
  1713. if (goodsReceiveInfos.Count > 0)
  1714. {
  1715. goodsStorageInfo = JsonConvert.SerializeObject(goodsReceiveInfos);
  1716. }
  1717. }
  1718. var statusDesc1 = statusDesc.ToString();
  1719. var changeStatus = await _sqlSugar
  1720. .Updateable<Pm_GoodsReceive>()
  1721. .SetColumns(x => new Pm_GoodsReceive()
  1722. {
  1723. AuditStatus = auditEnum,
  1724. StatusDesc = statusDesc1,
  1725. GoodsStorageInfo = goodsStorageInfo
  1726. })
  1727. .Where(x => x.Id == receiveInfo.Id)
  1728. .ExecuteCommandAsync();
  1729. if (changeStatus > 0)
  1730. {
  1731. _jv.Code = StatusCodes.Status200OK;
  1732. }
  1733. return _jv;
  1734. }
  1735. /// <summary>
  1736. /// 物品领用状态 - 出库确认中、出库确认完成、出库确认拒绝
  1737. /// </summary>
  1738. /// <param name="receiveInfo"></param>
  1739. /// <param name="userId"></param>
  1740. /// <param name="depEnum"></param>
  1741. /// <param name="auditEnum"></param>
  1742. /// <returns></returns>
  1743. public async Task<JsonView> GoodsReceiveOutConfirming(Pm_GoodsReceive receiveInfo, int userId, GoodsAuditDepEnum depEnum, GoodsAuditEnum auditEnum)
  1744. {
  1745. _jv.Code = StatusCodes.Status400BadRequest;
  1746. //更改前状态
  1747. var preChangeStatus = receiveInfo.AuditStatus;
  1748. if (preChangeStatus < GoodsAuditEnum.OutPending)
  1749. {
  1750. _jv.Msg = $"领用确认执行成功!才可执行出库确认或出库拒绝操作!";
  1751. return _jv;
  1752. }
  1753. var currUserOpDt = DateTime.Now;
  1754. var currUserOpTime = currUserOpDt.ToString("yyyy-MM-dd HH:mm:ss");
  1755. var auditInfos = await _sqlSugar.Queryable<Pm_GoodsAudit>()
  1756. .Where(x => x.IsDel == 0 && x.DataId == receiveInfo.Id && x.Type == 2)
  1757. .ToListAsync();
  1758. var auditStatus = GoodsConfirmEnum.WaitConfirm;
  1759. if (auditEnum == GoodsAuditEnum.OutRejected) auditStatus = GoodsConfirmEnum.UnApproved;
  1760. else if (auditEnum == GoodsAuditEnum.OutConfirmed) auditStatus = GoodsConfirmEnum.Confirmed;
  1761. var auditInfo = auditInfos.Find(x => x.Dep == depEnum);
  1762. if (auditInfo == null)
  1763. {
  1764. auditInfo = new Pm_GoodsAudit(2, depEnum, receiveInfo.Id, auditStatus, userId);
  1765. var addStatus = await _sqlSugar.Insertable(auditInfo).ExecuteCommandAsync();
  1766. if (addStatus < 1)
  1767. {
  1768. _jv.Msg = $"出库确认操作失败!";
  1769. return _jv;
  1770. }
  1771. auditInfos.Add(auditInfo);
  1772. }
  1773. else
  1774. {
  1775. //移除旧数据
  1776. auditInfos.Remove(auditInfo);
  1777. auditInfo.AuditStatus = auditStatus;
  1778. auditInfo.AuditUserId = userId;
  1779. auditInfo.AuditTime = currUserOpDt;
  1780. var updStatus = await _sqlSugar.Updateable<Pm_GoodsAudit>()
  1781. .SetColumns(x => new Pm_GoodsAudit()
  1782. {
  1783. AuditStatus = auditStatus,
  1784. AuditUserId = userId,
  1785. AuditTime = currUserOpDt
  1786. })
  1787. .Where(x => x.Id == auditInfo.Id)
  1788. .ExecuteCommandAsync();
  1789. if (updStatus < 1)
  1790. {
  1791. _jv.Msg = $"出库确认操作失败!";
  1792. return _jv;
  1793. }
  1794. //添加更新后的数据
  1795. auditInfos.Add(auditInfo);
  1796. }
  1797. //处理状态描述
  1798. StringBuilder statusDesc = new StringBuilder();
  1799. var receiveUserName = _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == receiveInfo.AuditUserId)?.CnName ?? "-";
  1800. string receiveStatusDesc = string.Format("{0}:状态:{1} 审核人:{2} 审核时间:{3};<br/>",
  1801. "领用确认", GoodsAuditEnum.Approved.GetEnumDescription(), receiveUserName, receiveInfo.AuditTime.ToString("yyyy-MM-dd HH:mm:ss"));
  1802. statusDesc.Append(receiveStatusDesc);
  1803. foreach (var auditInf in auditInfos)
  1804. {
  1805. string userName = _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == auditInf.AuditUserId)?.CnName ?? "-";
  1806. string userOpTime = !userName.Equals("-") ? auditInf.AuditTime.ToString("yyyy-MM-dd HH:mm:ss") : "-";
  1807. string auditInfStatusDesc = string.Format("{0}:状态:{1} 审核人:{2} 审核时间:{3};<br/>",
  1808. auditInf.Dep.GetEnumDescription(), auditInf.AuditStatus.GetEnumDescription(), userName, currUserOpTime);
  1809. statusDesc.Append(auditInfStatusDesc);
  1810. }
  1811. if (preChangeStatus == auditEnum)
  1812. {
  1813. _jv.Msg = $"此操作已执行,不可重复操作!";
  1814. return _jv;
  1815. }
  1816. //批次库存信息
  1817. string goodsStorageInfo = receiveInfo.GoodsStorageInfo;
  1818. //更改领用状态及库存
  1819. if (auditInfos.Any(x => x.AuditStatus == GoodsConfirmEnum.UnApproved))
  1820. {
  1821. //出库确认拒绝
  1822. auditEnum = GoodsAuditEnum.OutRejected;
  1823. }
  1824. else if (auditInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() == 2)
  1825. {
  1826. //1.出库确认完成
  1827. auditEnum = GoodsAuditEnum.OutConfirmed;
  1828. //2.更改前的状态为出库确认中 且 更改后的状态为出库确认完成 执行库存减操作
  1829. if (preChangeStatus == GoodsAuditEnum.OutConfirming || preChangeStatus == GoodsAuditEnum.OutRejected)
  1830. {
  1831. //2.1 更改库存
  1832. var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().Where(x => x.Id == receiveInfo.GoodsId).FirstAsync();
  1833. goodsInfo.StockQuantity -= receiveInfo.Quantity;
  1834. goodsInfo.OQ_Total += receiveInfo.Quantity;
  1835. goodsInfo.LastUpdateTime = DateTime.Now;
  1836. goodsInfo.LastUpdateUserId = userId;
  1837. var editGoods = await _sqlSugar
  1838. .Updateable(goodsInfo)
  1839. .UpdateColumns(x => new
  1840. {
  1841. x.StockQuantity,
  1842. x.OQ_Total,
  1843. x.LastUpdateUserId,
  1844. x.LastUpdateTime,
  1845. })
  1846. .Where(x => x.Id == receiveInfo.GoodsId)
  1847. .ExecuteCommandAsync();
  1848. if (editGoods < 1)
  1849. {
  1850. _jv.Msg = $"库存更新失败!";
  1851. return _jv;
  1852. }
  1853. //2.2 入库批次关联领用人 更改批次库存
  1854. var goodsStorages = await _sqlSugar
  1855. .Queryable<Pm_GoodsStorage>()
  1856. .Where(x => x.IsDel == 0 &&
  1857. x.GoodsId == receiveInfo.GoodsId &&
  1858. (x.Quantity - x.ReceiveQuantity) > 0
  1859. )
  1860. .OrderBy(x => x.CreateTime)
  1861. .ToListAsync();
  1862. var goodsReceiveInfos = new List<GoodsReceiveLinkStorageView>();
  1863. var batchStorageInfos = new List<Pm_GoodsStorage>();
  1864. var receiveQuantity = 0.00M; //领用总数量
  1865. foreach (var storage in goodsStorages)
  1866. {
  1867. if (receiveInfo.Quantity == receiveQuantity) break;
  1868. var thisBatchSurplusQuantity = storage.Quantity - storage.ReceiveQuantity;
  1869. if (thisBatchSurplusQuantity <= 0.00M) continue;
  1870. var thisBatchReceiveQuantity = 0.00M; //此批次领用数量
  1871. const decimal unit = 0.50M;
  1872. while (receiveQuantity < receiveInfo.Quantity)
  1873. {
  1874. if (thisBatchSurplusQuantity == thisBatchReceiveQuantity) break;
  1875. thisBatchReceiveQuantity += unit;
  1876. receiveQuantity += unit;
  1877. }
  1878. goodsReceiveInfos.Add(new GoodsReceiveLinkStorageView
  1879. {
  1880. StorageId = storage.Id,
  1881. Quantity = thisBatchReceiveQuantity
  1882. });
  1883. storage.ReceiveQuantity += thisBatchReceiveQuantity;
  1884. var storageUpd = storage;
  1885. //storageUpd.ReceiveQuantity += thisBatchReceiveQuantity;
  1886. batchStorageInfos.Add(storageUpd);
  1887. }
  1888. //2.2.1 更改批次库存
  1889. if (goodsReceiveInfos.Count > 0)
  1890. {
  1891. var edit1 = await _sqlSugar.Updateable(batchStorageInfos)
  1892. .UpdateColumns(x => x.ReceiveQuantity)
  1893. .WhereColumns(x => x.Id)
  1894. .ExecuteCommandAsync();
  1895. if (edit1 < 1)
  1896. {
  1897. _jv.Msg = $"批次库存更新失败!";
  1898. return _jv;
  1899. }
  1900. }
  1901. //2.2.2 添加入库批次关联领用人
  1902. if (goodsReceiveInfos.Count > 0)
  1903. {
  1904. goodsStorageInfo = JsonConvert.SerializeObject(goodsReceiveInfos);
  1905. }
  1906. }
  1907. }
  1908. else if (auditInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() == 1)
  1909. {
  1910. //出库确认中
  1911. auditEnum = GoodsAuditEnum.OutConfirming;
  1912. if (preChangeStatus == GoodsAuditEnum.OutConfirmed)
  1913. {
  1914. var goodsStorageInfo1 = receiveInfo.GoodsStorageInfo;
  1915. if (!string.IsNullOrEmpty(goodsStorageInfo))
  1916. {
  1917. var goodsStorageInfos = JsonConvert.DeserializeObject<List<GoodsReceiveLinkStorageView>>(goodsStorageInfo);
  1918. if (goodsStorageInfos.Any())
  1919. {
  1920. foreach (var item in goodsStorageInfos)
  1921. {
  1922. var newStorageInfo = await _sqlSugar.Queryable<Pm_GoodsStorage>()
  1923. .Where(x => x.IsDel == 0 && x.Id == item.StorageId)
  1924. .FirstAsync();
  1925. if (newStorageInfo == null) continue;
  1926. var newEdit = await _sqlSugar.Updateable(newStorageInfo)
  1927. .ReSetValue(x => x.ReceiveQuantity = x.ReceiveQuantity - item.Quantity)
  1928. .ExecuteCommandAsync();
  1929. if (newEdit < 1)
  1930. {
  1931. _jv.Msg = $"批次领用库存更新失败!";
  1932. return _jv;
  1933. }
  1934. }
  1935. }
  1936. }
  1937. }
  1938. }
  1939. else
  1940. {
  1941. auditEnum = GoodsAuditEnum.OutPending;
  1942. }
  1943. var statusDesc1 = statusDesc.ToString();
  1944. var changeStatus = await _sqlSugar
  1945. .Updateable<Pm_GoodsReceive>()
  1946. .SetColumns(x => new Pm_GoodsReceive()
  1947. {
  1948. AuditStatus = auditEnum,
  1949. StatusDesc = statusDesc1,
  1950. GoodsStorageInfo = goodsStorageInfo,
  1951. })
  1952. .Where(x => x.Id == receiveInfo.Id)
  1953. .ExecuteCommandAsync();
  1954. if (changeStatus > 0)
  1955. {
  1956. _jv.Code = StatusCodes.Status200OK;
  1957. }
  1958. return _jv;
  1959. }
  1960. /// <summary>
  1961. /// 物品领用 Del
  1962. /// </summary>
  1963. /// <param name="id"></param>
  1964. /// <param name="currUserId"></param>
  1965. /// <returns></returns>
  1966. public async Task<JsonView> GoodsReceiveDel(int id, int currUserId)
  1967. {
  1968. var receiveInfo = await _sqlSugar
  1969. .Queryable<Pm_GoodsReceive>()
  1970. .Where(x => x.IsDel == 0 && x.Id == id)
  1971. .FirstAsync();
  1972. if (receiveInfo.AuditStatus >= GoodsAuditEnum.Approved)
  1973. {
  1974. _jv.Msg = $"该条数据已进入审批流程,不可删除!";
  1975. return _jv;
  1976. }
  1977. var edit = await _sqlSugar
  1978. .Updateable<Pm_GoodsReceive>()
  1979. .SetColumns(x => new Pm_GoodsReceive()
  1980. {
  1981. IsDel = 1,
  1982. DeleteUserId = currUserId,
  1983. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  1984. })
  1985. .Where(x => x.Id == id)
  1986. .ExecuteCommandAsync();
  1987. if (edit > 0)
  1988. {
  1989. _jv.Msg = $"操作成功!";
  1990. _jv.Code = StatusCodes.Status200OK;
  1991. return _jv;
  1992. }
  1993. return _jv;
  1994. }
  1995. }
  1996. }