Commit 10831937 sunke

料仓仓位名称改为6位,每个字段占两位(前补0)

错误信息加编号
1 个父辈 2d7593eb
...@@ -252,6 +252,15 @@ public class ServiceHandle { ...@@ -252,6 +252,15 @@ public class ServiceHandle {
middle = middle.substring(middle.length() -1); middle = middle.substring(middle.length() -1);
String first = infos[infos.length - 3]; String first = infos[infos.length - 3];
first = first.substring(first.length() -1); first = first.substring(first.length() -1);
if(first.length()==1){
first = "0"+first;
}
if(middle.length() == 1){
middle = "0" + middle;
}
if(last.length() == 1){
last = "0" + last;
}
String depot = "T" + cid + "." + first + middle + last; String depot = "T" + cid + "." + first + middle + last;
data.Depot = depot; data.Depot = depot;
} }
......
...@@ -48,7 +48,7 @@ workOrder.workOrder=Work Order ...@@ -48,7 +48,7 @@ workOrder.workOrder=Work Order
workOrder.name=Order Number workOrder.name=Order Number
workOrder.date=Date workOrder.date=Date
workOrder.amount=Quantity workOrder.amount=Quantity
workOrder.error.amount=Work Order Qty cannot be 0 workOrder.error.amount=[1001]Work Order Qty cannot be 0
checkOut.componentName=Component Name checkOut.componentName=Component Name
checkOut.pos=Location checkOut.pos=Location
...@@ -79,10 +79,10 @@ component.saveSuccess=Component Saved ...@@ -79,10 +79,10 @@ component.saveSuccess=Component Saved
component.deleteSuccess=Component Deleted component.deleteSuccess=Component Deleted
component.name.empty=Name is required component.name.empty=Name is required
component.partNumber.empty=Part Number is required component.partNumber.empty=Part Number is required
component.error.bomUsed=You cannot delete the component in use with BOM component.error.bomUsed=[1002]You cannot delete the component in use with BOM
component.error.notExist=Component {0} does not exist component.error.notExist=[1003]Component {0} does not exist
component.error.notFound=Component cannot be found component.error.notFound=[1004]Component cannot be found
component.smdAlarmValue=AMD Alarm component.smdAlarmValue=[1005]AMD Alarm
component.validDay=Valid Days component.validDay=Valid Days
component.generateBarcode=Generate Barcode component.generateBarcode=Generate Barcode
...@@ -101,14 +101,14 @@ barcode.expireDate=Expiration Date ...@@ -101,14 +101,14 @@ barcode.expireDate=Expiration Date
barcode.saveSuccess=Barcode Saved barcode.saveSuccess=Barcode Saved
barcode.deleteSuccess=Barcode Deleted barcode.deleteSuccess=Barcode Deleted
barcode.storage.input=input barcode please barcode.storage.input=input barcode please
barcode.error.unique=Barcode [{0}] already occupied barcode.error.unique=[1006]Barcode [{0}] already occupied
barcode.error.empty=Barcode is empty, please check information input barcode.error.empty=[1007]Barcode is empty, please check information input
barcode.error.partNumber.empty=No component ties to {0} barcode.error.partNumber.empty=[1008]No component ties to {0}
barcode.error.amount.negative=The quantity of component ties to {0} need to more than 0 barcode.error.amount.negative=[1009]The quantity of component ties to {0} need to more than 0
barcode.error.component.notExist=No component ties to {0} please check\u3002 barcode.error.component.notExist=[1010]No component ties to {0} please check\u3002
barcode.error.notExist={0} does not exist barcode.error.notExist=[1011]{0} does not exist
barcode.error.inStorage={0} in the storage barcode.error.inStorage=[1012]{0} in the storage
barcode.error.slotExist=Component is not in the storage barcode.error.slotExist=[1013]Component is not in the storage
barcode.memo=Memo barcode.memo=Memo
storage.search.subtitle=Storage Search storage.search.subtitle=Storage Search
...@@ -166,13 +166,13 @@ storagePos.layer=Slot ...@@ -166,13 +166,13 @@ storagePos.layer=Slot
storagePos.update=Please update the location information storagePos.update=Please update the location information
storagePos.saveSuccess=Location information Saved storagePos.saveSuccess=Location information Saved
storage.saveSuccess=Storage Information Saved storage.saveSuccess=Storage Information Saved
storage.error.notExist=Storage does not exist storage.error.notExist=[1014]Storage does not exist
storage.error.unique=Storage name already existed storage.error.unique=[1015]Storage name already existed
stroage.error.merge=Shelf location can not merge. stroage.error.merge=[1042]Shelf location can not merge.
storage.error.full=Intended Storage is full please transfer to another one. storage.error.full=[1016]Intended Storage is full please transfer to another one.
storage.error.cidUnique=Storage terminal name needto be unique storage.error.cidUnique=[1017]Storage terminal name needto be unique
errors.upload.fileNotExist=The uploaed file does not exist, please try again. errors.upload.fileNotExist=[1018]The uploaed file does not exist, please try again.
button.add=Create button.add=Create
button.return=Return button.return=Return
...@@ -206,7 +206,7 @@ authority.feeder.view=Work Order View ...@@ -206,7 +206,7 @@ authority.feeder.view=Work Order View
authority.valuable.out=Precious Material Retrieval authority.valuable.out=Precious Material Retrieval
authority.dataLog=Running Info. authority.dataLog=Running Info.
error.save=Error occurred,please try again. error.save=[1019]Error occurred,please try again.
role.search.subtitle=Role List role.search.subtitle=Role List
role.update.subtitle=Role Detail role.update.subtitle=Role Detail
...@@ -285,17 +285,17 @@ cabinet.exit=Log out ...@@ -285,17 +285,17 @@ cabinet.exit=Log out
cabinet.pos=Current Pos cabinet.pos=Current Pos
cabinet.in=\ Put In cabinet.in=\ Put In
cabinet.out=Check Out cabinet.out=Check Out
cabinet.error.validOp=Can not open the door cabinet.error.validOp=[1021]Can not open the door
cabinet.error.openMoreDoor=Can open olny one door cabinet.error.openMoreDoor=[1022]Can open olny one door
cabinet.error.noCard=No Auth cabinet.error.noCard=[1023]No Auth
cabinet.error.posError=Door not found cabinet.error.posError=[1024]Door not found
cabinet.error.noAuth=No Auth cabinet.error.noAuth=[1025]No Auth
cabinet.error.noCode=Barcode is not exist cabinet.error.noCode=[1026]Barcode is not exist
cabinet.error.noPos=Position is not exist cabinet.error.noPos=[1027]Position is not exist
cabinet.msg.closeDoor=Operation will be finished after closing the door cabinet.msg.closeDoor=Operation will be finished after closing the door
cabinet.msg.finish=Operation completed cabinet.msg.finish=Operation completed
cabinet.error.wrongPos=The component is not in this position. cabinet.error.wrongPos=[1032]The component is not in this position.
cabinet.error.noOp=No operation during door opening period cabinet.error.noOp=[1033]No operation during door opening period
op.1=Material Receiving op.1=Material Receiving
op.2=Material Retrieval op.2=Material Retrieval
...@@ -318,18 +318,18 @@ authority.stockIn.more=Material Storage Limit ...@@ -318,18 +318,18 @@ authority.stockIn.more=Material Storage Limit
chart.showType.YEAR=YEAR chart.showType.YEAR=YEAR
chart.showType.MONTH=MONTH chart.showType.MONTH=MONTH
chart.showType.DAY=DAY chart.showType.DAY=DAY
alarm.humidity.msg=Humidity\: {0} out of range [{1}-{2}] alarm.humidity.msg=[1028]Humidity\: {0} out of range [{1}-{2}]
alarm.temperature.msg=Temperature\: {0} out of range [{1}-{2}] alarm.temperature.msg=[1029]Temperature\: {0} out of range [{1}-{2}]
alarm.store.msg={0} inventory [{1}] is out of range [{2}-{3}] alarm.store.msg=[1034]{0} inventory [{1}] is out of range [{2}-{3}]
alarm.store.title=Inventory Alarm alarm.store.title=[1035]Inventory Alarm
batch.btn.singleOut=Single Out batch.btn.singleOut=Single Out
batch.btn.batchOut=Batch Out batch.btn.batchOut=Batch Out
batch.btn.singleIn=Single In batch.btn.singleIn=Single In
batch.btn.closeDoor=Close Door batch.btn.closeDoor=Close Door
alarm.inaction.title=Inaction Alarm alarm.inaction.title=[1036]Inaction Alarm
alarm.inaction.msg=The amount of inaction material {0} days ago was [{1}] alarm.inaction.msg=[1037]The amount of inaction material {0} days ago was [{1}]
alarm.expire.title=Expire Alarm alarm.expire.title=[1038]Expire Alarm
alarm.expire.msg=The amount of expire material is [{0}] alarm.expire.msg=[1039]The amount of expire material is [{0}]
client.inSuddenStop=Emergency Stop client.inSuddenStop=Emergency Stop
...@@ -338,10 +338,10 @@ client.PreConnectFail=Startup failure\uFF1Apress Axis connect failed. ...@@ -338,10 +338,10 @@ client.PreConnectFail=Startup failure\uFF1Apress Axis connect failed.
client.CloseError=Lock failed\uFF1Athe put in device is not closed. client.CloseError=Lock failed\uFF1Athe put in device is not closed.
client.startFail=Startup failure: emergency stop is not opened client.startFail=Startup failure: emergency stop is not opened
client.startFailAir=Startup failure: no air pressure signal client.startFailAir=Startup failure: no air pressure signal
client.InoutAlarm=The in out axis is alarm! client.InoutAlarm=[1030]The in out axis is alarm!
client.OpenAxisFail=Failed to open axis {0} client.OpenAxisFail=Failed to open axis {0}
client.AutoReset=Resetting client.AutoReset=Resetting
client.AxisAlarm=Motion axis {0} alarm client.AxisAlarm=[1031]Motion axis {0} alarm
client.OutStoreError=Providing format error{0} client.OutStoreError=Providing format error{0}
client.WaitSingleTimeOut=Wait signal {0}={1} timeout client.WaitSingleTimeOut=Wait signal {0}={1} timeout
client.AxisHomeMoveAlarm=The movement {0} axis {1} receives the origin completion signal, the current position [{2}], the error is too large client.AxisHomeMoveAlarm=The movement {0} axis {1} receives the origin completion signal, the current position [{2}], the error is too large
...@@ -379,9 +379,9 @@ shelf.msg.notFound=Shelf is not found. ...@@ -379,9 +379,9 @@ shelf.msg.notFound=Shelf is not found.
shelf.msg.outOk=Please take out the material from the location [{0}] shelf.msg.outOk=Please take out the material from the location [{0}]
shelf.msg.outConfirm=Delivery confirmation from [{0}] succeeded. shelf.msg.outConfirm=Delivery confirmation from [{0}] succeeded.
shelf.msg.noTask=Failed\: the material is in [{0}], but no task for it. shelf.msg.noTask=Failed\: the material is in [{0}], but no task for it.
shelf.msg.outError=No material is found. shelf.msg.outError=[1040]No material is found.
shelf.msg.inOk=Please put the material in the location [{0}] shelf.msg.inOk=Please put the material in the location [{0}]
shelf.msg.inError=No suitable location for [{0}] is found. shelf.msg.inError=[1041]No suitable location for [{0}] is found.
order.out.set=set of materials order.out.set=set of materials
order.out.surplus=surplus material order.out.surplus=surplus material
...@@ -405,27 +405,27 @@ storage.virtual.pnEmpty=Limited Partnumber is required. ...@@ -405,27 +405,27 @@ storage.virtual.pnEmpty=Limited Partnumber is required.
storage.virtual.numEmpty=Reel Count is required. storage.virtual.numEmpty=Reel Count is required.
storage.virtual.numErrory=Reel Count must be a number that is greater than 0. storage.virtual.numErrory=Reel Count must be a number that is greater than 0.
barcode.error.noRi=Barcode rule must has RI and PN fields.
barcode.error.notFound=Barcode is not found.
error.barcode.inQueue=Failed\: The barcode [{0}] is in queue.
error.pos.inQueue=Failed\: The location [{0}] is in queue.
error.barcode.empty=No barcode is scanned.
error.barcode.many=more than one valid barcodes were found.
error.storage.unavailable=The storage is unavailable.
error.storage.noPos=There is no availble position of [{0}]
error.barcode.wrongSize=The reel has wrong size [{0}]
error.barcode.executing=The task of barcode [{0}] is executing.
error.pos.notExist=The location [{0}] in the storage is not exist.
error.pos.hasReel=There is already one reel in the location [{0}].
error.pos.wrong=The location [{0}] does not match the storage [{1}]
error.pos.sizeNotMatch=The size[{0}] of the reel is not matching the size [{2}]of the location {1}
error.barcode.invalid=The barcode [{0}] is invalid.
error.barcode.expired=The reel is expired.
error.barcode.wrongQty=The quantity [{1}] of the reel[{0}] is invalid.
error.barcode.inStorage=The reel [{0}] is already in the location [2] of the stroage [1]
error.barcode.noRule=There is no rule of the barcode is setted.
error.barcode.wrongLength=The code string [{0}] has wrong length.
error.barcode.noField=There is no {0} field in the code string.
error.barcode.wrongPn=The partnumber is wrong
error.barcode.pnNotExist=x Component {0} does not exist
error.barcode.nocode=No barcode was found.
\ No newline at end of file \ No newline at end of file
barcode.error.noRi=[1043]Barcode rule must has RI and PN fields.
barcode.error.notFound=[1044]Barcode is not found.
error.barcode.inQueue=[1045]Failed\: The barcode [{0}] is in queue.
error.pos.inQueue=[1046]Failed\: The location [{0}] is in queue.
error.barcode.empty=[1047]No barcode is scanned.
error.barcode.many=[1048]more than one valid barcodes were found.
error.storage.unavailable=[1049]The storage is unavailable.
error.storage.noPos=[1050]There is no availble position of [{0}]
error.barcode.wrongSize=[1051]The reel has wrong size [{0}]
error.barcode.executing=[1052]The task of barcode [{0}] is executing.
error.pos.notExist=[1053]The location [{0}] in the storage is not exist.
error.pos.hasReel=[1054]There is already one reel in the location [{0}].
error.pos.wrong=[1055]The location [{0}] does not match the storage [{1}]
error.pos.sizeNotMatch=[1056]The size[{0}] of the reel is not matching the size [{2}]of the location {1}
error.barcode.invalid=[1057]The barcode [{0}] is invalid.
error.barcode.expired=[1058]The reel is expired.
error.barcode.wrongQty=[1059]The quantity [{1}] of the reel[{0}] is invalid.
error.barcode.inStorage=[1060]The reel [{0}] is already in the location [2] of the stroage [1]
error.barcode.noRule=[1061]There is no rule of the barcode is setted.
error.barcode.wrongLength=[1062]The code string [{0}] has wrong length.
error.barcode.noField=[1063]There is no {0} field in the code string.
error.barcode.wrongPn=[1064]The partnumber is wrong
error.barcode.pnNotExist=[1065]x Component {0} does not exist
error.barcode.nocode=[1066]No barcode was found.
...@@ -48,7 +48,7 @@ workOrder.workOrder=Work Order ...@@ -48,7 +48,7 @@ workOrder.workOrder=Work Order
workOrder.name=Order Number workOrder.name=Order Number
workOrder.date=Date workOrder.date=Date
workOrder.amount=Quantity workOrder.amount=Quantity
workOrder.error.amount=Work Order Qty cannot be 0 workOrder.error.amount=[1001]Work Order Qty cannot be 0
checkOut.componentName=Component Name checkOut.componentName=Component Name
checkOut.pos=Location checkOut.pos=Location
...@@ -79,10 +79,10 @@ component.saveSuccess=Component Saved ...@@ -79,10 +79,10 @@ component.saveSuccess=Component Saved
component.deleteSuccess=Component Deleted component.deleteSuccess=Component Deleted
component.name.empty=Name is required component.name.empty=Name is required
component.partNumber.empty=Part Number is required component.partNumber.empty=Part Number is required
component.error.bomUsed=You cannot delete the component in use with BOM component.error.bomUsed=[1002]You cannot delete the component in use with BOM
component.error.notExist=Component {0} does not exist component.error.notExist=[1003]Component {0} does not exist
component.error.notFound=Component cannot be found component.error.notFound=[1004]Component cannot be found
component.smdAlarmValue=AMD Alarm component.smdAlarmValue=[1005]AMD Alarm
component.validDay=Valid Days component.validDay=Valid Days
component.generateBarcode=Generate Barcode component.generateBarcode=Generate Barcode
...@@ -101,14 +101,14 @@ barcode.expireDate=Expiration Date ...@@ -101,14 +101,14 @@ barcode.expireDate=Expiration Date
barcode.saveSuccess=Barcode Saved barcode.saveSuccess=Barcode Saved
barcode.deleteSuccess=Barcode Deleted barcode.deleteSuccess=Barcode Deleted
barcode.storage.input=input barcode please barcode.storage.input=input barcode please
barcode.error.unique=Barcode [{0}] already occupied barcode.error.unique=[1006]Barcode [{0}] already occupied
barcode.error.empty=Barcode is empty, please check information input barcode.error.empty=[1007]Barcode is empty, please check information input
barcode.error.partNumber.empty=No component ties to {0} barcode.error.partNumber.empty=[1008]No component ties to {0}
barcode.error.amount.negative=The quantity of component ties to {0} need to more than 0 barcode.error.amount.negative=[1009]The quantity of component ties to {0} need to more than 0
barcode.error.component.notExist=No component ties to {0} please check\u3002 barcode.error.component.notExist=[1010]No component ties to {0} please check\u3002
barcode.error.notExist={0} does not exist barcode.error.notExist=[1011]{0} does not exist
barcode.error.inStorage={0} in the storage barcode.error.inStorage=[1012]{0} in the storage
barcode.error.slotExist=Component is not in the storage barcode.error.slotExist=[1013]Component is not in the storage
barcode.memo=Memo barcode.memo=Memo
storage.search.subtitle=Storage Search storage.search.subtitle=Storage Search
...@@ -166,13 +166,13 @@ storagePos.layer=Slot ...@@ -166,13 +166,13 @@ storagePos.layer=Slot
storagePos.update=Please update the location information storagePos.update=Please update the location information
storagePos.saveSuccess=Location information Saved storagePos.saveSuccess=Location information Saved
storage.saveSuccess=Storage Information Saved storage.saveSuccess=Storage Information Saved
storage.error.notExist=Storage does not exist storage.error.notExist=[1014]Storage does not exist
storage.error.unique=Storage name already existed storage.error.unique=[1015]Storage name already existed
stroage.error.merge=Shelf location can not merge. stroage.error.merge=[1042]Shelf location can not merge.
storage.error.full=Intended Storage is full please transfer to another one. storage.error.full=[1016]Intended Storage is full please transfer to another one.
storage.error.cidUnique=Storage terminal name needto be unique storage.error.cidUnique=[1017]Storage terminal name needto be unique
errors.upload.fileNotExist=The uploaed file does not exist, please try again. errors.upload.fileNotExist=[1018]The uploaed file does not exist, please try again.
button.add=Create button.add=Create
button.return=Return button.return=Return
...@@ -206,7 +206,7 @@ authority.feeder.view=Work Order View ...@@ -206,7 +206,7 @@ authority.feeder.view=Work Order View
authority.valuable.out=Precious Material Retrieval authority.valuable.out=Precious Material Retrieval
authority.dataLog=Running Info. authority.dataLog=Running Info.
error.save=Error occurred,please try again. error.save=[1019]Error occurred,please try again.
role.search.subtitle=Role List role.search.subtitle=Role List
role.update.subtitle=Role Detail role.update.subtitle=Role Detail
...@@ -285,17 +285,17 @@ cabinet.exit=Log out ...@@ -285,17 +285,17 @@ cabinet.exit=Log out
cabinet.pos=Current Pos cabinet.pos=Current Pos
cabinet.in=\ Put In cabinet.in=\ Put In
cabinet.out=Check Out cabinet.out=Check Out
cabinet.error.validOp=Can not open the door cabinet.error.validOp=[1021]Can not open the door
cabinet.error.openMoreDoor=Can open olny one door cabinet.error.openMoreDoor=[1022]Can open olny one door
cabinet.error.noCard=No Auth cabinet.error.noCard=[1023]No Auth
cabinet.error.posError=Door not found cabinet.error.posError=[1024]Door not found
cabinet.error.noAuth=No Auth cabinet.error.noAuth=[1025]No Auth
cabinet.error.noCode=Barcode is not exist cabinet.error.noCode=[1026]Barcode is not exist
cabinet.error.noPos=Position is not exist cabinet.error.noPos=[1027]Position is not exist
cabinet.msg.closeDoor=Operation will be finished after closing the door cabinet.msg.closeDoor=Operation will be finished after closing the door
cabinet.msg.finish=Operation completed cabinet.msg.finish=Operation completed
cabinet.error.wrongPos=The component is not in this position. cabinet.error.wrongPos=[1032]The component is not in this position.
cabinet.error.noOp=No operation during door opening period cabinet.error.noOp=[1033]No operation during door opening period
op.1=Material Receiving op.1=Material Receiving
op.2=Material Retrieval op.2=Material Retrieval
...@@ -318,18 +318,18 @@ authority.stockIn.more=Material Storage Limit ...@@ -318,18 +318,18 @@ authority.stockIn.more=Material Storage Limit
chart.showType.YEAR=YEAR chart.showType.YEAR=YEAR
chart.showType.MONTH=MONTH chart.showType.MONTH=MONTH
chart.showType.DAY=DAY chart.showType.DAY=DAY
alarm.humidity.msg=Humidity\: {0} out of range [{1}-{2}] alarm.humidity.msg=[1028]Humidity\: {0} out of range [{1}-{2}]
alarm.temperature.msg=Temperature\: {0} out of range [{1}-{2}] alarm.temperature.msg=[1029]Temperature\: {0} out of range [{1}-{2}]
alarm.store.msg={0} inventory [{1}] is out of range [{2}-{3}] alarm.store.msg=[1034]{0} inventory [{1}] is out of range [{2}-{3}]
alarm.store.title=Inventory Alarm alarm.store.title=[1035]Inventory Alarm
batch.btn.singleOut=Single Out batch.btn.singleOut=Single Out
batch.btn.batchOut=Batch Out batch.btn.batchOut=Batch Out
batch.btn.singleIn=Single In batch.btn.singleIn=Single In
batch.btn.closeDoor=Close Door batch.btn.closeDoor=Close Door
alarm.inaction.title=Inaction Alarm alarm.inaction.title=[1036]Inaction Alarm
alarm.inaction.msg=The amount of inaction material {0} days ago was [{1}] alarm.inaction.msg=[1037]The amount of inaction material {0} days ago was [{1}]
alarm.expire.title=Expire Alarm alarm.expire.title=[1038]Expire Alarm
alarm.expire.msg=The amount of expire material is [{0}] alarm.expire.msg=[1039]The amount of expire material is [{0}]
client.inSuddenStop=Emergency Stop client.inSuddenStop=Emergency Stop
...@@ -338,10 +338,10 @@ client.PreConnectFail=Startup failure\uFF1Apress Axis connect failed. ...@@ -338,10 +338,10 @@ client.PreConnectFail=Startup failure\uFF1Apress Axis connect failed.
client.CloseError=Lock failed\uFF1Athe put in device is not closed. client.CloseError=Lock failed\uFF1Athe put in device is not closed.
client.startFail=Startup failure: emergency stop is not opened client.startFail=Startup failure: emergency stop is not opened
client.startFailAir=Startup failure: no air pressure signal client.startFailAir=Startup failure: no air pressure signal
client.InoutAlarm=The in out axis is alarm! client.InoutAlarm=[1030]The in out axis is alarm!
client.OpenAxisFail=Failed to open axis {0} client.OpenAxisFail=Failed to open axis {0}
client.AutoReset=Resetting client.AutoReset=Resetting
client.AxisAlarm=Motion axis {0} alarm client.AxisAlarm=[1031]Motion axis {0} alarm
client.OutStoreError=Providing format error{0} client.OutStoreError=Providing format error{0}
client.WaitSingleTimeOut=Wait signal {0}={1} timeout client.WaitSingleTimeOut=Wait signal {0}={1} timeout
client.AxisHomeMoveAlarm=The movement {0} axis {1} receives the origin completion signal, the current position [{2}], the error is too large client.AxisHomeMoveAlarm=The movement {0} axis {1} receives the origin completion signal, the current position [{2}], the error is too large
...@@ -379,9 +379,9 @@ shelf.msg.notFound=Shelf is not found. ...@@ -379,9 +379,9 @@ shelf.msg.notFound=Shelf is not found.
shelf.msg.outOk=Please take out the material from the location [{0}] shelf.msg.outOk=Please take out the material from the location [{0}]
shelf.msg.outConfirm=Delivery confirmation from [{0}] succeeded. shelf.msg.outConfirm=Delivery confirmation from [{0}] succeeded.
shelf.msg.noTask=Failed\: the material is in [{0}], but no task for it. shelf.msg.noTask=Failed\: the material is in [{0}], but no task for it.
shelf.msg.outError=No material is found. shelf.msg.outError=[1040]No material is found.
shelf.msg.inOk=Please put the material in the location [{0}] shelf.msg.inOk=Please put the material in the location [{0}]
shelf.msg.inError=No suitable location for [{0}] is found. shelf.msg.inError=[1041]No suitable location for [{0}] is found.
order.out.set=set of materials order.out.set=set of materials
order.out.surplus=surplus material order.out.surplus=surplus material
...@@ -405,27 +405,27 @@ storage.virtual.pnEmpty=Limited Partnumber is required. ...@@ -405,27 +405,27 @@ storage.virtual.pnEmpty=Limited Partnumber is required.
storage.virtual.numEmpty=Reel Count is required. storage.virtual.numEmpty=Reel Count is required.
storage.virtual.numErrory=Reel Count must be a number that is greater than 0. storage.virtual.numErrory=Reel Count must be a number that is greater than 0.
barcode.error.noRi=Barcode rule must has RI and PN fields.
barcode.error.notFound=Barcode is not found.
error.barcode.inQueue=Failed\: The barcode [{0}] is in queue.
error.pos.inQueue=Failed\: The location [{0}] is in queue.
error.barcode.empty=No barcode is scanned.
error.barcode.many=more than one valid barcodes were found.
error.storage.unavailable=The storage is unavailable.
error.storage.noPos=There is no availble position of [{0}]
error.barcode.wrongSize=The reel has wrong size [{0}]
error.barcode.executing=The task of barcode [{0}] is executing.
error.pos.notExist=The location [{0}] in the storage is not exist.
error.pos.hasReel=There is already one reel in the location [{0}].
error.pos.wrong=The location [{0}] does not match the storage [{1}]
error.pos.sizeNotMatch=The size[{0}] of the reel is not matching the size [{2}]of the location {1}
error.barcode.invalid=The barcode [{0}] is invalid.
error.barcode.expired=The reel is expired.
error.barcode.wrongQty=The quantity [{1}] of the reel[{0}] is invalid.
error.barcode.inStorage=The reel [{0}] is already in the location [2] of the stroage [1]
error.barcode.noRule=There is no rule of the barcode is setted.
error.barcode.wrongLength=The code string [{0}] has wrong length.
error.barcode.noField=There is no {0} field in the code string.
error.barcode.wrongPn=The partnumber is wrong
error.barcode.pnNotExist=x Component {0} does not exist
error.barcode.nocode=No barcode was found
\ No newline at end of file \ No newline at end of file
barcode.error.noRi=[1043]Barcode rule must has RI and PN fields.
barcode.error.notFound=[1044]Barcode is not found.
error.barcode.inQueue=[1045]Failed\: The barcode [{0}] is in queue.
error.pos.inQueue=[1046]Failed\: The location [{0}] is in queue.
error.barcode.empty=[1047]No barcode is scanned.
error.barcode.many=[1048]more than one valid barcodes were found.
error.storage.unavailable=[1049]The storage is unavailable.
error.storage.noPos=[1050]There is no availble position of [{0}]
error.barcode.wrongSize=[1051]The reel has wrong size [{0}]
error.barcode.executing=[1052]The task of barcode [{0}] is executing.
error.pos.notExist=[1053]The location [{0}] in the storage is not exist.
error.pos.hasReel=[1054]There is already one reel in the location [{0}].
error.pos.wrong=[1055]The location [{0}] does not match the storage [{1}]
error.pos.sizeNotMatch=[1056]The size[{0}] of the reel is not matching the size [{2}]of the location {1}
error.barcode.invalid=[1057]The barcode [{0}] is invalid.
error.barcode.expired=[1058]The reel is expired.
error.barcode.wrongQty=[1059]The quantity [{1}] of the reel[{0}] is invalid.
error.barcode.inStorage=[1060]The reel [{0}] is already in the location [2] of the stroage [1]
error.barcode.noRule=[1061]There is no rule of the barcode is setted.
error.barcode.wrongLength=[1062]The code string [{0}] has wrong length.
error.barcode.noField=[1063]There is no {0} field in the code string.
error.barcode.wrongPn=[1064]The partnumber is wrong
error.barcode.pnNotExist=[1065]x Component {0} does not exist
error.barcode.nocode=[1066]No barcode was found.
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!