using Rhea.Common; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading; using System.Threading.Tasks; using Tiger.Model; using Tiger.IBusiness; using Tiger.Model.Sharetronic.Shelf; using Tiger.Business.WMS.Sharetronic.Shelf; using static IronPython.Modules._ast; namespace Tiger.Business.WMS.Transaction { /// /// 收货单(U9)上架事务 /// public class In_BIZ_U9_RECEIPT : WmsTask, IIn_BIZ_U9_RECEIPT { public IIn_BIZ_U9_RECEIPT Init(string id, string userCode, string apiHost, string orgCode) { base.Init(id, apiHost, userCode, orgCode); Logger.Console.Info($"Start {this.GetType().Name} Transaction[ID: {TransID}]"); return this; } #region Propertys & Variables #endregion #region Functions /// /// 扫描入口 /// public async Task> Scan(BaseInput input) { var action = new ApiAction(new ScanOutput()); try { if (input.SN.IsNullOrEmpty()) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("条码不能为空"); action.LocaleMsg = Biz.L("WMS.Default.ScanItem.SnEmptyFailure"); return SetOutPutMqttMsg(action, input.Locale); } //判断扫描的是否货架 var whUnit = await MainDB.Queryable().Where(t => (t.SHELF_CODE.ToUpper() == input.SN || t.LOCATION_CODE.ToUpper() == input.SN) && t.AUTH_ORG == OrgCode).IncludesAllFirstLayer().FirstAsync(); //if (string.IsNullOrEmpty(CurScanShelf?.ShelfCode)) if (!whUnit.IsNullOrEmpty() || string.IsNullOrEmpty(CurScanShelf?.ShelfCode)) { action = await ScanShelf(input.SN, whUnit); } else//扫描物料并复核 { action = await ScanItem(input); } } catch (Exception ex) { //取消当前操作 ResetScan(); //action.CatchExceptionWithLog(ex, $"扫描[{input.SN}]异常"); action.CatchExceptionWithLog(ex, Biz.L("WMS.Default.Scan.ScanException", input.SN)); } return SetOutPutMqttMsg(action, input.Locale); } /// /// 扫描物料并复核,如果物料已经完成移库则货架上亮灯提醒储位 /// public async Task> ScanItem(BaseInput input) { var action = new ApiAction(new ScanOutput() { Command = Command }); try { if (CurInvItem.IsNullOrEmpty()) { //解析条码 Result result = WMS_ITEM_Biz.WmsItem.Get(input.SN, input.AuthOption, true); if (!result.IsSuccessed) { action.IsSuccessed = false; action.LocaleMsg = result.LocaleMsg; return action; } var inv = result.Data as Inventory; //验证条码是否正确 if (!inv.isNormalStatus || inv.Status != WMS_ITEM.STATUSs.WaitIn) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("状态[{0}]异常,请重新扫描"); action.LocaleMsg = Biz.L("WMS.Default.ScanItem.StatusException", string.Join(',', inv.StatusList.Select(q => q.GetDesc()))); return action; } //物料验证 if (inv.ItemInfo.IsNullOrEmpty() || inv.ItemInfo.IS_ACTIVE == "N") { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("物料编码[{0}]不存在或者该物料未启用"); action.LocaleMsg = Biz.L("WMS.Default.ScanItem.ItemCodeNotExistsOrNotActive", inv.ItemInfo.ITEM_CODE.IsNullOrEmpty(inv.Barcode.ItemCode)); return action; } CurInvItem = inv; } var receipt = await Biz.Db.Queryable().Where(q => q.ORDER_NO == CurInvItem.Items.First().TRANS_NO).IncludesAllFirstLayer().FirstAsync(); if (receipt.IsNullOrEmpty()) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("收货单中找不到条码所属的单据[{0}]信息,请重新扫描收货单的条码或选择正确的功能上架"); action.LocaleMsg = Biz.L("WMS.In_BIZ_U9_RECEIPT.ScanItem.ReceiptNotExists", CurInvItem.Items.First().TRANS_NO); return action; } var receiptDtl = receipt.Details.First(q => q.LINE_NO == CurInvItem.Items.First().TRANS_LINE); if (receiptDtl.STATUS > BIZ_U9_RECEIPT.STATUSs.Storing.GetValue()) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("收货单中行[{0}]状态[{1}]异常,请扫描正确的条码"); action.LocaleMsg = Biz.L("WMS.In_BIZ_U9_RECEIPT.ScanItem.ReceiptDtlStatusException", receiptDtl.LINE_NO, receiptDtl.STATUS.GetEnumDesc()); return action; } var receiptSn = receipt.SnList.First(q => q.SN == CurInvItem.SN); if (receiptSn.STATUS != WMS_ITEM.STATUSs.WaitIn.GetValue()) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("收货单中条码[{0}]状态[{1}]异常,请扫描正确的条码"); action.LocaleMsg = Biz.L("WMS.In_BIZ_U9_RECEIPT.ScanItem.ReceiptSnStatusException", receiptSn.SN, receiptSn.STATUS.GetEnumDesc()); return action; } var nLocation = new WMS_LOCATION(); // 判断是否智能货架 if (CurScanShelf.Shelf.IsLightShelf) { ShelfApiResult shelfApiResult = await Share.Shelf.PutOn(TransID, CurScanShelf.Shelf, CurInvItem.Items[0]); if (!shelfApiResult.IsSuccess) { action.IsSuccessed = false; action.LocaleMsg = Biz.L(shelfApiResult.GetData()); return action; } var reaultShelf = shelfApiResult.GetData(); nLocation = reaultShelf.GetLocation(); if (nLocation == null) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L($"货架[{0}]中不存在id为[{1}]的储位,请先维护货架信息"); action.LocaleMsg = Biz.L("WMS.Default.ScanItem.LocationNotExistsInShelf", CurScanShelf.Shelf.SHELF_CODE, reaultShelf.ledAddr); return action; } var locationData = MainDB.Queryable().Where(q => q.LOCATION_ID == nLocation.ID).First(); if (!locationData.IsNullOrEmpty()) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("储位[{0}]已存有物料[{1}],请检查系统库存信息"); action.LocaleMsg = Biz.L($"WMS.Default.ScanShelf.ItemAlreadyExistsInLocation", nLocation.LOCATION_CODE, locationData.SN); return action; } CurScanShelf.LocationCode = nLocation.LOCATION_CODE; } else { if (CurScanShelf.LocationCode.IsNullOrEmpty() || CurScanShelf.WarehouseCode.IsNullOrEmpty()) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("请输入或扫描有效的货架/储位码"); action.LocaleMsg = Biz.L("WMS.Default.ScanShelf.ShelfCanNotEmpty"); return action; } nLocation = await MainDB.Queryable().Where(t => t.LOCATION_CODE == CurScanShelf.LocationCode && t.AUTH_ORG == OrgCode).FirstAsync(); } //判断储位是否单放 if (nLocation.IS_SINGLE == "Y" && CurInvItem.Items.Count > 1) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("储位[{0}]只能存放一个物料"); action.LocaleMsg = Biz.L("WMS.Default.ScanItem.LocationSingleFailure", nLocation.LOCATION_CODE); ResetScan(); return action; } //执行上架数据处理 foreach (var item in CurInvItem.Items) { item.SOURCE_CODE = item.TRANS_CODE; item.SOURCE_ORDER = item.TRANS_NO; item.SOURCE_LINE = item.TRANS_LINE; item.TRANS_CODE = nameof(BIZ_U9_RECEIPT); item.TRANS_NO = receipt.ORDER_NO; item.TRANS_LINE = receiptDtl.LINE_NO; } Result putonResult = PutOn(input.AuthOption, nLocation.LOCATION_CODE); if (!putonResult.IsSuccessed) { action.IsSuccessed = false; action.LocaleMsg = putonResult.LocaleMsg; ResetScan(); return action; } //更新单据信息 receiptSn.STATUS = WMS_ITEM.STATUSs.InStore.GetValue(); receiptSn.IS_IN = "Y"; //如果当前行上架完成标记为待审核 receiptDtl.QTY_IN = receipt.SnList.Where(q => q.LINE_NO == receiptDtl.LINE_NO).Sum(q => q.QTY); if (receiptDtl.QTY_IN == receiptDtl.QTY) { receiptDtl.STATUS = BIZ_U9_RECEIPT.STATUSs.Review.GetValue(); //当前单据明细已经全部上架完成,可以调用U9行审接口 } else { receiptDtl.STATUS = BIZ_U9_RECEIPT.STATUSs.Storing.GetValue(); } var dtlStatus = receipt.Details.Select(q => q.STATUS).Distinct(); if (dtlStatus.Count() == 1 && dtlStatus.First() == BIZ_U9_RECEIPT.STATUSs.Review.GetValue()) { receipt.STATUS = BIZ_U9_RECEIPT.STATUSs.Review.GetValue(); } else { receipt.STATUS = BIZ_U9_RECEIPT.STATUSs.Storing.GetValue(); } //创建变量克隆对象用于传入DBSubmitAction中保存当前需要暂存的数据值 var _receipt = receipt.Clone(); AddCommitAction("Receipt", () => { //使用统一的事务DB对象 var db = GetCommitDB(); //数据保存逻辑 db.Updateable(receipt, UserCode).UpdateColumns(q => new { q.STATUS, q.UPDATE_TIME, q.UPDATE_USER }).ExecuteCommand(); db.Updateable(receiptDtl, UserCode).UpdateColumns(q => new { q.STATUS, q.QTY_IN, q.UPDATE_TIME, q.UPDATE_USER }).ExecuteCommand(); db.Updateable(receiptSn, UserCode).UpdateColumns(q => new { q.STATUS, q.IS_IN, q.UPDATE_TIME, q.UPDATE_USER }).ExecuteCommand(); }); //完成所有处理后使用事务保存数据 action = DoIfFinish(action, input.Locale); } catch (Exception ex) { //取消当前操作 ResetScan(); //action.CatchExceptionWithLog(ex, $"扫描条码[{input.SN}]复核异常"); action.CatchExceptionWithLog(ex, Biz.L("WMS.Default.ScanItem.ScanException", input.SN)); } return action; } /// /// 扫描货架或者储位 /// public async Task> ScanShelf(string Code, V_WH_UNIT whUnit) { var action = new ApiAction(new ScanOutput() { Command = Command }); try { if (Code.IsNullOrEmpty()) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("请输入或扫描有效的货架/储位码"); action.LocaleMsg = Biz.L("WMS.Default.ScanShelf.ShelfCanNotEmpty"); return action; } CurScanShelf = new ScanShelfInfo(); // 查询货架信息 whUnit = whUnit.IsNullOrEmpty(await MainDB.Queryable().Where(t => (t.SHELF_CODE.ToUpper() == Code || t.LOCATION_CODE.ToUpper() == Code) && t.AUTH_ORG == OrgCode).IncludesAllFirstLayer().FirstAsync()); // 扫描货架代码,且为智能货架 if (!whUnit.IsNullOrEmpty() && whUnit.SHELF_CODE == Code) { CurScanShelf.Shelf = whUnit.Shelf; CurScanShelf.WarehouseCode = whUnit.WH_CODE; CurScanShelf.RegionCode = whUnit.REGION_CODE; CurScanShelf.ShelfCode = whUnit.SHELF_CODE; CurScanShelf.ShelfType = whUnit.SHELF_TYPE; CurScanShelf.IsSmartRack = true; } // 扫描库位代码 else if (!whUnit.IsNullOrEmpty() && whUnit.LOCATION_CODE == Code) { //var nLocation = await MainDB.Queryable().Where(t => t.LOCATION_CODE.ToUpper() == Code.ToUpper() && t.AUTH_ORG == OrgCode).IncludesAllFirstLayer().FirstAsync(); //if (nLocation == null) //{ // action.IsSuccessed = false; // //action.LocaleMsg = Biz.L("储位[{0}]不存在"); // action.LocaleMsg = Biz.L("WMS.Default.ScanShelf.LocationNotExist", Code); // return action; //} if (whUnit.IS_ACTIVE == "N") { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("扫描的储位[{0}]未启用"); action.LocaleMsg = Biz.L("WMS.Default.ScanShelf.ShelfOrLocationDisabled", Code); return action; } if (whUnit.Shelf.IsLightShelf || whUnit.Location.IS_SINGLE == "Y") { var locationData = MainDB.Queryable().Where(q => q.LOCATION_ID == whUnit.LOCATION_ID && q.AUTH_ORG == OrgCode).First(); if (!locationData.IsNullOrEmpty()) { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("储位[{0}]已存有物料[{1}],请检查系统库存信息"); action.LocaleMsg = Biz.L($"WMS.Default.ScanShelf.ItemAlreadyExistsInLocation", Code, locationData.SN); return action; } } CurScanShelf.Shelf = whUnit.Shelf; CurScanShelf.Location = whUnit.Location; CurScanShelf.WarehouseCode = whUnit.WH_CODE; CurScanShelf.RegionCode = whUnit.REGION_CODE; CurScanShelf.ShelfCode = whUnit .SHELF_CODE; CurScanShelf.LocationCode = whUnit.LOCATION_CODE; CurScanShelf.IsSmartRack = false; } else { action.IsSuccessed = false; //action.LocaleMsg = Biz.L("请输入或扫描有效的货架/储位码"); action.LocaleMsg = Biz.L("WMS.Default.ScanShelf.ShelfCanNotEmpty"); return action; } CurScanShelf.IsScanShelf = true; //action.LocaleMsg = Biz.L("扫描货架/储位[{0}]成功"); action.LocaleMsg = Biz.L("WMS.Default.ScanShelf.ScanSucceeded", Code); action.Data.Data = CurScanShelf; } catch (Exception ex) { //取消当前操作 ResetScan(); //action.CatchExceptionWithLog(ex, $"扫描货架/储位[{0}]异常"); action.CatchExceptionWithLog(ex, Biz.L("WMS.Default.ScanShelf.ScanException", Code)); } return action; } /// /// 完成所有处理后使用事务保存数据 /// /// /// public ApiAction DoIfFinish(ApiAction action, string locale) { //保存数据库 SaveCommitListToDB(); // 返回数据 action.Data.Data = new DefaultInStoreOutput { Barcode = CurInvItem.SN, MaterialCode = CurInvItem.ItemInfo.ITEM_CODE, MaterialName = CurInvItem.ItemInfo.ITEM_NAME, CurrentQty = CurInvItem.Items[0].QTY, Unit = CurInvItem.Items[0].UNIT, DateCode = CurInvItem.Items[0].PROD_DATE, WarehouseCode = CurInvItem.Warehouse.WH_CODE, RegionCode = CurInvItem.Region.REGION_CODE, ShelfCode = CurInvItem.Shelf.SHELF_CODE, LocationCode = CurInvItem.Location.LOCATION_CODE, }; //action.LocaleMsg = Biz.L($"扫描条码[{0}]上架到储位[{1}]成功"); action.LocaleMsg = Biz.L("WMS.Default.ScanItem.PutOnSucceeded", CurInvItem.SN, CurInvItem.Location.LOCATION_CODE); //重置工序 ResetScan(); return action; } #endregion /// /// 重置当前操作,有需要则重写此方法 /// public override void ResetScan() { base.ResetScan(); Command = null; CurInvItem = null; CurScanShelf = null; } public override bool Close(bool needSaveHistoryLog = false) { this.IsFinished = true; return IsFinished ? base.Close(needSaveHistoryLog) : IsFinished; } }//endClass }