| | |
| | | /// <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>()) |
| | |
| | | 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); |
| | |
| | | /// <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()) |
| | |
| | | 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": |
| | |
| | | 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": |
| | |
| | | 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": |
| | |
| | | /// <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); |