| | |
| | | action.IsSuccessed = false; |
| | | //action.LocaleMsg = Biz.L("条码为非法条码"); |
| | | action.LocaleMsg = Biz.L("WMS.WmsItem.Barcode.IllegalFailure", input.SN); |
| | | return action; |
| | | return SetOutPutMqttMsg(action, input.Locale); ; |
| | | } |
| | | |
| | | if (barcode.Type == Barcode.Types.OuterPackage) |
| | |
| | | action.IsSuccessed = false; |
| | | //action.LocaleMsg = Biz.L("ASN单中不存在条码[{0}]"); |
| | | action.LocaleMsg = Biz.L("WMS.Count_BIZ_U9_ASN.SnNotExists", input.SN); |
| | | return action; |
| | | return SetOutPutMqttMsg(action, input.Locale); ; |
| | | } |
| | | if (CurSn.First().AUTH_ORG != input.AuthOption.CurOrg) |
| | | { |
| | | action.IsSuccessed = false; |
| | | //action.LocaleMsg = Biz.L($"条码所属组织[{0}]与当前登录组织[{1}]不一致,请重新选择组织"); |
| | | action.LocaleMsg = Biz.L("WMS.Count_BIZ_U9_ASN.OrgNotCorrect", CurSn.First().AUTH_ORG, input.AuthOption.CurOrg); |
| | | return action; |
| | | return SetOutPutMqttMsg(action, input.Locale); ; |
| | | } |
| | | //验证条码是否正确 |
| | | if (CurSn.First().STATUS > WMS_ITEM.STATUSs.Incoming.GetValue()) |
| | |
| | | action.IsSuccessed = false; |
| | | //action.LocaleMsg = Biz.L("状态[{0}]异常,请重新扫描"); |
| | | action.LocaleMsg = Biz.L("WMS.Default.ScanItem.StatusException", CurSn.First().STATUS.GetEnumDesc<WMS_ITEM.STATUSs>()); |
| | | return action; |
| | | return SetOutPutMqttMsg(action, input.Locale); ; |
| | | } |
| | | |
| | | //执行清点数据处理 |
| | |
| | | //action.CatchExceptionWithLog(ex, $"扫描条码[{0}]复核异常"); |
| | | action.CatchExceptionWithLog(ex, Biz.L("WMS.Default.ScanItem.ScanException", input.SN)); |
| | | } |
| | | return action; |
| | | return SetOutPutMqttMsg(action, input.Locale); |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | |
| | | //重置工序 |
| | | ResetScan(); |
| | | return action; |
| | | return SetOutPutMqttMsg(action, locale); ; |
| | | } |
| | | |
| | | /// <summary> |