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

拣货任务完善,出库单与系统绑定 完成后反馈

parent 8acec5c8
...@@ -54,7 +54,7 @@ public class ICQAService { ...@@ -54,7 +54,7 @@ public class ICQAService {
Integer pod_toward = CommonUtils.parseInteger("TOWARD", data); Integer pod_toward = CommonUtils.parseInteger("TOWARD", data);
Integer pod_index = CommonUtils.parseInteger("POD_INDEX", data); Integer pod_index = CommonUtils.parseInteger("POD_INDEX", data);
Integer wsFace = CommonUtils.parseInteger("WORKING_FACE_ORIENTATION", data); Integer wsFace = CommonUtils.parseInteger("WORKING_FACE_ORIENTATION", data);
String podId = CommonUtils.parseString("ID", data); String podId = CommonUtils.parseString("POD_ID", data);
String face = InboundService.getFace(wsFace,pod_toward); String face = InboundService.getFace(wsFace,pod_toward);
/*`ID` varchar(255) NOT NULL, /*`ID` varchar(255) NOT NULL,
......
...@@ -372,6 +372,9 @@ public class InboundService { ...@@ -372,6 +372,9 @@ public class InboundService {
baseBpo2.addKV("POSITION_NO", j + 1); baseBpo2.addKV("POSITION_NO", j + 1);
baseBpo2.addKV("WAREHOUSE_ID", CommonUtils.parseString("WAREHOUSE_ID", map)); baseBpo2.addKV("WAREHOUSE_ID", CommonUtils.parseString("WAREHOUSE_ID", map));
baseBpo2.addKV("SECTION_ID", CommonUtils.parseString("SECTION_ID", map)); baseBpo2.addKV("SECTION_ID", CommonUtils.parseString("SECTION_ID", map));
//发送任务
//this.WcsAPI.sent
//发送任务结束
this.jdbcRepository.insertBusinessObject(baseBpo2); this.jdbcRepository.insertBusinessObject(baseBpo2);
}else{ }else{
Map data = tripPositions.get(0); Map data = tripPositions.get(0);
...@@ -527,12 +530,11 @@ public class InboundService { ...@@ -527,12 +530,11 @@ public class InboundService {
return dto; return dto;
} }
//MD_POD.ID, MD_POD.POD_INDEX, MD_POD.TOWARD, MD_WORKSTATION.WORKING_FACE_ORIENTATION
Map data = datas.get(0); Map data = datas.get(0);
Integer pod_toward = CommonUtils.parseInteger("TOWARD", data); Integer pod_toward = CommonUtils.parseInteger("TOWARD", data);
Integer pod_index = CommonUtils.parseInteger("POD_INDEX", data); Integer pod_index = CommonUtils.parseInteger("POD_INDEX", data);
Integer wsFace = CommonUtils.parseInteger("WORKING_FACE_ORIENTATION", data); Integer wsFace = CommonUtils.parseInteger("WORKING_FACE_ORIENTATION", data);
String podId = CommonUtils.parseString("ID", data); String podId = CommonUtils.parseString("POD_ID", data);
String face = getFace(wsFace,pod_toward); String face = getFace(wsFace,pod_toward);
/*`ID` varchar(255) NOT NULL, /*`ID` varchar(255) NOT NULL,
......
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