GoodsRepository.cs 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214
  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. //验证是否需要多级确认
  592. var isAuditPer = GoodsAuditType(goodsTypeId);
  593. //单部门审核时默认人事部审核
  594. if (!isAuditPer) goodsAuditDep = GoodsAuditDepEnum.Hr;
  595. var auditInfo = preInfos.FirstOrDefault(x => x.Dep == goodsAuditDep);
  596. if (auditInfo != null)
  597. {
  598. //移除部门审核状态
  599. preInfos.Remove(auditInfo);
  600. auditInfo.AuditStatus = dto.ConfirmStatus;
  601. auditInfo.AuditUserId = currUserId;
  602. auditInfo.AuditTime = DateTime.Now;
  603. var updStatus = await _sqlSugar.Updateable(auditInfo)
  604. .UpdateColumns(x => new {x.AuditStatus, x.AuditUserId, x.AuditTime })
  605. .ExecuteCommandAsync();
  606. if (updStatus < 1)
  607. {
  608. _sqlSugar.RollbackTran();
  609. _jv.Msg = string.Format("入库确认失败!");
  610. return _jv;
  611. }
  612. }
  613. else
  614. {
  615. auditInfo = new Pm_GoodsAudit(1, goodsAuditDep, gsId, dto.ConfirmStatus, currUserId, currUserId);
  616. var addStatus = await _sqlSugar.Insertable(auditInfo).ExecuteCommandAsync();
  617. if (addStatus < 1)
  618. {
  619. _sqlSugar.RollbackTran();
  620. _jv.Msg = string.Format("入库确认失败!");
  621. return _jv;
  622. }
  623. }
  624. preInfos.Add(auditInfo);
  625. //入库确认 更改入库状态及扣或增加除库存数、金额
  626. var confirmStatus = GoodsConfirmEnum.WaitConfirm;
  627. if (isAuditPer) //多级审核确认
  628. {
  629. if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() >= 2)
  630. {
  631. confirmStatus = GoodsConfirmEnum.Confirmed;
  632. }
  633. else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() >= 1)
  634. {
  635. confirmStatus = GoodsConfirmEnum.PartConfirmed;
  636. }
  637. else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.UnApproved).Count() > 0)
  638. {
  639. confirmStatus = GoodsConfirmEnum.UnApproved;
  640. }
  641. else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.PartConfirmed).Count() > 0)
  642. {
  643. confirmStatus = GoodsConfirmEnum.PartConfirmed;
  644. }
  645. }
  646. else //人事部审核确认
  647. {
  648. confirmStatus = GoodsConfirmEnum.Confirmed;
  649. confirmStatus = dto.ConfirmStatus;
  650. preInfos = preInfos.Where(x => x.Dep == GoodsAuditDepEnum.Hr).ToList();
  651. }
  652. //入库状态描述
  653. var statusDesc = new StringBuilder();
  654. foreach (var preInfo in preInfos)
  655. {
  656. string depName = preInfo.Dep.GetEnumDescription(),
  657. auditStatus = preInfo.AuditStatus.GetEnumDescription(),
  658. auditUserName = preInfo.AuditUserId > 0 ? _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == preInfo.AuditUserId)?.CnName ?? "-" : "-",
  659. auditTime = preInfo.AuditUserId > 0 ? preInfo.AuditTime.ToString("yyyy-MM-dd HH:mm:ss") : "-";
  660. statusDesc.Append(string.Format("{0}:状态:{1} 审核人:{2} 审核时间:{3};<br/>", depName, auditStatus, auditUserName, auditTime));
  661. }
  662. //更改入库状态及描述
  663. info.ConfirmStatus = confirmStatus;
  664. info.StatusDesc = statusDesc.ToString();
  665. var goodsStorageUpd = await _sqlSugar.Updateable(info)
  666. .UpdateColumns(x => new
  667. {
  668. x.ConfirmStatus,
  669. x.StatusDesc,
  670. })
  671. .Where(x => x.Id == info.Id)
  672. .ExecuteCommandAsync();
  673. if (goodsStorageUpd < 1)
  674. {
  675. _sqlSugar.RollbackTran();
  676. _jv.Msg = $"入库确认状态更改失败!";
  677. return _jv;
  678. }
  679. //入库审核通过数量、金额
  680. decimal auditQuantity = info.Quantity,
  681. auditTotalPrice = info.TotalPrice;
  682. goodsInfo.LastUpdateUserId = currUserId;
  683. goodsInfo.LastUpdateTime = DateTime.Now;
  684. if (confirmStatus == GoodsConfirmEnum.Confirmed) // 确认状态
  685. {
  686. //更改后的状态和更改前的状态不一致时 更改库存数、金额
  687. if (preChangeStatus != confirmStatus) //
  688. {
  689. goodsInfo.SQ_Total += auditQuantity;
  690. goodsInfo.StockQuantity += auditQuantity;
  691. goodsInfo.PriceTotal += auditTotalPrice;
  692. }
  693. }
  694. else //其他状态 拒绝、部分确认、等待确认
  695. {
  696. //更改前状态为确认状态时,减库存数、金额
  697. if (preChangeStatus == GoodsConfirmEnum.Confirmed)
  698. {
  699. goodsInfo.SQ_Total -= auditQuantity;
  700. goodsInfo.StockQuantity -= auditQuantity;
  701. goodsInfo.PriceTotal -= auditTotalPrice;
  702. }
  703. }
  704. var goodsUpd = await _sqlSugar.Updateable(goodsInfo)
  705. .UpdateColumns(x => new
  706. {
  707. x.SQ_Total,
  708. x.StockQuantity,
  709. x.PriceTotal,
  710. x.LastUpdateUserId,
  711. x.LastUpdateTime,
  712. })
  713. .Where(x => x.Id == info.GoodsId)
  714. .ExecuteCommandAsync();
  715. if (goodsUpd > 0)
  716. {
  717. _sqlSugar.CommitTran();
  718. _jv.Msg = $"操作成功!";
  719. _jv.Code = StatusCodes.Status200OK;
  720. return _jv;
  721. }
  722. _sqlSugar.RollbackTran();
  723. _jv.Msg = $"操作失败!";
  724. return _jv;
  725. }
  726. /// <summary>
  727. /// 获取物品审核部门
  728. /// </summary>
  729. /// <param name="userId"> userId </param>
  730. /// <param name="auditDepEnum"> 审核部门枚举 </param>
  731. /// <param name="auditType">
  732. /// 指定审核类型(入库/出库)
  733. /// 1:入库审核
  734. /// 2:出库审核
  735. /// </param>
  736. /// <returns></returns>
  737. public (bool, GoodsAuditDepEnum) GoodsAuditDep(int userId,GoodsAuditDepEnum auditDepEnum,int auditType = 1)
  738. {
  739. if (userId < 1) return (false, GoodsAuditDepEnum.Hr);
  740. var auditList = GoodsStorageConfirmAuditDep(1);
  741. if (auditType == 1)
  742. {
  743. if (auditList.Any(x => x.AuditDep == auditDepEnum && x.AuditorIds.Contains(userId)))
  744. {
  745. return (true, auditDepEnum);
  746. }
  747. }
  748. return (false, GoodsAuditDepEnum.Hr);
  749. }
  750. /// <summary>
  751. /// 物品审核部门列表
  752. /// </summary>
  753. /// <param name="auditType">
  754. /// 指定审核类型(入库/出库)
  755. /// 1:入库审核
  756. /// 2:出库审核
  757. /// </param>
  758. /// <returns></returns>
  759. public List<GoodsAuditDepView> GoodsStorageConfirmAuditDep(int auditType = 1)
  760. {
  761. var auditList = new List<GoodsAuditDepView>();
  762. var hrAuditorIds = new GoodsAuditDepView()
  763. {
  764. AuditDep = GoodsAuditDepEnum.Hr,
  765. AuditorIds = new int[] {
  766. 343, // 陈湘
  767. 374, // 罗颖
  768. 208, // 雷怡
  769. }
  770. };
  771. var finAuditorIds = new GoodsAuditDepView()
  772. {
  773. AuditDep = GoodsAuditDepEnum.Financial,
  774. AuditorIds = new int[] {
  775. 187, // 曾艳
  776. 281, // 伏虹瑾
  777. 208, // 雷怡
  778. }
  779. };
  780. if (auditType == 1)//入库
  781. {
  782. hrAuditorIds.AuditorIds = new int[] {
  783. //343, // 陈湘
  784. 374, // 罗颖
  785. 208, // 雷怡
  786. };
  787. auditList.Add(hrAuditorIds);
  788. auditList.Add(finAuditorIds);
  789. }
  790. else if (auditType == 2) //出库
  791. {
  792. auditList.Add(hrAuditorIds);
  793. auditList.Add(finAuditorIds);
  794. }
  795. return auditList;
  796. }
  797. /// <summary>
  798. /// 物品入库 Del
  799. /// </summary>
  800. /// <param name="id"></param>
  801. /// <returns></returns>
  802. public async Task<JsonView> GoodsStorageDel(int id, int userId)
  803. {
  804. var storageInfo = await _sqlSugar
  805. .Queryable<Pm_GoodsStorage>()
  806. .Where(x => x.Id == id)
  807. .FirstAsync();
  808. if (storageInfo == null) return _jv;
  809. var auditStatus = storageInfo.ConfirmStatus;
  810. if (auditStatus == GoodsConfirmEnum.Confirmed || auditStatus == GoodsConfirmEnum.PartConfirmed)
  811. {
  812. _sqlSugar.RollbackTran();
  813. _jv.Msg = $"该条入库信息已确认或部分确认审核,不可删除!如若删除请取消已确认或部分确认审核状态!";
  814. return _jv;
  815. }
  816. decimal delAgoQuantity = storageInfo.Quantity,
  817. delAgoTotalPrice = storageInfo.TotalPrice;
  818. var goodsId = storageInfo.GoodsId;
  819. _sqlSugar.BeginTran();
  820. var storageDel = await _sqlSugar.Updateable<Pm_GoodsStorage>()
  821. .SetColumns(x => new Pm_GoodsStorage
  822. {
  823. DeleteUserId = userId,
  824. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  825. IsDel = 1
  826. })
  827. .Where(x => x.Id == id)
  828. .ExecuteCommandAsync();
  829. if (storageDel < 1)
  830. {
  831. _sqlSugar.RollbackTran();
  832. _jv.Msg = $"操作失败!";
  833. return _jv;
  834. }
  835. var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().FirstAsync(x => x.Id == goodsId);
  836. goodsInfo.SQ_Total = goodsInfo.SQ_Total - delAgoQuantity;
  837. goodsInfo.StockQuantity = goodsInfo.StockQuantity - delAgoQuantity;
  838. goodsInfo.PriceTotal = goodsInfo.PriceTotal - delAgoTotalPrice;
  839. goodsInfo.LastUpdateUserId = userId;
  840. goodsInfo.LastUpdateTime = DateTime.Now;
  841. var goodsEdit = await _sqlSugar.Updateable(goodsInfo)
  842. .UpdateColumns(x => new
  843. {
  844. x.SQ_Total,
  845. x.StockQuantity,
  846. x.PriceTotal,
  847. x.LastUpdateUserId,
  848. x.LastUpdateTime,
  849. })
  850. .Where(x => x.Id == goodsId)
  851. .ExecuteCommandAsync();
  852. if (goodsEdit > 0)
  853. {
  854. _sqlSugar.CommitTran();
  855. _jv.Msg = $"操作成功!";
  856. _jv.Code = StatusCodes.Status200OK;
  857. return _jv;
  858. }
  859. _sqlSugar.RollbackTran();
  860. _jv.Msg = $"操作失败!";
  861. return _jv;
  862. }
  863. /// <summary>
  864. /// 物品入库
  865. /// excelDownload
  866. /// </summary>
  867. /// <param name="dto"></param>
  868. /// <returns></returns>
  869. public async Task<JsonView> GoodsStorageExcelDownload()
  870. {
  871. var fileName = $"物资入库{Guid.NewGuid()}.xlsx";
  872. var excelTempPath = $"{_excelPath}Template/物资入库Temp.xlsx";
  873. if (!File.Exists(excelTempPath))
  874. {
  875. _jv.Code = StatusCodes.Status204NoContent;
  876. _jv.Msg = $"该模板文件不存在!";
  877. return _jv;
  878. }
  879. _url = $"{_url}Office/Excel/GoodsFiles/";
  880. _excelPath = $"{_excelPath}GoodsFiles";
  881. if (!Directory.Exists(_excelPath))
  882. {
  883. Directory.CreateDirectory(_excelPath);
  884. }
  885. //入库记录
  886. var storageData = await _sqlSugar.Queryable<Pm_GoodsStorage>()
  887. .LeftJoin<Sys_Users>((gs, su) => gs.StorageUserId == su.Id)
  888. .Where((gs, su) => gs.IsDel == 0)
  889. .Select((gs, su) => new
  890. {
  891. gs.GoodsId,
  892. gs.Quantity,
  893. su.CnName,
  894. gs.StorageTime
  895. })
  896. .ToListAsync();
  897. //出库记录
  898. var receiveData = await _sqlSugar.Queryable<Pm_GoodsReceive>()
  899. .LeftJoin<Sys_Users>((gr, su) => gr.CreateUserId == su.Id)
  900. .Where((gr, su) => gr.IsDel == 0)
  901. .Select((gr, su) => new
  902. {
  903. gr.GoodsId,
  904. gr.Quantity,
  905. su.CnName,
  906. gr.CreateTime,
  907. gr.Reason
  908. })
  909. .ToListAsync();
  910. var data = await _sqlSugar.Queryable<Pm_GoodsInfo>()
  911. .Where(gi => gi.IsDel == 0)
  912. .Select(gi => new GoodsStorageExcelDownloadView
  913. {
  914. Id = gi.Id,
  915. Name = gi.Name,
  916. SQ_Total = gi.SQ_Total,
  917. OQ_Total = gi.OQ_Total,
  918. StockQuantity = gi.StockQuantity,
  919. Unit = gi.Unit
  920. })
  921. .ToListAsync();
  922. foreach (var item in data)
  923. {
  924. var storageData1 = storageData.Where(x => x.GoodsId == item.Id).ToList();
  925. if (storageData1.Any())
  926. {
  927. item.SQ_Total1 = storageData1.Sum(x => x.Quantity);
  928. item.SQ_Total -= item.SQ_Total1;
  929. item.StorageLabel = string.Join("\r\n", storageData1.Select(x => "数量:【" + x.Quantity.ToString("#0.00") + "】 入库人:【" + x.CnName + "】 入库时间:【" + x.StorageTime + "】").ToList());
  930. }
  931. var receiveData1 = receiveData.Where(x => x.GoodsId == item.Id).ToList();
  932. if (receiveData1.Any())
  933. {
  934. 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());
  935. }
  936. }
  937. //载入模板
  938. WorkbookDesigner designer = new WorkbookDesigner();
  939. designer.Workbook = new Workbook(excelTempPath);
  940. designer.SetDataSource("Export", data);
  941. designer.Process();
  942. #region 渲染Cell批注
  943. var sheet = designer.Workbook.Worksheets[0];
  944. for (int i = 0; i < data.Count; i++)
  945. {
  946. string storageComment = $"C{i + 2}",
  947. receiveComment = $"D{i + 2}",
  948. storageCommentText = data[i].StorageLabel,
  949. receiveCommentText = data[i].ReceiveLabel;
  950. if (!string.IsNullOrEmpty(storageCommentText))
  951. {
  952. int storageIndex = sheet.Comments.Add(storageComment);
  953. Aspose.Cells.Comment comment = sheet.Comments[storageIndex];
  954. comment.Note = storageCommentText;
  955. comment.Width = 500;
  956. comment.Height = 200;
  957. //comment.Font.Color = Color.Red;
  958. }
  959. if (!string.IsNullOrEmpty(receiveCommentText))
  960. {
  961. int receiveIndex = sheet.Comments.Add(receiveComment);
  962. Aspose.Cells.Comment comment = sheet.Comments[receiveIndex];
  963. comment.Note = receiveCommentText;
  964. comment.Width = 800;
  965. comment.Height = 200;
  966. //comment.Font.Color = Color.Red;
  967. }
  968. }
  969. #endregion
  970. string serverPath = $"{_url}{fileName}";
  971. designer.Workbook.Save($"{_excelPath}/{fileName}");
  972. _jv.Code = StatusCodes.Status200OK;
  973. _jv.Data = new { url = serverPath };
  974. _jv.Msg = $"操作成功";
  975. return _jv;
  976. }
  977. /// <summary>
  978. /// 物品领用列表
  979. /// </summary>
  980. /// <param name="dto"></param>
  981. /// <returns></returns>
  982. public async Task<JsonView> GoodsReceiveList(GoodsReceiveListDTO dto)
  983. {
  984. //参数处理
  985. int[] typeLabel = Array.Empty<int>(),
  986. userLabel = Array.Empty<int>(),
  987. auditLabel = Array.Empty<int>(),
  988. groupLabel = Array.Empty<int>();
  989. int currUserId = dto.CurrUserId;
  990. if (!string.IsNullOrEmpty(dto.TypeLabel))
  991. {
  992. typeLabel = dto.TypeLabel
  993. .Split(',')
  994. .Select(x =>
  995. {
  996. if (int.TryParse(x, out var id)) return id;
  997. return id;
  998. })
  999. .ToArray();
  1000. }
  1001. if (!string.IsNullOrEmpty(dto.UserLabel))
  1002. {
  1003. userLabel = dto.UserLabel
  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.AuditLabel))
  1013. {
  1014. auditLabel = dto.AuditLabel
  1015. .Split(',')
  1016. .Select(x =>
  1017. {
  1018. if (int.TryParse(x, out var id)) return id;
  1019. return id;
  1020. })
  1021. .ToArray();
  1022. if (auditLabel.Any(x => x == -1))
  1023. {
  1024. auditLabel = auditLabel.Where(x => x != -1).ToArray();
  1025. }
  1026. }
  1027. if (!string.IsNullOrEmpty(dto.GroupLabel))
  1028. {
  1029. groupLabel = dto.GroupLabel
  1030. .Split(',')
  1031. .Select(x =>
  1032. {
  1033. if (int.TryParse(x, out var id)) return id;
  1034. return id;
  1035. })
  1036. .ToArray();
  1037. }
  1038. //物品ID和物品名称只能传一个
  1039. if (dto.GoodsId > 0) dto.GoodsName = string.Empty;
  1040. if (!string.IsNullOrEmpty(dto.GoodsName)) dto.GoodsId = 0;
  1041. var beginBool = DateTime.TryParse(!string.IsNullOrEmpty(dto.BeginDt) ? $"{dto.BeginDt} 00:00:00" : string.Empty, out var begin);
  1042. var endBool = DateTime.TryParse(!string.IsNullOrEmpty(dto.EndDt) ? $"{dto.EndDt} 00:00:00" : string.Empty, out var end);
  1043. RefAsync<int> total = 0;
  1044. var data = _sqlSugar.Queryable<Pm_GoodsReceive>()
  1045. .LeftJoin<Pm_GoodsInfo>((gr, gi) => gr.GoodsId == gi.Id)
  1046. .LeftJoin<Sys_SetData>((gr, gi, sd) => gi.Type == sd.Id)
  1047. .LeftJoin<Sys_Users>((gr, gi, sd, u1) => gr.AuditUserId == u1.Id)
  1048. .LeftJoin<Sys_Users>((gr, gi, sd, u1, u2) => gr.CreateUserId == u2.Id)
  1049. .LeftJoin<Grp_DelegationInfo>((gr, gi, sd, u1, u2, di) => gr.GroupId == di.Id)
  1050. .Where((gr, gi, sd, u1, u2, di) => gr.IsDel == 0)
  1051. .WhereIF(dto.GoodsId > 0, (gr, gi, sd, u1, u2, di) => gr.GoodsId == dto.GoodsId)
  1052. .WhereIF(!string.IsNullOrEmpty(dto.GoodsName), (gr, gi, sd, u1, u2, di) => gi.Name.Contains(dto.GoodsName))
  1053. .WhereIF(auditLabel.Length > 0, (gr, gi, sd, u1, u2, di) => auditLabel.Contains((int)gr.AuditStatus))
  1054. .WhereIF(typeLabel.Length > 0, (gr, gi, sd, u1, u2, di) => typeLabel.Contains(gi.Type))
  1055. .WhereIF(userLabel.Length > 0, (gr, gi, sd, u1, u2, di) => userLabel.Contains(gr.CreateUserId))
  1056. .WhereIF(groupLabel.Length > 0, (gr, gi, sd, u1, u2, di) => groupLabel.Contains(gr.GroupId))
  1057. .WhereIF(beginBool && endBool, (gr, gi, sd, u1, u2, di) => gr.CreateTime >= begin && gr.CreateTime <= end)
  1058. .Select((gr, gi, sd, u1, u2, di) => new GoodsReceiveListMobileView
  1059. {
  1060. Id = gr.Id,
  1061. GroupId = gr.GroupId,
  1062. GroupName = di.TeamName,
  1063. GoodsId = gr.GoodsId,
  1064. GoodsName = gi.Name,
  1065. GoodsType = sd.Name,
  1066. Quantity = gr.Quantity,
  1067. Unit = gi.Unit,
  1068. Reason = gr.Reason,
  1069. Remark = gr.Remark,
  1070. AuditStatus = gr.AuditStatus,
  1071. StatusDesc = gr.StatusDesc,
  1072. AuditUserId = gr.AuditUserId,
  1073. AuditUserName = u1.CnName,
  1074. AuditTime = gr.AuditTime,
  1075. CreateUserName = u2.CnName,
  1076. CreateTime = gr.CreateTime
  1077. })
  1078. .OrderByDescending(gr => gr.CreateTime);
  1079. //excel导出
  1080. if (dto.IsExcelDownload)
  1081. {
  1082. var fileName = $"物资领用{Guid.NewGuid()}.xlsx";
  1083. var excelTempPath = $"{_excelPath}Template/物资领用Temp.xlsx";
  1084. if (!File.Exists(excelTempPath))
  1085. {
  1086. _jv.Code = StatusCodes.Status204NoContent;
  1087. _jv.Msg = $"该模板文件不存在!";
  1088. return _jv;
  1089. }
  1090. _url = $"{_url}Office/Excel/GoodsFiles/";
  1091. _excelPath = $"{_excelPath}GoodsFiles";
  1092. if (!Directory.Exists(_excelPath))
  1093. {
  1094. Directory.CreateDirectory(_excelPath);
  1095. }
  1096. //载入模板
  1097. WorkbookDesigner designer = new WorkbookDesigner();
  1098. designer.Workbook = new Workbook(excelTempPath);
  1099. var tableData = await data.ToListAsync();
  1100. designer.SetDataSource("Export", tableData);
  1101. designer.Process();
  1102. string serverPath = $"{_url}{fileName}";
  1103. designer.Workbook.Save($"{_excelPath}/{fileName}");
  1104. _jv.Code = StatusCodes.Status200OK;
  1105. _jv.Data = new { url = serverPath };
  1106. _jv.Msg = $"操作成功";
  1107. return _jv;
  1108. }
  1109. //返回分页数据
  1110. var view = await data.ToPageListAsync(dto.PageIndex, dto.PageSize, total);
  1111. //财务人事审核权限处理
  1112. var auditList = GoodsStorageConfirmAuditDep(2);
  1113. bool hrAuditPer = false,
  1114. finAuditPer = false;
  1115. var hrAuditInfo = auditList.FirstOrDefault(x => x.AuditDep == GoodsAuditDepEnum.Hr);
  1116. var finAuditInfo = auditList.FirstOrDefault(x => x.AuditDep == GoodsAuditDepEnum.Financial);
  1117. if (hrAuditInfo != null)
  1118. {
  1119. if (hrAuditInfo.AuditorIds.Any(x => x == currUserId))
  1120. {
  1121. hrAuditPer = true;
  1122. }
  1123. }
  1124. if (finAuditInfo != null)
  1125. {
  1126. if (finAuditInfo.AuditorIds.Any(x => x == currUserId))
  1127. {
  1128. finAuditPer = true;
  1129. }
  1130. }
  1131. foreach (var item in view)
  1132. {
  1133. item.AuditPers = new GoodsStorageAuditPerView[] {
  1134. new (){ AuditPer = hrAuditPer, AuditDep = GoodsAuditDepEnum.Hr, ButtonText = GoodsAuditDepEnum.Hr.GetEnumDescription()},
  1135. new (){ AuditPer = finAuditPer, AuditDep = GoodsAuditDepEnum.Financial, ButtonText = GoodsAuditDepEnum.Financial.GetEnumDescription()}
  1136. };
  1137. }
  1138. if (dto.PortType == 2 || dto.PortType == 3)
  1139. {
  1140. _jv.Data = view;
  1141. }
  1142. else if (dto.PortType == 1)
  1143. {
  1144. var view1 = _mapper.Map<List<GoodsReceiveListView>>(view);
  1145. _jv.Data = view1;
  1146. }
  1147. _jv.Code = StatusCodes.Status200OK;
  1148. _jv.Count = total;
  1149. _jv.Msg = $"操作成功";
  1150. return _jv;
  1151. }
  1152. /// <summary>
  1153. /// 物品领用详情
  1154. /// </summary>
  1155. /// <param name="portType"></param>
  1156. /// <param name="id"></param>
  1157. /// <returns></returns>
  1158. public async Task<JsonView> GoodsReceiveInfo(int portType, int id)
  1159. {
  1160. var data = await _sqlSugar.Queryable<Pm_GoodsReceive>()
  1161. .LeftJoin<Pm_GoodsInfo>((gr, gi) => gr.GoodsId == gi.Id)
  1162. .LeftJoin<Sys_Users>((gr, gi, u1) => gr.AuditUserId == u1.Id)
  1163. .LeftJoin<Sys_Users>((gr, gi, u1, u2) => gr.CreateUserId == u2.Id)
  1164. .LeftJoin<Grp_DelegationInfo>((gr, gi, u1, u2,di) => gr.GroupId == di.Id)
  1165. .Where((gr, gi, u1, u2, di) => gr.IsDel == 0)
  1166. .WhereIF(id > 0, (gr, gi, u1, u2, di) => gr.Id == id)
  1167. .Select((gr, gi, u1, u2, di) => new GoodsReceiveInfoMobileView
  1168. {
  1169. Id = gr.Id,
  1170. GroupId = gr.GroupId,
  1171. GroupName = di.TeamName,
  1172. GoodsId = gr.GoodsId,
  1173. GoodsName = gi.Name,
  1174. Quantity = gr.Quantity,
  1175. Reason = gr.Reason,
  1176. Remark = gr.Remark,
  1177. GoodsStorageInfo = gr.GoodsStorageInfo,
  1178. AuditStatus = gr.AuditStatus,
  1179. AuditUserId = gr.AuditUserId,
  1180. AuditUserName = u1.CnName,
  1181. AuditTime = gr.AuditTime,
  1182. CreateUserName = u2.CnName,
  1183. CreateTime = gr.CreateTime
  1184. })
  1185. .FirstAsync();
  1186. if (!string.IsNullOrEmpty(data.GoodsStorageInfo))
  1187. {
  1188. var subData = new List<dynamic>();
  1189. try
  1190. {
  1191. var subData1 = JsonConvert.DeserializeObject<List<GoodsReceiveLinkStorageView>>(data.GoodsStorageInfo);
  1192. if (subData1.Count > 0)
  1193. {
  1194. string goodsStorageInfoStr = string.Empty;
  1195. var storageIds = subData1.Select(x => x.StorageId).ToList();
  1196. var storages = await _sqlSugar.Queryable<Pm_GoodsStorage>().Where(x => x.IsDel == 0 && storageIds.Contains(x.Id)).ToListAsync();
  1197. foreach (var item in subData1)
  1198. {
  1199. var storageInfo = storages.Find(x => x.Id == item.StorageId);
  1200. if (storageInfo != null)
  1201. {
  1202. subData.Add(new
  1203. {
  1204. StorageId = item.StorageId,
  1205. BatchNo = storageInfo.BatchNo,
  1206. RecsiveQuantity = item.Quantity
  1207. });
  1208. goodsStorageInfoStr += $"物品名称:{data.GoodsName} 批次号:{storageInfo.BatchNo} 领用数量:{item.Quantity} \r\n";
  1209. }
  1210. }
  1211. data.QuantityInfos = subData;
  1212. data.GoodsStorageInfoStr = goodsStorageInfoStr;
  1213. }
  1214. }
  1215. catch (Exception e)
  1216. {
  1217. Console.WriteLine(e);
  1218. }
  1219. }
  1220. _jv.Code = StatusCodes.Status200OK;
  1221. _jv.Msg = $"操作成功";
  1222. if (portType == 2 || portType == 3) //移动端
  1223. {
  1224. _jv.Data = data;
  1225. }
  1226. else if (portType == 1) //pc端
  1227. {
  1228. _jv.Data = _mapper.Map<GoodsReceiveInfoView>(data);
  1229. }
  1230. return _jv;
  1231. }
  1232. /// <summary>
  1233. /// 物品领用 OP(Add Or Edit)
  1234. /// </summary>
  1235. /// <param name="dto"></param>
  1236. /// <param name="currUserId"></param>
  1237. /// <returns></returns>
  1238. public async Task<JsonView> GoodsReceiveOp(GoodsReceiveOpDto dto, int currUserId)
  1239. {
  1240. var info = _mapper.Map<Pm_GoodsReceive>(dto);
  1241. info.CreateUserId = currUserId;
  1242. var auditEnums = new List<GoodsAuditEnum>() {
  1243. GoodsAuditEnum.Approved, // 1
  1244. GoodsAuditEnum.UnApproved, // 2
  1245. GoodsAuditEnum.OutConfirmed,// 5
  1246. GoodsAuditEnum.OutRejected // 6
  1247. };
  1248. _sqlSugar.BeginTran();
  1249. //物品现有库存
  1250. var stockQuantity = _sqlSugar.Queryable<Pm_GoodsInfo>().First(x => x.Id == info.GoodsId)?.StockQuantity;
  1251. //待审核 该物品数量
  1252. var waitAuditQuantity = await _sqlSugar.Queryable<Pm_GoodsReceive>().Where(x => x.IsDel == 0 &&
  1253. x.GoodsId == dto.GoodsId &&
  1254. !auditEnums.Contains(x.AuditStatus)
  1255. ).SumAsync(x => x.Quantity);
  1256. if (info.Id > 0) //修改
  1257. {
  1258. //审核验证
  1259. var selectInfo = await _sqlSugar.Queryable<Pm_GoodsReceive>().FirstAsync(x => x.Id == info.Id);
  1260. if (auditEnums.Contains(selectInfo.AuditStatus))
  1261. {
  1262. _sqlSugar.RollbackTran();
  1263. _jv.Msg = $"该条数据已执行操作({selectInfo.AuditStatus.GetEnumDescription()}),不可更改!";
  1264. return _jv;
  1265. }
  1266. //物品数量验证
  1267. var editAfterQuantity = waitAuditQuantity - selectInfo.Quantity + info.Quantity;
  1268. if (editAfterQuantity > stockQuantity)
  1269. {
  1270. _sqlSugar.RollbackTran();
  1271. _jv.Msg = $"该物品现有库存不足,不可更改!请联系采购人员购买!";
  1272. return _jv;
  1273. }
  1274. var edit = await _sqlSugar.Updateable(info)
  1275. .UpdateColumns(x => new
  1276. {
  1277. x.GroupId,
  1278. x.Quantity,
  1279. x.Reason,
  1280. x.Remark,
  1281. })
  1282. .Where(x => x.Id == info.Id)
  1283. .ExecuteCommandAsync();
  1284. if (edit > 0)
  1285. {
  1286. _sqlSugar.CommitTran();
  1287. _jv.Msg = $"操作成功!";
  1288. _jv.Code = StatusCodes.Status200OK;
  1289. return _jv;
  1290. }
  1291. }
  1292. else if (info.Id < 1) //添加
  1293. {
  1294. //物品数量验证
  1295. decimal addAgoQuantity = waitAuditQuantity + info.Quantity;
  1296. if (addAgoQuantity > stockQuantity)
  1297. {
  1298. _sqlSugar.RollbackTran();
  1299. _jv.Msg = $"该物品现有库存不足,不可更改!请联系采购人员购买!";
  1300. return _jv;
  1301. }
  1302. var add = await _sqlSugar.Insertable(info).ExecuteReturnIdentityAsync();
  1303. if (add < 1)
  1304. {
  1305. _sqlSugar.RollbackTran();
  1306. _jv.Msg = $"添加失败!";
  1307. _jv.Code = StatusCodes.Status400BadRequest;
  1308. return _jv;
  1309. }
  1310. //出库确认默认审核状态
  1311. var goodsAuditList = new List<Pm_GoodsAudit>() {
  1312. new Pm_GoodsAudit(2, GoodsAuditDepEnum.Hr, add, GoodsConfirmEnum.WaitConfirm, currUserId),
  1313. new Pm_GoodsAudit(2, GoodsAuditDepEnum.Financial, add, GoodsConfirmEnum.WaitConfirm, currUserId)
  1314. };
  1315. if (goodsAuditList.Any())
  1316. {
  1317. await _sqlSugar.Insertable(goodsAuditList).ExecuteCommandAsync();
  1318. }
  1319. _sqlSugar.CommitTran();
  1320. _jv.Msg = $"操作成功!";
  1321. _jv.Code = StatusCodes.Status200OK;
  1322. return _jv;
  1323. }
  1324. _sqlSugar.RollbackTran();
  1325. return _jv;
  1326. }
  1327. /// <summary>
  1328. /// 物品领用 Audit
  1329. /// </summary>
  1330. /// <param name="idArray"></param>
  1331. /// <param name="userId"></param>
  1332. /// <param name="auditEnum"></param>
  1333. /// <returns></returns>
  1334. public async Task<JsonView> GoodsReceiveAudit(int[] idArray, int userId, GoodsAuditEnum auditEnum)
  1335. {
  1336. if (idArray.Length < 1) return _jv;
  1337. var auditEnums = new List<GoodsAuditEnum>() {
  1338. GoodsAuditEnum.Pending,
  1339. GoodsAuditEnum.Approved,
  1340. GoodsAuditEnum.UnApproved,
  1341. GoodsAuditEnum.OutPending,
  1342. GoodsAuditEnum.OutConfirmed,
  1343. GoodsAuditEnum.OutRejected,
  1344. };
  1345. if (!auditEnums.Contains(auditEnum))
  1346. {
  1347. _jv.Msg = $"出库确认状态超出可用范围!";
  1348. return _jv;
  1349. }
  1350. int receiveId = idArray[0];
  1351. //验证审核部门 审核状态 大于等于 OutPending 时 验证
  1352. var auditDep = GoodsAuditDepEnum.Hr;
  1353. if (auditEnum >= GoodsAuditEnum.OutPending)
  1354. {
  1355. var auditList = GoodsStorageConfirmAuditDep(2);
  1356. var auditDepInfo = auditList.Find(x => x.AuditorIds.Contains(userId));
  1357. if (auditDepInfo == null)
  1358. {
  1359. _jv.Msg = string.Format("未分配出库确认权限!");
  1360. return _jv;
  1361. }
  1362. auditDep = auditDepInfo.AuditDep;
  1363. }
  1364. var currUserName = _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == userId)?.CnName ?? "-";
  1365. _sqlSugar.BeginTran();
  1366. var receiveInfo = await _sqlSugar
  1367. .Queryable<Pm_GoodsReceive>()
  1368. //.Where(x => x.IsDel == 0 && idArray.Contains(x.Id))
  1369. .Where(x => x.IsDel == 0 && receiveId == x.Id )
  1370. .FirstAsync();
  1371. if (receiveInfo == null)
  1372. {
  1373. _sqlSugar.RollbackTran();
  1374. _jv.Msg = $"当前领用信息不存在!";
  1375. return _jv;
  1376. }
  1377. //审核前状态
  1378. var preChangeStatus = receiveInfo.AuditStatus;
  1379. //状态验证
  1380. //if (preChangeStatus == auditEnum)
  1381. //{
  1382. // _sqlSugar.RollbackTran();
  1383. // _jv.Msg = $"该条数据状态已设置,不可重复设置!";
  1384. // return _jv;
  1385. //}
  1386. switch (auditEnum)
  1387. {
  1388. case GoodsAuditEnum.Pending: //领用待确认(取消确认、取消拒绝)
  1389. _jv = await GoodsReceivePending(preChangeStatus, receiveId, userId, currUserName, auditEnum);
  1390. break;
  1391. case GoodsAuditEnum.Approved: //领用确认
  1392. _jv = await GoodsReceiveApproved(preChangeStatus, receiveId, userId, currUserName, auditEnum);
  1393. break;
  1394. case GoodsAuditEnum.UnApproved: //领用拒绝
  1395. _jv = await GoodsReceiveUnApproved(preChangeStatus, receiveId, userId, currUserName, auditEnum);
  1396. break;
  1397. case GoodsAuditEnum.OutPending: //出库待确认(取消出库确认、取消出库拒绝)
  1398. _jv = await GoodsReceiveOutPending(preChangeStatus, receiveInfo, userId, auditDep, auditEnum);
  1399. break;
  1400. case GoodsAuditEnum.OutConfirmed: //出库确认
  1401. _jv = await GoodsReceiveOutConfirming(receiveInfo, userId, auditDep, auditEnum);
  1402. break;
  1403. case GoodsAuditEnum.OutRejected: //出库拒绝
  1404. _jv = await GoodsReceiveOutConfirming(receiveInfo, userId, auditDep, auditEnum);
  1405. break;
  1406. }
  1407. if (_jv.Code == StatusCodes.Status200OK)
  1408. {
  1409. _sqlSugar.CommitTran();
  1410. _jv.Msg = $"操作成功!";
  1411. _jv.Data = auditEnum;
  1412. return _jv;
  1413. }
  1414. _sqlSugar.RollbackTran();
  1415. return _jv;
  1416. }
  1417. /// <summary>
  1418. /// 物品领用状态 - 领用待确认(取消确认、取消拒绝)
  1419. /// </summary>
  1420. /// <param name="preChangeStatus">更改前状态</param>
  1421. /// <param name="receiveId"></param>
  1422. /// <param name="userId"></param>
  1423. /// <param name="userName"></param>
  1424. /// <param name="auditEnum"></param>
  1425. /// <returns></returns>
  1426. public async Task<JsonView> GoodsReceivePending(GoodsAuditEnum preChangeStatus,int receiveId, int userId, string userName, GoodsAuditEnum auditEnum)
  1427. {
  1428. _jv.Code = StatusCodes.Status400BadRequest;
  1429. //领用待确认 操作范围
  1430. var audirEnumPers = new List<GoodsAuditEnum>() {
  1431. GoodsAuditEnum.Approved,
  1432. GoodsAuditEnum.UnApproved
  1433. };
  1434. if (!audirEnumPers.Contains(preChangeStatus))
  1435. {
  1436. _jv.Msg = $"{GoodsAuditEnum.Approved.GetEnumDescription()}、{GoodsAuditEnum.UnApproved.GetEnumDescription()},状态下可取消操作!";
  1437. return _jv;
  1438. }
  1439. var currUserOpDt = DateTime.Now;
  1440. var currUserOpTime = currUserOpDt.ToString("yyyy-MM-dd HH:mm:ss");
  1441. var statusDesc = string.Format(@"领用确认:状态:{0} 审核人:{1} 审核时间:{2};<br/>人事部确认:状态:待确认 审核人:- 审核时间:-;<br/>财务部确认:状态:待确认 审核人:- 审核时间:-;", auditEnum.GetEnumDescription(), userName, currUserOpTime);
  1442. auditEnum = GoodsAuditEnum.Pending;
  1443. var changeStatus = await _sqlSugar
  1444. .Updateable<Pm_GoodsReceive>()
  1445. .SetColumns(x => new Pm_GoodsReceive()
  1446. {
  1447. AuditStatus = auditEnum,
  1448. AuditUserId = userId,
  1449. AuditTime = currUserOpDt,
  1450. StatusDesc = statusDesc
  1451. })
  1452. .Where(x => x.Id == receiveId)
  1453. .ExecuteCommandAsync();
  1454. if (changeStatus > 0)
  1455. {
  1456. _jv.Code = StatusCodes.Status200OK;
  1457. }
  1458. return _jv;
  1459. }
  1460. /// <summary>
  1461. /// 物品领用状态 - 领用确认
  1462. /// </summary>
  1463. /// <param name="preChangeStatus">更改前状态</param>
  1464. /// <param name="receiveId"></param>
  1465. /// <param name="userId"></param>
  1466. /// <param name="userName"></param>
  1467. /// <param name="auditEnum"></param>
  1468. /// <returns></returns>
  1469. public async Task<JsonView> GoodsReceiveApproved(GoodsAuditEnum preChangeStatus, int receiveId, int userId,string userName, GoodsAuditEnum auditEnum)
  1470. {
  1471. _jv.Code = StatusCodes.Status400BadRequest;
  1472. if (preChangeStatus != GoodsAuditEnum.Pending)
  1473. {
  1474. _jv.Msg = $"{GoodsAuditEnum.Pending.GetEnumDescription()},状态下可取消操作!";
  1475. return _jv;
  1476. }
  1477. var currUserOpDt = DateTime.Now;
  1478. var currUserOpTime = currUserOpDt.ToString("yyyy-MM-dd HH:mm:ss");
  1479. var statusDesc = string.Format(@"领用确认:状态:{0} 审核人:{1} 审核时间:{2};<br/>人事部确认:状态:待确认 审核人:- 审核时间:-;<br/>财务部确认:状态:待确认 审核人:- 审核时间:-;", auditEnum.GetEnumDescription(), userName, currUserOpTime);
  1480. auditEnum = GoodsAuditEnum.OutPending;
  1481. var changeStatus = await _sqlSugar
  1482. .Updateable<Pm_GoodsReceive>()
  1483. .SetColumns(x => new Pm_GoodsReceive()
  1484. {
  1485. AuditStatus = auditEnum,
  1486. AuditUserId = userId,
  1487. AuditTime = currUserOpDt,
  1488. StatusDesc = statusDesc
  1489. })
  1490. .Where(x => x.Id == receiveId)
  1491. .ExecuteCommandAsync();
  1492. if (changeStatus > 0)
  1493. {
  1494. _jv.Code = StatusCodes.Status200OK;
  1495. }
  1496. return _jv;
  1497. }
  1498. /// <summary>
  1499. /// 物品领用状态 - 领用拒绝
  1500. /// </summary>
  1501. /// <param name="preChangeStatus">更改前状态</param>
  1502. /// <param name="receiveId"></param>
  1503. /// <param name="userId"></param>
  1504. /// <param name="userName"></param>
  1505. /// <param name="auditEnum"></param>
  1506. /// <returns></returns>
  1507. public async Task<JsonView> GoodsReceiveUnApproved(GoodsAuditEnum preChangeStatus, int receiveId, int userId, string userName, GoodsAuditEnum auditEnum)
  1508. {
  1509. _jv.Code = StatusCodes.Status400BadRequest;
  1510. if (preChangeStatus != GoodsAuditEnum.Pending)
  1511. {
  1512. _jv.Msg = $"{GoodsAuditEnum.Pending.GetEnumDescription()},状态下可取消操作!";
  1513. return _jv;
  1514. }
  1515. auditEnum = GoodsAuditEnum.UnApproved;
  1516. var currUserOpDt = DateTime.Now;
  1517. var currUserOpTime = currUserOpDt.ToString("yyyy-MM-dd HH:mm:ss");
  1518. var statusDesc = string.Format(@"领用确认:状态:{0} 审核人:{1} 审核时间:{2};<br/>人事部确认:状态:待确认 审核人:- 审核时间:-;<br/>财务部认:状态:待确认 审核人:- 审核时间:-;<br/>", auditEnum.GetEnumDescription(), userName, currUserOpTime);
  1519. var changeStatus = await _sqlSugar
  1520. .Updateable<Pm_GoodsReceive>()
  1521. .SetColumns(x => new Pm_GoodsReceive()
  1522. {
  1523. AuditStatus = auditEnum,
  1524. AuditUserId = userId,
  1525. AuditTime = currUserOpDt,
  1526. StatusDesc = statusDesc
  1527. })
  1528. .Where(x => x.Id == receiveId)
  1529. .ExecuteCommandAsync();
  1530. if (changeStatus > 0)
  1531. {
  1532. _jv.Code = StatusCodes.Status200OK;
  1533. }
  1534. return _jv;
  1535. }
  1536. /// <summary>
  1537. /// 物品领用状态 - 出库待确认(出库确认、出库拒绝)
  1538. /// </summary>
  1539. /// <param name="preChangeStatus">更改前状态</param>
  1540. /// <param name="receiveId"></param>
  1541. /// <param name="userId"></param>
  1542. /// <param name="userName"></param>
  1543. /// <param name="auditEnum"></param>
  1544. /// <returns></returns>
  1545. public async Task<JsonView> GoodsReceiveOutPending(GoodsAuditEnum preChangeStatus, Pm_GoodsReceive receiveInfo, int userId, GoodsAuditDepEnum depEnum, GoodsAuditEnum auditEnum)
  1546. {
  1547. _jv.Code = StatusCodes.Status400BadRequest;
  1548. //出库待确认 操作范围
  1549. var audirEnumPers = new List<GoodsAuditEnum>() {
  1550. GoodsAuditEnum.OutConfirmed,
  1551. GoodsAuditEnum.OutRejected
  1552. };
  1553. if (!audirEnumPers.Contains(preChangeStatus))
  1554. {
  1555. _jv.Msg = $"{GoodsAuditEnum.OutConfirmed.GetEnumDescription()}、{GoodsAuditEnum.OutRejected.GetEnumDescription()},状态下可取消操作!";
  1556. return _jv;
  1557. }
  1558. var currUserOpDt = DateTime.Now;
  1559. var currUserOpTime = currUserOpDt.ToString("yyyy-MM-dd HH:mm:ss");
  1560. var auditInfos = await _sqlSugar.Queryable<Pm_GoodsAudit>()
  1561. .Where(x => x.IsDel == 0 && x.DataId == receiveInfo.Id && x.Type == 2)
  1562. .ToListAsync();
  1563. auditEnum = GoodsAuditEnum.OutPending;
  1564. var auditStatus = GoodsConfirmEnum.WaitConfirm;
  1565. var auditInfo = auditInfos.Find(x => x.Dep == depEnum);
  1566. if (auditInfo == null)
  1567. {
  1568. auditInfo = new Pm_GoodsAudit(2, depEnum, receiveInfo.Id, auditStatus, userId);
  1569. var addStatus = await _sqlSugar.Insertable(auditInfo).ExecuteCommandAsync();
  1570. if (addStatus < 1)
  1571. {
  1572. _jv.Msg = $"出库确认取消操作失败!";
  1573. return _jv;
  1574. }
  1575. auditInfos.Add(auditInfo);
  1576. }
  1577. else
  1578. {
  1579. //移除旧数据
  1580. auditInfos.Remove(auditInfo);
  1581. auditInfo.AuditStatus = auditStatus;
  1582. auditInfo.AuditUserId = userId;
  1583. auditInfo.AuditTime = currUserOpDt;
  1584. var updStatus = await _sqlSugar.Updateable<Pm_GoodsAudit>()
  1585. .SetColumns(x => new Pm_GoodsAudit()
  1586. {
  1587. AuditStatus = auditStatus,
  1588. AuditUserId = userId,
  1589. AuditTime = currUserOpDt
  1590. })
  1591. .Where(x => x.Id == auditInfo.Id)
  1592. .ExecuteCommandAsync();
  1593. if (updStatus < 1)
  1594. {
  1595. _jv.Msg = $"出库确认操作失败!";
  1596. return _jv;
  1597. }
  1598. //添加更新后的数据
  1599. auditInfos.Add(auditInfo);
  1600. }
  1601. //处理状态描述
  1602. StringBuilder statusDesc = new StringBuilder();
  1603. var receiveUserName = _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == receiveInfo.AuditUserId)?.CnName ?? "-";
  1604. string receiveStatusDesc = string.Format("{0}:状态:{1} 审核人:{2} 审核时间:{3};<br/>",
  1605. "领用确认", GoodsAuditEnum.Approved.GetEnumDescription(), receiveUserName, receiveInfo.AuditTime.ToString("yyyy-MM-dd HH:mm:ss"));
  1606. statusDesc.Append(receiveStatusDesc);
  1607. foreach (var auditInf in auditInfos)
  1608. {
  1609. string userName = _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == auditInf.AuditUserId)?.CnName ?? "-";
  1610. string userOpTime = !userName.Equals("-") ? auditInf.AuditTime.ToString("yyyy-MM-dd HH:mm:ss") : "-";
  1611. string auditInfStatusDesc = string.Format("{0}:状态:{1} 审核人:{2} 审核时间:{3};<br/>",
  1612. auditInf.Dep.GetEnumDescription(), auditInf.AuditStatus.GetEnumDescription(), userName, currUserOpTime);
  1613. statusDesc.Append(auditInfStatusDesc);
  1614. }
  1615. //批次库存信息
  1616. string goodsStorageInfo = receiveInfo.GoodsStorageInfo;
  1617. //出库确认取消是单独处理
  1618. if (preChangeStatus == GoodsAuditEnum.OutConfirming)
  1619. {
  1620. if (auditInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() == 1)
  1621. {
  1622. auditEnum = GoodsAuditEnum.OutConfirming;
  1623. }
  1624. //2.1 更改库存
  1625. var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().Where(x => x.Id == receiveInfo.GoodsId).FirstAsync();
  1626. goodsInfo.StockQuantity -= receiveInfo.Quantity;
  1627. goodsInfo.OQ_Total += receiveInfo.Quantity;
  1628. goodsInfo.LastUpdateTime = DateTime.Now;
  1629. goodsInfo.LastUpdateUserId = userId;
  1630. var editGoods = await _sqlSugar
  1631. .Updateable(goodsInfo)
  1632. .UpdateColumns(x => new
  1633. {
  1634. x.StockQuantity,
  1635. x.OQ_Total,
  1636. x.LastUpdateUserId,
  1637. x.LastUpdateTime,
  1638. })
  1639. .Where(x => x.Id == receiveInfo.GoodsId)
  1640. .ExecuteCommandAsync();
  1641. if (editGoods < 1)
  1642. {
  1643. _jv.Msg = $"库存更新失败!";
  1644. return _jv;
  1645. }
  1646. //2.2 入库批次关联领用人 更改批次库存
  1647. var goodsStorages = await _sqlSugar
  1648. .Queryable<Pm_GoodsStorage>()
  1649. .Where(x => x.IsDel == 0 &&
  1650. x.GoodsId == receiveInfo.GoodsId &&
  1651. (x.Quantity - x.ReceiveQuantity) > 0
  1652. )
  1653. .OrderBy(x => x.CreateTime)
  1654. .ToListAsync();
  1655. var goodsReceiveInfos = new List<GoodsReceiveLinkStorageView>();
  1656. var batchStorageInfos = new List<Pm_GoodsStorage>();
  1657. var receiveQuantity = 0.00M; //领用总数量
  1658. foreach (var storage in goodsStorages)
  1659. {
  1660. if (receiveInfo.Quantity == receiveQuantity) break;
  1661. var thisBatchSurplusQuantity = storage.Quantity - storage.ReceiveQuantity;
  1662. if (thisBatchSurplusQuantity <= 0.00M) continue;
  1663. var thisBatchReceiveQuantity = 0.00M; //此批次领用数量
  1664. const decimal unit = 0.50M;
  1665. while (receiveQuantity < receiveInfo.Quantity)
  1666. {
  1667. if (thisBatchSurplusQuantity == thisBatchReceiveQuantity) break;
  1668. thisBatchReceiveQuantity += unit;
  1669. receiveQuantity += unit;
  1670. }
  1671. goodsReceiveInfos.Add(new GoodsReceiveLinkStorageView
  1672. {
  1673. StorageId = storage.Id,
  1674. Quantity = thisBatchReceiveQuantity
  1675. });
  1676. storage.ReceiveQuantity += thisBatchReceiveQuantity;
  1677. var storageUpd = storage;
  1678. //storageUpd.ReceiveQuantity += thisBatchReceiveQuantity;
  1679. batchStorageInfos.Add(storageUpd);
  1680. }
  1681. //2.2.1 更改批次库存
  1682. if (goodsReceiveInfos.Count > 0)
  1683. {
  1684. var edit1 = await _sqlSugar.Updateable(batchStorageInfos)
  1685. .UpdateColumns(x => x.ReceiveQuantity)
  1686. .WhereColumns(x => x.Id)
  1687. .ExecuteCommandAsync();
  1688. if (edit1 < 1)
  1689. {
  1690. _jv.Msg = $"批次库存更新失败!";
  1691. return _jv;
  1692. }
  1693. }
  1694. //2.2.2 添加入库批次关联领用人
  1695. if (goodsReceiveInfos.Count > 0)
  1696. {
  1697. goodsStorageInfo = JsonConvert.SerializeObject(goodsReceiveInfos);
  1698. }
  1699. }
  1700. var statusDesc1 = statusDesc.ToString();
  1701. var changeStatus = await _sqlSugar
  1702. .Updateable<Pm_GoodsReceive>()
  1703. .SetColumns(x => new Pm_GoodsReceive()
  1704. {
  1705. AuditStatus = auditEnum,
  1706. StatusDesc = statusDesc1,
  1707. GoodsStorageInfo= goodsStorageInfo
  1708. })
  1709. .Where(x => x.Id == receiveInfo.Id)
  1710. .ExecuteCommandAsync();
  1711. if (changeStatus > 0)
  1712. {
  1713. _jv.Code = StatusCodes.Status200OK;
  1714. }
  1715. return _jv;
  1716. }
  1717. /// <summary>
  1718. /// 物品领用状态 - 出库确认中、出库确认完成、出库确认拒绝
  1719. /// </summary>
  1720. /// <param name="receiveInfo"></param>
  1721. /// <param name="userId"></param>
  1722. /// <param name="depEnum"></param>
  1723. /// <param name="auditEnum"></param>
  1724. /// <returns></returns>
  1725. public async Task<JsonView> GoodsReceiveOutConfirming(Pm_GoodsReceive receiveInfo, int userId, GoodsAuditDepEnum depEnum,GoodsAuditEnum auditEnum)
  1726. {
  1727. _jv.Code = StatusCodes.Status400BadRequest;
  1728. //更改前状态
  1729. var preChangeStatus = receiveInfo.AuditStatus;
  1730. if (preChangeStatus < GoodsAuditEnum.OutPending)
  1731. {
  1732. _jv.Msg = $"领用确认执行成功!才可执行出库确认或出库拒绝操作!";
  1733. return _jv;
  1734. }
  1735. var currUserOpDt = DateTime.Now;
  1736. var currUserOpTime = currUserOpDt.ToString("yyyy-MM-dd HH:mm:ss");
  1737. var auditInfos = await _sqlSugar.Queryable<Pm_GoodsAudit>()
  1738. .Where(x => x.IsDel == 0 && x.DataId == receiveInfo.Id && x.Type == 2)
  1739. .ToListAsync();
  1740. var auditStatus = GoodsConfirmEnum.WaitConfirm;
  1741. if (auditEnum == GoodsAuditEnum.OutRejected) auditStatus = GoodsConfirmEnum.UnApproved;
  1742. else if (auditEnum == GoodsAuditEnum.OutConfirmed) auditStatus = GoodsConfirmEnum.Confirmed;
  1743. var auditInfo = auditInfos.Find(x => x.Dep == depEnum);
  1744. if (auditInfo == null)
  1745. {
  1746. auditInfo = new Pm_GoodsAudit(2, depEnum, receiveInfo.Id, auditStatus, userId);
  1747. var addStatus = await _sqlSugar.Insertable(auditInfo).ExecuteCommandAsync();
  1748. if (addStatus < 1)
  1749. {
  1750. _jv.Msg = $"出库确认操作失败!";
  1751. return _jv;
  1752. }
  1753. auditInfos.Add(auditInfo);
  1754. }
  1755. else
  1756. {
  1757. //移除旧数据
  1758. auditInfos.Remove(auditInfo);
  1759. auditInfo.AuditStatus = auditStatus;
  1760. auditInfo.AuditUserId = userId;
  1761. auditInfo.AuditTime = currUserOpDt;
  1762. var updStatus = await _sqlSugar.Updateable<Pm_GoodsAudit>()
  1763. .SetColumns(x => new Pm_GoodsAudit()
  1764. {
  1765. AuditStatus = auditStatus,
  1766. AuditUserId = userId,
  1767. AuditTime = currUserOpDt
  1768. })
  1769. .Where(x => x.Id == auditInfo.Id)
  1770. .ExecuteCommandAsync();
  1771. if (updStatus < 1)
  1772. {
  1773. _jv.Msg = $"出库确认操作失败!";
  1774. return _jv;
  1775. }
  1776. //添加更新后的数据
  1777. auditInfos.Add(auditInfo);
  1778. }
  1779. //处理状态描述
  1780. StringBuilder statusDesc= new StringBuilder();
  1781. var receiveUserName = _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == receiveInfo.AuditUserId)?.CnName ?? "-";
  1782. string receiveStatusDesc = string.Format("{0}:状态:{1} 审核人:{2} 审核时间:{3};<br/>",
  1783. "领用确认", GoodsAuditEnum.Approved.GetEnumDescription(), receiveUserName, receiveInfo.AuditTime.ToString("yyyy-MM-dd HH:mm:ss"));
  1784. statusDesc.Append(receiveStatusDesc);
  1785. foreach (var auditInf in auditInfos)
  1786. {
  1787. string userName = _sqlSugar.Queryable<Sys_Users>().First(x => x.Id == auditInf.AuditUserId)?.CnName ?? "-";
  1788. string userOpTime = !userName.Equals("-") ? auditInf.AuditTime.ToString("yyyy-MM-dd HH:mm:ss") : "-";
  1789. string auditInfStatusDesc = string.Format("{0}:状态:{1} 审核人:{2} 审核时间:{3};<br/>",
  1790. auditInf.Dep.GetEnumDescription(), auditInf.AuditStatus.GetEnumDescription(), userName, currUserOpTime);
  1791. statusDesc.Append(auditInfStatusDesc);
  1792. }
  1793. if (preChangeStatus == auditEnum)
  1794. {
  1795. _jv.Msg = $"此操作已执行,不可重复操作!";
  1796. return _jv;
  1797. }
  1798. //批次库存信息
  1799. string goodsStorageInfo = receiveInfo.GoodsStorageInfo;
  1800. //更改领用状态及库存
  1801. if (auditInfos.Any(x => x.AuditStatus == GoodsConfirmEnum.UnApproved))
  1802. {
  1803. //出库确认拒绝
  1804. auditEnum = GoodsAuditEnum.OutRejected;
  1805. }
  1806. else if (auditInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() == 2)
  1807. {
  1808. //1.出库确认完成
  1809. auditEnum = GoodsAuditEnum.OutConfirmed;
  1810. //2.更改前的状态为出库确认中 且 更改后的状态为出库确认完成 执行库存减操作
  1811. if (preChangeStatus == GoodsAuditEnum.OutConfirming || preChangeStatus == GoodsAuditEnum.OutRejected)
  1812. {
  1813. //2.1 更改库存
  1814. var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().Where(x => x.Id == receiveInfo.GoodsId).FirstAsync();
  1815. goodsInfo.StockQuantity -= receiveInfo.Quantity;
  1816. goodsInfo.OQ_Total += receiveInfo.Quantity;
  1817. goodsInfo.LastUpdateTime = DateTime.Now;
  1818. goodsInfo.LastUpdateUserId = userId;
  1819. var editGoods = await _sqlSugar
  1820. .Updateable(goodsInfo)
  1821. .UpdateColumns(x => new
  1822. {
  1823. x.StockQuantity,
  1824. x.OQ_Total,
  1825. x.LastUpdateUserId,
  1826. x.LastUpdateTime,
  1827. })
  1828. .Where(x => x.Id == receiveInfo.GoodsId)
  1829. .ExecuteCommandAsync();
  1830. if (editGoods < 1)
  1831. {
  1832. _jv.Msg = $"库存更新失败!";
  1833. return _jv;
  1834. }
  1835. //2.2 入库批次关联领用人 更改批次库存
  1836. var goodsStorages = await _sqlSugar
  1837. .Queryable<Pm_GoodsStorage>()
  1838. .Where(x => x.IsDel == 0 &&
  1839. x.GoodsId == receiveInfo.GoodsId &&
  1840. (x.Quantity - x.ReceiveQuantity) > 0
  1841. )
  1842. .OrderBy(x => x.CreateTime)
  1843. .ToListAsync();
  1844. var goodsReceiveInfos = new List<GoodsReceiveLinkStorageView>();
  1845. var batchStorageInfos = new List<Pm_GoodsStorage>();
  1846. var receiveQuantity = 0.00M; //领用总数量
  1847. foreach (var storage in goodsStorages)
  1848. {
  1849. if (receiveInfo.Quantity == receiveQuantity) break;
  1850. var thisBatchSurplusQuantity = storage.Quantity - storage.ReceiveQuantity;
  1851. if (thisBatchSurplusQuantity <= 0.00M) continue;
  1852. var thisBatchReceiveQuantity = 0.00M; //此批次领用数量
  1853. const decimal unit = 0.50M;
  1854. while (receiveQuantity < receiveInfo.Quantity)
  1855. {
  1856. if (thisBatchSurplusQuantity == thisBatchReceiveQuantity) break;
  1857. thisBatchReceiveQuantity += unit;
  1858. receiveQuantity += unit;
  1859. }
  1860. goodsReceiveInfos.Add(new GoodsReceiveLinkStorageView
  1861. {
  1862. StorageId = storage.Id,
  1863. Quantity = thisBatchReceiveQuantity
  1864. });
  1865. storage.ReceiveQuantity += thisBatchReceiveQuantity;
  1866. var storageUpd = storage;
  1867. //storageUpd.ReceiveQuantity += thisBatchReceiveQuantity;
  1868. batchStorageInfos.Add(storageUpd);
  1869. }
  1870. //2.2.1 更改批次库存
  1871. if (goodsReceiveInfos.Count > 0)
  1872. {
  1873. var edit1 = await _sqlSugar.Updateable(batchStorageInfos)
  1874. .UpdateColumns(x => x.ReceiveQuantity)
  1875. .WhereColumns(x => x.Id)
  1876. .ExecuteCommandAsync();
  1877. if (edit1 < 1)
  1878. {
  1879. _jv.Msg = $"批次库存更新失败!";
  1880. return _jv;
  1881. }
  1882. }
  1883. //2.2.2 添加入库批次关联领用人
  1884. if (goodsReceiveInfos.Count > 0)
  1885. {
  1886. goodsStorageInfo = JsonConvert.SerializeObject(goodsReceiveInfos);
  1887. }
  1888. }
  1889. }
  1890. else if (auditInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() == 1)
  1891. {
  1892. //出库确认中
  1893. auditEnum = GoodsAuditEnum.OutConfirming;
  1894. if (preChangeStatus == GoodsAuditEnum.OutConfirmed)
  1895. {
  1896. var goodsStorageInfo1 = receiveInfo.GoodsStorageInfo;
  1897. if (!string.IsNullOrEmpty(goodsStorageInfo))
  1898. {
  1899. var goodsStorageInfos = JsonConvert.DeserializeObject<List<GoodsReceiveLinkStorageView>>(goodsStorageInfo);
  1900. if (goodsStorageInfos.Any())
  1901. {
  1902. foreach (var item in goodsStorageInfos)
  1903. {
  1904. var newStorageInfo = await _sqlSugar.Queryable<Pm_GoodsStorage>()
  1905. .Where(x => x.IsDel == 0 && x.Id == item.StorageId)
  1906. .FirstAsync();
  1907. if (newStorageInfo == null) continue;
  1908. var newEdit = await _sqlSugar.Updateable(newStorageInfo)
  1909. .ReSetValue(x => x.ReceiveQuantity = x.ReceiveQuantity - item.Quantity)
  1910. .ExecuteCommandAsync();
  1911. if (newEdit < 1)
  1912. {
  1913. _jv.Msg = $"批次领用库存更新失败!";
  1914. return _jv;
  1915. }
  1916. }
  1917. }
  1918. }
  1919. }
  1920. }
  1921. else
  1922. {
  1923. auditEnum = GoodsAuditEnum.OutPending;
  1924. }
  1925. var statusDesc1 =statusDesc.ToString();
  1926. var changeStatus = await _sqlSugar
  1927. .Updateable<Pm_GoodsReceive>()
  1928. .SetColumns(x => new Pm_GoodsReceive()
  1929. {
  1930. AuditStatus = auditEnum,
  1931. StatusDesc = statusDesc1,
  1932. GoodsStorageInfo = goodsStorageInfo,
  1933. })
  1934. .Where(x => x.Id == receiveInfo.Id)
  1935. .ExecuteCommandAsync();
  1936. if (changeStatus > 0)
  1937. {
  1938. _jv.Code = StatusCodes.Status200OK;
  1939. }
  1940. return _jv;
  1941. }
  1942. /// <summary>
  1943. /// 物品领用 Del
  1944. /// </summary>
  1945. /// <param name="id"></param>
  1946. /// <param name="currUserId"></param>
  1947. /// <returns></returns>
  1948. public async Task<JsonView> GoodsReceiveDel(int id, int currUserId)
  1949. {
  1950. var receiveInfo = await _sqlSugar
  1951. .Queryable<Pm_GoodsReceive>()
  1952. .Where(x => x.IsDel == 0 && x.Id == id)
  1953. .FirstAsync();
  1954. if (receiveInfo.AuditStatus >= GoodsAuditEnum.Approved)
  1955. {
  1956. _jv.Msg = $"该条数据已进入审批流程,不可删除!";
  1957. return _jv;
  1958. }
  1959. var edit = await _sqlSugar
  1960. .Updateable<Pm_GoodsReceive>()
  1961. .SetColumns(x => new Pm_GoodsReceive()
  1962. {
  1963. IsDel = 1,
  1964. DeleteUserId = currUserId,
  1965. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  1966. })
  1967. .Where(x => x.Id == id)
  1968. .ExecuteCommandAsync();
  1969. if (edit > 0)
  1970. {
  1971. _jv.Msg = $"操作成功!";
  1972. _jv.Code = StatusCodes.Status200OK;
  1973. return _jv;
  1974. }
  1975. return _jv;
  1976. }
  1977. }
  1978. }