Commit ac5299bf authored by tank.li@mushiny.com's avatar tank.li@mushiny.com

启动+当前任务信息

parent a4d2f116
...@@ -9,6 +9,16 @@ public class StorageLocation implements java.io.Serializable{ ...@@ -9,6 +9,16 @@ public class StorageLocation implements java.io.Serializable{
private String podFace; private String podFace;
private String locate; private String locate;
private String storageName;
public String getStorageName() {
return storageName;
}
public void setStorageName(String storageName) {
this.storageName = storageName;
}
private String pName; private String pName;
public String getpName() { public String getpName() {
......
...@@ -289,6 +289,7 @@ public class InboundService { ...@@ -289,6 +289,7 @@ public class InboundService {
baseBpo.addKV("POD_ID",storageLocation.getPodId()); baseBpo.addKV("POD_ID",storageLocation.getPodId());
baseBpo.addKV("SKUID",skuId); baseBpo.addKV("SKUID",skuId);
baseBpo.addKV("POD_FACE",storageLocation.getPodFace()); baseBpo.addKV("POD_FACE",storageLocation.getPodFace());
baseBpo.addKV("STORAGENAME",storageLocation.getLocate());
baseBpo.addKV("POD_LOCATE",storageLocation.getLocate()); baseBpo.addKV("POD_LOCATE",storageLocation.getLocate());
baseBpo.addKV("WORKSTATION_ID",stationName); baseBpo.addKV("WORKSTATION_ID",stationName);
baseBpo.addKV("PODINDEX",storageLocation.getPodIndex()); baseBpo.addKV("PODINDEX",storageLocation.getPodIndex());
...@@ -431,6 +432,7 @@ public class InboundService { ...@@ -431,6 +432,7 @@ public class InboundService {
storageLocation.setLocate(locate); storageLocation.setLocate(locate);
storageLocation.setPodFace(pName.substring(8,9)); storageLocation.setPodFace(pName.substring(8,9));
storageLocation.setPodId(podId); storageLocation.setPodId(podId);
storageLocation.setStorageName(pName);
storageLocation.setPodIndex(Integer.parseInt(pName.substring(1,8))); storageLocation.setPodIndex(Integer.parseInt(pName.substring(1,8)));
storageLocation.setpName(pName); storageLocation.setpName(pName);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment