From a96b665105c57a4ae67d286b2bb6897988ca590e Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期三, 20 十一月 2024 20:52:58 +0800 Subject: [PATCH] 雅达装箱工序:打印测试标签 --- Tiger.Business.MES/Transaction/Position.cs | 118 ++++++++++++++++++++++++++++++++++++++++------------------- 1 files changed, 80 insertions(+), 38 deletions(-) diff --git a/Tiger.Business.MES/Transaction/Position.cs b/Tiger.Business.MES/Transaction/Position.cs index 88b16c2..c52ef1d 100644 --- a/Tiger.Business.MES/Transaction/Position.cs +++ b/Tiger.Business.MES/Transaction/Position.cs @@ -514,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>()) @@ -522,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); @@ -545,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 curAction) + 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()) @@ -571,15 +576,22 @@ case "GetPackNumber": return GetLabelVarWo(lv, WorkBatch.WO.ORDER_NO); case "GetBoxQR": - return GetCardOrBoxQR(GetBoxCode(), curAction); + return GetCardOrBoxQR(GetBoxCode(), curAction, CurPkg); case "GetCardQR": - return GetCardOrBoxQR("", curAction); + return GetCardOrBoxQR("", curAction, CurPkg); case "GetCardSN": List<string> minPkgList = new List<string>(); - var _pkaction = curAction is PackingAction ? curAction 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": @@ -592,21 +604,35 @@ return GetLabelVarWo(lv, WorkBatch.WO.Customer?.CUST_NAME_CN); case "GetHWDate": List<string> list = new List<string>(); - var _action = curAction is PackingAction ? curAction 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 = GetMinPkgList(_action); + } } return GetHuaWeiWeek(WorkBatch.Batch.ORDER_NO, list); case "GetQty": List<string> qtylist = new List<string>(); - if (curAction is PackingAction) + if (!CurPkg.IsNullOrEmpty()) { - qtylist = GetMinPkgList(curAction as PackingAction); + qtylist = CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); } - if (curAction is PrintInStoreLabel) + else { - qtylist = (curAction as PrintInStoreLabel).CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + if (curAction is PackingAction) + { + qtylist = GetMinPkgList(curAction as PackingAction); + } + if (curAction is PrintInStoreLabel) + { + qtylist = (curAction as PrintInStoreLabel).CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + } } return $"{qtylist.Count}"; case "GetModel": @@ -624,18 +650,24 @@ case "GetLOTNO": string _lotnos = ""; var _orderAction = curAction is PackingAction ? curAction as PackingAction : null; - if (_orderAction != null) + if (!CurPkg.IsNullOrEmpty()) { - //var snList = _orderAction.CurPkg.Item.GetMinPackageList().Select(q => q.FLOW_SN).ToList(); - var snList = _orderAction.CurPkg.Item.GetWipSnList().Select(q => q.Value).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": @@ -761,29 +793,39 @@ /// <param name="lvars"></param> /// <param name="action"></param> /// <returns></returns> - private string GetCardOrBoxQR(string code, IWorkAction action) + private string GetCardOrBoxQR(string code, IWorkAction action, WipPkg? CurPkg) { List<string> minPkgList = new List<string>(); var itemCode = ""; double weight = 0; var unit = ""; - if (action is PackingAction) + if (!CurPkg.IsNullOrEmpty()) { - 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"; + minPkgList = CurPkg.Item.GetWipSnList().Select(q => q.Value).ToList(); + itemCode = CurPkg.CustSN?.ITEM_CODE; + weight = CurPkg.WeightInfo.Weight; + unit = CurPkg.WeightInfo.Unit?.ToUpper() ?? "kg"; } - if (action is PrintInStoreLabel) + else { - 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"; + 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); -- Gitblit v1.9.3