GoodsRepository.cs 88 KB

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