| | |
| | | public MES_WO_NODE_ACT NodeAct { get; set; } |
| | | public MES_WO_ACTION Setting { get; set; } |
| | | #endregion |
| | | public MES_CUST_SN CurCSN { get; set; } |
| | | public MES_CUST_SN FlowCSN { get; set; } |
| | | public MES_CUST_SN CustCSN { get; set; } |
| | | public BAS_LABEL_TEMP Label { get; set; } |
| | | public List<BAS_LABEL_PV> LabelPV { get; set; } |
| | | public List<mes_MOPickList> MoPickList { get; set; } |
| | |
| | | //获取打印模板 |
| | | Label = Biz.Db.Queryable<BAS_LABEL_TEMP>().Where(q => q.LABEL_CODE == setting.LABEL_CODE).IncludesAllFirstLayer().First(); |
| | | LabelPV = Biz.Db.Queryable<BAS_LABEL_PV>().ToList(); |
| | | //获取工单备料信息 |
| | | MoPickList = Biz.DataSource["YadaU9C"].Client.Queryable<mes_MOPickList>().Where(q => q.MoDocNo == CurPosition.WorkBatch.WO.ORDER_NO).ToList(); |
| | | |
| | | //获取当前产品在当前客户的关系 |
| | | CustInfo = Biz.Db.Queryable<BAS_ITEM_CUST>().Where(q => q.ITEM_ID == CurPosition.WorkBatch.WO.ItemInfo.ID && q.CUST_CODE == CurPosition.WorkBatch.WO.CUST_CODE).First(); |
| | | |
| | | CurStep.Message = Biz.L("扫描厂内条码"); |
| | | CurStep.Message = Biz.L("扫描厂内条码或客户条码"); |
| | | CurStep.Status = StepStatus.Normal; |
| | | } |
| | | |
| | |
| | | { |
| | | var action = new ApiAction<SubmitOutput>(new SubmitOutput()); |
| | | |
| | | //获取工单备料信息 |
| | | MoPickList = Biz.DataSource["YadaU9C"].Client.Queryable<mes_MOPickList>().Where(q => q.MoDocNo == CurPosition.WorkBatch.WO.ORDER_NO).ToList(); |
| | | |
| | | //只允许单个产品进行客户条码绑定 |
| | | if (CurPosition.CurWipSNs.Count > 1) |
| | | { |
| | | CurStep.Message = Biz.L("请扫描单个产品"); |
| | | action.Data.Data = new |
| | | { |
| | | NeedPrint = false, |
| | | NeedScan = false, |
| | | Label = "", |
| | | }; |
| | | CurStep.Message = Biz.L("扫描厂内条码或客户条码"); |
| | | CurStep.Status = StepStatus.Error; |
| | | action.Data.ShortMsg = new("请扫描单个产品", ShortMessage.Types.Error); |
| | | action.Data.ShortMsg = new("扫描厂内条码或客户条码", ShortMessage.Types.Error); |
| | | action.IsSuccessed = false; |
| | | //action.LocaleMsg = new($"条码[{0}]是包装/载具条码,请重新扫描单个厂内条码进行客户条码绑定"); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.NotProductSN", CurPosition.CurSN); |
| | | //重置工序操作 |
| | | CurPosition.ResetNode(); |
| | | |
| | | action.IsSuccessed = false; |
| | | return action; |
| | | } |
| | | |
| | | var wipSn = CurPosition.CurWipSNs.First(); |
| | | CurCSN = Biz.Db.Queryable<MES_CUST_SN>().Where(q => q.FLOW_SN == wipSn.SN).First(); |
| | | //厂内条码已绑定客户条码,直接结束行为 |
| | | if (!CurCSN.IsNullOrEmpty()) |
| | | FlowCSN = Biz.Db.Queryable<MES_CUST_SN>().Where(q => q.FLOW_SN == wipSn.SN || q.CUST_SN == wipSn.SN).First(); |
| | | //找不到生产记录,认为扫描错误 |
| | | if (FlowCSN.IsNullOrEmpty()) |
| | | { |
| | | //客户条码已绑定当前工单或者其批次属于当前工单上料物料的推荐批次 |
| | | if (CurCSN.WORK_ORDER == CurPosition.WorkBatch.WO.ORDER_NO || MoPickList.Any(q => q.Code == CurCSN.ITEM_CODE && q.SuggestedBatch == CurCSN.WORK_ORDER)) |
| | | action.Data.Data = new |
| | | { |
| | | CurCSN.WORK_ORDER = CurPosition.WorkBatch.WO.ORDER_NO; |
| | | CurCSN.ITEM_CODE = CurPosition.WorkBatch.WO.ITEM_CODE; |
| | | action.Data.Data = new |
| | | { |
| | | NeedPrint = false, |
| | | NeedScan = false, |
| | | Label = "", |
| | | }; |
| | | action = End(input); |
| | | } |
| | | else |
| | | { |
| | | action.Data.Data = new |
| | | { |
| | | NeedPrint = false, |
| | | NeedScan = false, |
| | | Label = "", |
| | | }; |
| | | CurStep.Message = Biz.L("投料错误"); |
| | | CurStep.Status = StepStatus.Error; |
| | | action.Data.ShortMsg = new("投料错误", ShortMessage.Types.Failed); |
| | | action.IsSuccessed = false; |
| | | //action.LocaleMsg = new($"产品的客户条码[{0}]属于工单[{1}]不适用于当前工单[{2}]的生产"); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.InputSnError", CurCSN.CUST_SN, CurCSN.WORK_ORDER, CurPosition.WorkBatch.WO.ORDER_NO); |
| | | //如果行为设置为出错需要重置工序操作 |
| | | if (NodeAct.NEED_RESET == "Y") |
| | | { |
| | | CurPosition.ResetNode(); |
| | | } |
| | | return action; |
| | | } |
| | | NeedPrint = false, |
| | | NeedScan = false, |
| | | Label = "", |
| | | }; |
| | | CurStep.Message = Biz.L("投料错误"); |
| | | CurStep.Status = StepStatus.Error; |
| | | action.Data.ShortMsg = new("投料错误", ShortMessage.Types.Failed); |
| | | action.IsSuccessed = false; |
| | | //action.LocaleMsg = new($"投料错误,找不到条码[{0}]的生产记录"); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.InputSnError", wipSn.SN); |
| | | //重置工序操作 |
| | | CurPosition.ResetNode(); |
| | | return action; |
| | | } |
| | | //厂内条码未绑定客户条码 |
| | | else |
| | | { |
| | | //如果客户条码标签模板为空则不需要打印,等待扫描客户条码进行绑定 |
| | | if (Label.IsNullOrEmpty()) |
| | | { |
| | | action.Data.Data = new |
| | | { |
| | | NeedPrint = false, |
| | | NeedScan = true, |
| | | Label = "", |
| | | }; |
| | | CurStep.Message = Biz.L("扫描客户标签"); |
| | | CurStep.Status = StepStatus.Normal; |
| | | action.Data.ShortMsg = new("扫描客户标签", ShortMessage.Types.Normal); |
| | | //action.LocaleMsg = new Locale($"请扫描厂内条码[{0}]需要绑定客户条码"); |
| | | action.LocaleMsg = new Locale("MES.WorkAction.ThreeInOne.BeginScan", wipSn.SN); |
| | | } |
| | | else |
| | | { |
| | | //设置打印变量值 |
| | | Label = CurPosition.SetLabelVariables(LabelPV, Label); |
| | | action.Data.Data = new |
| | | { |
| | | NeedPrint = true, |
| | | NeedScan = true, |
| | | Label, |
| | | }; |
| | | CurStep.Message = Biz.L("扫描已打印的客户标签"); |
| | | CurStep.Status = StepStatus.Normal; |
| | | action.Data.ShortMsg = new("扫描已打印的客户标签", ShortMessage.Types.Normal); |
| | | //action.LocaleMsg = new Locale($"开始打印厂内条码[{0}]对应的客户条码"); |
| | | action.LocaleMsg = new Locale("MES.WorkAction.ThreeInOne.BeginPrint", wipSn.SN); |
| | | //厂内条码已绑定 |
| | | if (FlowCSN.IsBound) |
| | | { |
| | | //物料料号是当前工单料号或者在工单备料表中,直接结束行为 |
| | | if (FlowCSN.ITEM_CODE == CurPosition.WorkBatch.WO.ITEM_CODE || MoPickList.Any(q => q.Code == FlowCSN.ITEM_CODE)) |
| | | { |
| | | action = End(input); |
| | | action.Data.Data = new |
| | | { |
| | | NeedPrint = false, |
| | | NeedScan = false, |
| | | Label = "", |
| | | }; |
| | | return action; |
| | | } |
| | | else |
| | | { |
| | | action.Data.Data = new |
| | | { |
| | | NeedPrint = false, |
| | | NeedScan = false, |
| | | Label = "", |
| | | }; |
| | | CurStep.Message = Biz.L("投料错误"); |
| | | CurStep.Status = StepStatus.Error; |
| | | action.Data.ShortMsg = new("投料错误", ShortMessage.Types.Failed); |
| | | action.IsSuccessed = false; |
| | | //action.LocaleMsg = new($"产品(厂内条码[{0}])不适用于当前工单[{1}]的生产"); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.InputSnOrderError", FlowCSN.FLOW_SN, CurPosition.WorkBatch.WO.ORDER_NO); |
| | | //重置工序操作 |
| | | CurPosition.ResetNode(); |
| | | return action; |
| | | } |
| | | } |
| | | //厂内条码未绑定客户条码 |
| | | else |
| | | { |
| | | if (FlowCSN.IsFlowSn) |
| | | { |
| | | //如果客户条码标签模板为空则不需要打印,等待扫描客户条码进行绑定 |
| | | if (Label.IsNullOrEmpty()) |
| | | { |
| | | action.Data.Data = new |
| | | { |
| | | NeedPrint = false, |
| | | NeedScan = true, |
| | | Label = "", |
| | | }; |
| | | CurStep.Message = Biz.L("扫描客户标签"); |
| | | CurStep.Status = StepStatus.Normal; |
| | | action.Data.ShortMsg = new("扫描客户标签", ShortMessage.Types.Normal); |
| | | //action.LocaleMsg = new Locale($"请扫描厂内条码[{0}]需要绑定客户条码"); |
| | | action.LocaleMsg = new Locale("MES.WorkAction.ThreeInOne.BeginScan", wipSn.SN); |
| | | } |
| | | else |
| | | { |
| | | //设置打印变量值 |
| | | Label = CurPosition.SetLabelVariables(LabelPV, Label, this); |
| | | action.Data.Data = new |
| | | { |
| | | NeedPrint = true, |
| | | NeedScan = true, |
| | | Label, |
| | | }; |
| | | CurStep.Message = Biz.L("扫描已打印的客户标签"); |
| | | CurStep.Status = StepStatus.Normal; |
| | | action.Data.ShortMsg = new("扫描已打印的客户标签", ShortMessage.Types.Normal); |
| | | //action.LocaleMsg = new Locale($"开始打印厂内条码[{0}]对应的客户条码"); |
| | | action.LocaleMsg = new Locale("MES.WorkAction.ThreeInOne.BeginPrint", wipSn.SN); |
| | | } |
| | | } |
| | | else |
| | | { |
| | | action.Data.Data = new |
| | | { |
| | | NeedPrint = false, |
| | | NeedScan = false, |
| | | Label = "", |
| | | }; |
| | | CurStep.Message = Biz.L("扫描厂内条码"); |
| | | CurStep.Status = StepStatus.Error; |
| | | action.Data.ShortMsg = new("扫描厂内条码", ShortMessage.Types.Failed); |
| | | action.IsSuccessed = false; |
| | | //action.LocaleMsg = new($"客户条码[{0}]未被绑定,请先扫描厂内条码"); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.PleaseScanFlowSn", wipSn.SN); |
| | | //重置工序操作 |
| | | CurPosition.ResetNode(); |
| | | return action; |
| | | } |
| | | } |
| | | |
| | | //客户条码已绑定当前工单或者其批次属于当前工单上料物料的推荐批次,直接结束行为 |
| | | //if (FlowCSN.WORK_ORDER == CurPosition.WorkBatch.WO.ORDER_NO || MoPickList.Any(q => q.Code == FlowCSN.ITEM_CODE && q.SuggestedBatch == FlowCSN.WORK_ORDER)) |
| | | //{ |
| | | // FlowCSN.WORK_ORDER = CurPosition.WorkBatch.WO.ORDER_NO; |
| | | // FlowCSN.ITEM_CODE = CurPosition.WorkBatch.WO.ITEM_CODE; |
| | | // action.Data.Data = new |
| | | // { |
| | | // NeedPrint = false, |
| | | // NeedScan = false, |
| | | // Label = "", |
| | | // }; |
| | | // action = End(input); |
| | | //} |
| | | //else |
| | | //{ |
| | | // action.Data.Data = new |
| | | // { |
| | | // NeedPrint = false, |
| | | // NeedScan = false, |
| | | // Label = "", |
| | | // }; |
| | | // CurStep.Message = Biz.L("投料错误"); |
| | | // CurStep.Status = StepStatus.Error; |
| | | // action.Data.ShortMsg = new("投料错误", ShortMessage.Types.Failed); |
| | | // action.IsSuccessed = false; |
| | | // //action.LocaleMsg = new($"产品的客户条码[{0}]属于工单[{1}]不适用于当前工单[{2}]的生产"); |
| | | // action.LocaleMsg = new("MES.WorkAction.ThreeInOne.InputSnOrderError", FlowCSN.CUST_SN, FlowCSN.WORK_ORDER, CurPosition.WorkBatch.WO.ORDER_NO); |
| | | // //如果行为设置为出错需要重置工序操作 |
| | | // if (NodeAct.NEED_RESET == "Y") |
| | | // { |
| | | // CurPosition.ResetNode(); |
| | | // } |
| | | // return action; |
| | | //} |
| | | } |
| | | |
| | | //如果返回成功则认为当前行为可以开始执行,否则返回失败 |
| | |
| | | public ApiAction<SubmitOutput> Submit(SubmitInput input) |
| | | { |
| | | var action = new ApiAction<SubmitOutput>(new SubmitOutput()); |
| | | var csn = input.Data; |
| | | |
| | | CurCSN = Biz.Db.Queryable<MES_CUST_SN>().Where(q => q.CUST_SN == input.Data).First() ?? new() |
| | | { |
| | | CUST_SN = input.Data, |
| | | }; |
| | | //查询是否存在已导入的客户条码 |
| | | CustCSN = Biz.Db.Queryable<MES_CUST_SN>().Where(q => q.CUST_SN == input.Data).First(); |
| | | |
| | | var isOK = true; |
| | | //客户条码已绑定其他厂内条码 |
| | | if (!CurCSN.FLOW_SN.IsNullOrEmpty() && CurCSN.FLOW_SN != CurPosition.CurWipSNs.First().SN) |
| | | if (!CustCSN.IsNullOrEmpty() && !CustCSN.FLOW_SN.IsNullOrEmpty() && CustCSN.FLOW_SN != FlowCSN.FLOW_SN) |
| | | { |
| | | CurStep.SetStatusMessage(StepStatus.Error, Biz.L("客户标签绑定失败")); |
| | | action.Data.ShortMsg = new("客户标签绑定失败", ShortMessage.Types.Failed); |
| | | CurStep.SetStatusMessage(StepStatus.Error, Biz.L("请扫描正确的客户标签")); |
| | | action.Data.ShortMsg = new("请扫描正确的客户标签", ShortMessage.Types.Failed); |
| | | action.IsSuccessed = isOK = false; |
| | | //action.LocaleMsg = new($"厂内条码[{0}]绑定客户条码[{1}]失败,客户条码已绑定厂内条码[{2}]"); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.BindingOtherSN", CurPosition.CurWipSNs.First().SN, CurCSN.CUST_SN, CurCSN.FLOW_SN); |
| | | //action.LocaleMsg = new($"厂内条码[{0}]绑定客户条码[{1}]失败,客户条码已绑定厂内条码[{2}],请扫描正确的客户标签"); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.BindingOtherSN", CurPosition.CurWipSNs.First().SN, CustCSN.CUST_SN, CustCSN.FLOW_SN); |
| | | } |
| | | //客户条码不属于当前工单的客户 |
| | | if (CurCSN.CUST_CODE.IsNullOrEmpty(CurPosition.WorkBatch.WO.CUST_CODE) != CurPosition.WorkBatch.WO.CUST_CODE) |
| | | if (!CustCSN.IsNullOrEmpty() && CustCSN.CUST_CODE.IsNullOrEmpty(CurPosition.WorkBatch.WO.CUST_CODE) != CurPosition.WorkBatch.WO.CUST_CODE) |
| | | { |
| | | CurStep.SetStatusMessage(StepStatus.Error, Biz.L("客户标签绑定失败")); |
| | | action.Data.ShortMsg = new("客户标签绑定失败", ShortMessage.Types.Failed); |
| | | CurStep.SetStatusMessage(StepStatus.Error, Biz.L("请扫描正确的客户标签")); |
| | | action.Data.ShortMsg = new("请扫描正确的客户标签", ShortMessage.Types.Failed); |
| | | action.IsSuccessed = isOK = false; |
| | | //action.LocaleMsg = new($"客户条码[{0}]属于客户[{1}],与当前工单的客户[{2}]不一致"); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.NotSameCustomer", CurCSN.CUST_SN, CurCSN.CUST_CODE, CurPosition.WorkBatch.WO.CUST_CODE); |
| | | //action.LocaleMsg = new($"客户条码[{0}]属于客户[{1}],与当前工单的客户[{2}]不一致,请扫描正确的客户标签"); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.NotSameCustomer", CustCSN.CUST_SN, CustCSN.CUST_CODE, CurPosition.WorkBatch.WO.CUST_CODE); |
| | | } |
| | | //验证产品客户标签条码规则 |
| | | if (!CustInfo.RULE_CODE.IsNullOrEmpty() && !Biz.CodeRule[CustInfo.RULE_CODE].IsNullOrEmpty()) |
| | | { |
| | | var result = Biz.CodeRule[CustInfo.RULE_CODE].Verify(CurCSN.CUST_SN); |
| | | var result = Biz.CodeRule[CustInfo.RULE_CODE].Verify(CustCSN.CUST_SN); |
| | | if (!result.IsSuccessed) |
| | | { |
| | | CurStep.SetStatusMessage(StepStatus.Error, Biz.L("客户标签绑定失败")); |
| | | action.Data.ShortMsg = new("客户标签绑定失败", ShortMessage.Types.Failed); |
| | | CurStep.SetStatusMessage(StepStatus.Error, Biz.L("请扫描正确的客户标签")); |
| | | action.Data.ShortMsg = new("请扫描正确的客户标签", ShortMessage.Types.Failed); |
| | | action.IsSuccessed = isOK = false; |
| | | //action.LocaleMsg = new Locale($"标签条码[{0}]未通过客户标签规则[{1}]验证"); |
| | | action.LocaleMsg = new Locale("MES.WorkAction.ThreeInOne.CustSnVerifyError", CurCSN.CUST_SN, CustInfo.RULE_CODE); |
| | | //action.LocaleMsg = new Locale($"标签条码[{0}]未通过客户标签规则[{1}]验证,请扫描正确的客户标签"); |
| | | action.LocaleMsg = new Locale("MES.WorkAction.ThreeInOne.CustSnVerifyError", CustCSN.CUST_SN, CustInfo.RULE_CODE); |
| | | } |
| | | } |
| | | |
| | | //验证通过则保存 |
| | | if (isOK) |
| | | { |
| | | CurCSN.CUST_CODE = CurPosition.WorkBatch.WO.CUST_CODE; |
| | | CurCSN.FLOW_SN = CurPosition.CurWipSNs.First().SN; |
| | | CurCSN.WORK_ORDER = CurPosition.WorkBatch.WO.ORDER_NO; |
| | | CurCSN.ITEM_CODE = CurPosition.WorkBatch.WO.ITEM_CODE; |
| | | FlowCSN.CUST_SN = input.Data; |
| | | action = End(input); |
| | | } |
| | | else |
| | |
| | | { |
| | | var action = new ApiAction<SubmitOutput>(new SubmitOutput()); |
| | | |
| | | //更新厂内流程码 |
| | | FlowCSN.CUST_CODE = CurPosition.WorkBatch.WO.CUST_CODE; |
| | | FlowCSN.PKG_ORDER = CurPosition.WorkBatch.WO.ORDER_NO; |
| | | FlowCSN.PROD_CODE = CurPosition.WorkBatch.WO.ITEM_CODE; |
| | | |
| | | //记录行为操作记录 |
| | | var wipActs = new List<MES_WIP_ACT>(); |
| | | var woSns = new List<BIZ_MES_WO_SN>(); |
| | |
| | | foreach (var wipSn in CurPosition.CurWipSNs) |
| | | { |
| | | //更新在制品信息SN为客户条码 |
| | | wipSn.SN = CurCSN.CUST_SN; |
| | | wipSn.SN = FlowCSN.CUST_SN; |
| | | //更新在制品信息历史得SN为客户条码 |
| | | var his = CurPosition.CurWipSNHiss.First(q => q.WIP_ID == wipSn.ID); |
| | | his.SN = CurCSN.CUST_SN; |
| | | his.SN = FlowCSN.CUST_SN; |
| | | snHiss.Add(his); |
| | | //更新工单条码表的 |
| | | var woSn = CurPosition.WorkBatch.WoSNs.First(q => q.WIP_ID == wipSn.ID); |
| | | woSn.SN = CurCSN.CUST_SN; |
| | | woSn.SN = FlowCSN.CUST_SN; |
| | | woSns.Add(woSn); |
| | | var wipAct = new MES_WIP_ACT() |
| | | { |
| | |
| | | ACT_VALUE_1 = Label.LABEL_CODE, |
| | | ACT_VALUE_2 = Label.Variables.ToJson(), |
| | | ACT_RESULT = "Y", |
| | | TRACE_INFO = $"厂内条码[{0}]已绑定客户条码[{1}]成功", |
| | | ELAPSED_TIME = CurStep.GetElapsedTime().TotalMilliseconds.ToInt64(), |
| | | TRACE_INFO = $"厂内条码[{FlowCSN.FLOW_SN}]绑定客户条码[{FlowCSN.CUST_SN}]成功", |
| | | }; |
| | | wipActs.Add(wipAct); |
| | | } |
| | |
| | | var _snHiss = snHiss.Clone(); |
| | | var _woSns = woSns.Clone(); |
| | | var _wipActs = wipActs.Clone(); |
| | | var _CurCSN = CurCSN.Clone(); |
| | | var _FlowCSN = FlowCSN.Clone(); |
| | | var _CustCSN = CustCSN.Clone(); |
| | | //保存数据 |
| | | CurStep.DBSubmitAction = () => |
| | | { |
| | |
| | | db.Storageable(_snHiss, CurPosition.UserCode).ExecuteCommand(); |
| | | db.Storageable(_woSns, CurPosition.UserCode).ExecuteCommand(); |
| | | db.Storageable(_wipActs, CurPosition.UserCode).ExecuteCommand(); |
| | | db.Storageable(_CurCSN, CurPosition.UserCode).ExecuteCommand(); |
| | | db.Storageable(_FlowCSN, CurPosition.UserCode).ExecuteCommand(); |
| | | if (!_CustCSN.IsNullOrEmpty()) |
| | | { |
| | | db.Deleteable(_CustCSN).ExecuteCommand(); |
| | | } |
| | | }; |
| | | |
| | | IsFinished = true; |
| | | CurStep.Message = Biz.L("客户条码已绑定"); |
| | | CurStep.Message = Biz.L("客户条码绑定成功"); |
| | | CurStep.Status = StepStatus.Finished; |
| | | action.Data.ShortMsg = new("客户条码已绑定", ShortMessage.Types.Success); |
| | | action.Data.ShortMsg = new("客户条码绑定成功", ShortMessage.Types.Success); |
| | | //action.LocaleMsg = new($"厂内条码[{0}]已绑定客户条码[{1}]完成", Label.LABEL_NAME); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.BindingComplete", CurCSN.FLOW_SN, CurCSN.CUST_SN); |
| | | action.LocaleMsg = new("MES.WorkAction.ThreeInOne.BindingComplete", FlowCSN.FLOW_SN, FlowCSN.CUST_SN); |
| | | return action; |
| | | } |
| | | |