From 976d3ae1547b896cc5c7875408c09616d5c2ee55 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期二, 26 十一月 2024 20:51:17 +0800 Subject: [PATCH] 箱数更新 --- Tiger.Business.MES/Transaction/Position.cs | 184 +++++++++++++++++++++++++++++++++++---------- 1 files changed, 141 insertions(+), 43 deletions(-) diff --git a/Tiger.Business.MES/Transaction/Position.cs b/Tiger.Business.MES/Transaction/Position.cs index 5035f38..6bc6cc8 100644 --- a/Tiger.Business.MES/Transaction/Position.cs +++ b/Tiger.Business.MES/Transaction/Position.cs @@ -14,6 +14,8 @@ using System.Globalization; using Tiger.Business.MES.WorkAction; using System.Collections; +using Tiger.IBusiness.MES.WorkAction; +using Dm.parser; namespace Tiger.Business.MES.Transaction { @@ -62,6 +64,7 @@ public WorkBatch CurBatch { get; set; } public IWorkBatch WorkBatch => CurBatch; public List<MES_WIP_DATA> CurWipSNs { get; set; } = new(); + public List<MES_WIP_DATA> LastWipSNs { get; set; } = new(); public string CurSN => (CurWipSNs.Any() ? (CurWipSNs.First().TRAY_SN.IsNullOrEmpty() ? CurWipSNs.First().SN : CurWipSNs.First().TRAY_SN) : ""); public List<MES_WIP_HIS> CurWipSNHiss { get; set; } = new(); public List<MES_WIP_DFT> CurDefects { get; set; } = new(); @@ -140,6 +143,7 @@ } var wb = new WorkBatch(input.OrderNo).Init(CurLine.LINE_CODE); WoContext.WoBatchDic.Add(wb.Batch.BATCH_NO, wb); + batchNo = wb.Batch.BATCH_NO; } CurBatch = WoContext.GetBatch(input.OrderNo, CurLine.LINE_CODE, batchNo); if (!OperInfoDic.ContainsKey(CurBatch.Batch.BATCH_NO)) @@ -479,6 +483,9 @@ throw dbTran.ErrorException; } } + //璁板綍鏈�鍚庢垚鍔熻繃绔欑殑鏉$爜 + LastWipSNs.Clear(); + LastWipSNs.AddRange(CurWipSNs); } protected void DoSaveToDB() @@ -507,6 +514,11 @@ /// <returns></returns> public BAS_LABEL_TEMP SetLabelVariables(List<BAS_LABEL_PV> labelPVs, BAS_LABEL_TEMP label, IWorkAction action) { + return SetLabelVariables(labelPVs, label, action, null); + } + + public BAS_LABEL_TEMP SetLabelVariables(List<BAS_LABEL_PV> labelPVs, BAS_LABEL_TEMP label, IWorkAction action, WipPkg? CurPkg) + { foreach (var item in label.Variables.OrderBy(q => q.VAR_TYPE == BAS_LABEL_VAR.VAR_TYPEs.BarcodeGenerate.GetValue() ? 0 : 1)) { switch (item.VAR_TYPE.GetEnum<BAS_LABEL_VAR.VAR_TYPEs>()) @@ -515,7 +527,7 @@ item.Value = item.VAR_VALUE; break; case BAS_LABEL_VAR.VAR_TYPEs.ProcessVariable: - item.Value = GetPrintProcessValue(labelPVs, item, label.Variables, action); + item.Value = GetPrintProcessValue(labelPVs, item, label.Variables, action, CurPkg); break; case BAS_LABEL_VAR.VAR_TYPEs.DateVariable: item.Value = DateTime.Now.ToString(item.VAR_VALUE); @@ -538,7 +550,7 @@ /// <param name="labelPVs">杩囩▼鍙橀噺鍒楄〃</param> /// <param name="lv">鏍囩妯℃澘鍙橀噺</param> /// <returns></returns> - public string GetPrintProcessValue(List<BAS_LABEL_PV> labelPVs, BAS_LABEL_VAR lv, List<BAS_LABEL_VAR> lvars, IWorkAction action) + public string GetPrintProcessValue(List<BAS_LABEL_PV> labelPVs, BAS_LABEL_VAR lv, List<BAS_LABEL_VAR> lvars, IWorkAction curAction, WipPkg? CurPkg) { var pv = labelPVs.FirstOrDefault(q => q.VAR_CODE == lv.VAR_VALUE); if (!pv.IsNullOrEmpty()) @@ -551,6 +563,8 @@ { case "GetSN": return CurSN; + case "GetItemCode": + return GetLabelVarWo(lv, WorkBatch.Product.ITEM_CODE); case "GetBAS_ITEM": return GetLabelVarWo(lv, WorkBatch.Product.CUST_PROD_CODE); case "GetItemName": @@ -562,15 +576,22 @@ case "GetPackNumber": return GetLabelVarWo(lv, WorkBatch.WO.ORDER_NO); case "GetBoxQR": - return action is PackingAction ? GetBoxCode(lvars, action as PackingAction) : ""; + return GetCardOrBoxQR(GetBoxCode(), curAction, CurPkg); case "GetCardQR": - return action is PackingAction ? GetCardOrBoxQR(GetCardCode(lvars), lvars, action as PackingAction) : ""; + return GetCardOrBoxQR("", curAction, CurPkg); case "GetCardSN": List<string> minPkgList = new List<string>(); - var _pkaction = action is PackingAction ? action as PackingAction : null; - if (_pkaction != null) + if (!CurPkg.IsNullOrEmpty()) { - minPkgList = GetMinPkgList(_pkaction); + minPkgList = CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + } + else + { + var _pkaction = curAction is PackingAction ? curAction as PackingAction : null; + if (!_pkaction.IsNullOrEmpty()) + { + minPkgList = GetMinPkgList(_pkaction); + } } return string.Join("\r\n", minPkgList); case "GetDescription": @@ -583,20 +604,37 @@ return GetLabelVarWo(lv, WorkBatch.WO.Customer?.CUST_NAME_CN); case "GetHWDate": List<string> list = new List<string>(); - var _action = action is PackingAction ? action as PackingAction : null; - if (_action != null) + if (!CurPkg.IsNullOrEmpty()) { - list = GetMinPkgList(_action); + list = CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + } + else + { + var _action = curAction is PackingAction ? curAction as PackingAction : null; + if (_action != null) + { + list = _action.CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + } } return GetHuaWeiWeek(WorkBatch.Batch.ORDER_NO, list); case "GetQty": List<string> qtylist = new List<string>(); - var _qtyAction = action is PackingAction ? action as PackingAction : null; - if (_qtyAction != null) + if (!CurPkg.IsNullOrEmpty()) { - qtylist = GetMinPkgList(_qtyAction); + qtylist = CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); } - return $"{qtylist.Count}PCS"; + else + { + if (curAction is PackingAction) + { + qtylist = (curAction as PackingAction).CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + } + if (curAction is PrintInStoreLabel) + { + qtylist = (curAction as PrintInStoreLabel).CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + } + } + return $"{qtylist.Count}"; case "GetModel": return GetLabelVarWo(lv, WorkBatch.Product.ExtInfo?.Model); case "GetInput": @@ -611,28 +649,40 @@ return GetLabelVarWo(lv, ""); case "GetLOTNO": string _lotnos = ""; - var _orderAction = action is PackingAction ? action as PackingAction : null; - if (_orderAction != null) + var _orderAction = curAction is PackingAction ? curAction as PackingAction : null; + if (!CurPkg.IsNullOrEmpty()) { - var snList = _orderAction.GetMinPackageList(_orderAction.CurPkg.Item).Select(q => q.FLOW_SN).ToList(); - if (!snList.Any()) + qtylist = CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + } + else + { + if (_orderAction != null) { - snList.Add(_orderAction.CurPkg.CustSN.FLOW_SN); + var snList = _orderAction.CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + if (!snList.Any()) + { + snList.Add(_orderAction.CurPkg.CustSN?.FLOW_SN); + } + _lotnos = string.Join(",", Biz.Db.Queryable<MES_CUST_SN>() + .Where((q) => snList.Contains(q.FLOW_SN)) + .Select((q) => q.WORK_ORDER).Distinct().ToList()); + return _lotnos; } - _lotnos = string.Join(",", Biz.Db.Queryable<MES_CUST_SN>() - .Where((q) => snList.Contains(q.FLOW_SN)) - .Select((q) => q.WORK_ORDER).Distinct().ToList()); - return _lotnos; } return ""; case "GetNOTES": - return GetLabelVarWo(lv, WorkBatch.Product.ExtInfo?.Remark); + return GetLabelVarWo(lv, WorkBatch.Product.ExtInfo?.Remark); case "GetXH": - return GetCardCode(lvars); + return ""; case "GetCardNo": - return ""; + return $"{Context["CurWaitShipmentCarton"].ToInt32() + 1}"; case "GetCardTotal": - return ""; + var total = ""; + var _curaction = curAction is PackingAction ? curAction as PackingAction : null; + if (!_curaction.IsNullOrEmpty()) { + total = $"{Math.Ceiling(Context["CurShipQty"].ToDecimal()/_curaction.PkgRule.GetTotalQty().ToDecimal())}"; + } + return total; case "GetModelSpec": //Model+绌烘牸+SPEC, return GetLabelVarWo(lv, $"{WorkBatch.Product.ExtInfo?.Model} {WorkBatch.Product.SPEC}"); case "GetDATE": @@ -712,13 +762,13 @@ private List<string> GetMinPkgList(PackingAction action) { List<string> list = new List<string>(); - if (action.CurPkg.Item.PKG_LEVEL == 1) + if (action.CurPkg.IsNullOrEmpty()) { list.Add(CurSN); } else { - list = action.GetMinPackageList(action.CurPkg.Item).Select(q => q.SN).ToList(); + list = action.CurPkg.Item.GetMinPackageList().Select(q => q.SN).ToList(); } return list; } @@ -726,24 +776,19 @@ /// <summary> /// 鑾峰彇鐧界洅鏉$爜 /// </summary> - /// <param name="action"></param> /// <returns></returns> - private string GetBoxCode(List<BAS_LABEL_VAR> lvars, PackingAction action) + private string GetBoxCode() { - var boxCode = Biz.CodeRule["WhiteBoxNo"]?.Generate("W", $"{WorkBatch.Batch.BATCH_NO}-{WorkBatch.Batch.PLAN_QTY}-").Data.ToString() ?? ""; - return GetCardOrBoxQR(boxCode, lvars, action); + return Biz.CodeRule["WhiteBoxNo"]?.Generate("W", $"{WorkBatch.Batch.BATCH_NO}-{WorkBatch.Batch.PLAN_QTY}-").Data.ToString() ?? ""; } /// <summary> /// 鑾峰彇绠辨潯鐮� /// </summary> - /// <param name="lvars"></param> - /// <param name="action"></param> /// <returns></returns> - private string GetCardCode(List<BAS_LABEL_VAR> lvars) + private string GetCardCode() { - var cardCode = Biz.CodeRule["CartonNo"]?.Generate("B", $"{WorkBatch.Batch.BATCH_NO}-{WorkBatch.Batch.PLAN_QTY}-").Data.ToString() ?? ""; - return cardCode; + return Biz.CodeRule["CartonNo"]?.Generate("B", $"{WorkBatch.Batch.BATCH_NO}-{WorkBatch.Batch.PLAN_QTY}-").Data.ToString() ?? ""; } /// <summary> @@ -753,15 +798,43 @@ /// <param name="lvars"></param> /// <param name="action"></param> /// <returns></returns> - private string GetCardOrBoxQR(string code, List<BAS_LABEL_VAR> lvars, PackingAction action) + private string GetCardOrBoxQR(string code, IWorkAction action, WipPkg? CurPkg) { - var minPkgList = action.GetMinPackageList(action.CurPkg.Item).Select(q => q.SN); + List<string> minPkgList = new List<string>(); + var itemCode = ""; + double weight = 0; + var unit = ""; + if (!CurPkg.IsNullOrEmpty()) + { + minPkgList = CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + itemCode = CurPkg.CustSN?.ITEM_CODE; + weight = CurPkg.WeightInfo.Weight; + unit = CurPkg.WeightInfo.Unit?.ToUpper() ?? "kg"; + } + else + { + if (action is PackingAction) + { + var pkg = action as PackingAction; + //minPkgList = pkg.CurPkg.Item.GetMinPackageList().Select(q => q.SN).ToList(); + minPkgList = pkg.CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + itemCode = pkg.CurPkg.CustSN?.ITEM_CODE; + weight = pkg.CurPkg.WeightInfo.Weight; + unit = pkg.CurPkg.WeightInfo.Unit?.ToUpper() ?? "kg"; + } + if (action is PrintInStoreLabel) + { + var print = action as PrintInStoreLabel; + //minPkgList = print.CurPkg.Item.GetMinPackageList().Select(q => q.SN).ToList(); + minPkgList = print.CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + itemCode = print.CurPkg.CustSN?.ITEM_CODE; + weight = print.CurPkg.WeightInfo.Weight; + unit = print.CurPkg.WeightInfo.Unit?.ToUpper() ?? "kg"; + } + } var wo = WorkBatch.Batch.ORDER_NO; var snList = string.Join("\r\n", minPkgList); if (snList.IsNullOrEmpty()) { snList = $"{CurSN}"; } - var itemCode = action.CurPkg.CustSN?.ITEM_CODE; - var weight = action.CurPkg.WeightInfo.Weight; - var unit = action.CurPkg.WeightInfo.Unit.ToUpper(); var model = WorkBatch.Product.ExtInfo?.Model; var Input = WorkBatch.Product.ExtInfo?.Input; var OutPut = WorkBatch.Product.ExtInfo?.OutPut; @@ -816,6 +889,31 @@ } } #endregion + #region 鏉$爜瑙勫垯鏂规硶 + /// <summary> + /// 鑾峰彇鏍规嵁鏉$爜瑙勫垯鐢熸垚鏉$爜 + /// </summary> + /// <param name="ruleCode"></param> + /// <param name="curAction"></param> + /// <returns></returns> + public string GenerateSN(string ruleCode, IWorkAction curAction) + { + var rule = Biz.CodeRule[ruleCode ?? ""]; + if (!rule.IsNullOrEmpty()) + { + switch (rule.RULE_CODE) + { + case "WhiteBoxNo": + return rule.Generate("W", $"{WorkBatch.Batch.BATCH_NO}-{WorkBatch.Batch.PLAN_QTY}-").Data.ToString() ?? ""; + case "CartonNo": + return rule.Generate("B", $"{WorkBatch.Batch.BATCH_NO}-{WorkBatch.Batch.PLAN_QTY}-").Data.ToString() ?? ""; + default: + return rule.Generate().Data.ToString() ?? ""; + } + } + return ""; + } + #endregion #region 鍖呰涓撶敤鏂规硶 /// <summary> /// 鏍规嵁浼犲叆鐨勫寘瑁呭璞¤繑鍥炴墍鏈夌殑鍖呰瀹炰綋鍒楄〃 -- Gitblit v1.9.3