Commit fc793851 authored by Allen Chen's avatar Allen Chen

commit

parent 0694c92e
...@@ -294,7 +294,7 @@ public class PddLocalController { ...@@ -294,7 +294,7 @@ public class PddLocalController {
//全部入库 //全部入库
logOrderEntity.setStatus(StatusEnum.FULLINBOUND.getCode()); logOrderEntity.setStatus(StatusEnum.FULLINBOUND.getCode());
}else { }else {
logOrderEntity.setStatus(StatusEnum.FULLINBOUND.getCode()); logOrderEntity.setStatus(StatusEnum.PARTINBOUND.getCode());
} }
logOrderImpl.updateById(logOrderEntity); logOrderImpl.updateById(logOrderEntity);
...@@ -404,16 +404,14 @@ public class PddLocalController { ...@@ -404,16 +404,14 @@ public class PddLocalController {
notifyRequest.setBizAction(action); notifyRequest.setBizAction(action);
notifyRequest.setExecuteTime(timeTool.getNowDate()); notifyRequest.setExecuteTime(timeTool.getNowDate());
notifyRequest.setTimeZone("UTC+8"); notifyRequest.setTimeZone("UTC+8");
notifyRequest.setBizActionDesc("开始拣货");
notifyRequest.setResult(new PddServiceConsoCoBizActionNotifyRequest.Result());
PddServiceConsoCoBizActionNotifyRequest.Result notifyResult = new PddServiceConsoCoBizActionNotifyRequest.Result();
notifyRequest.setBizActionDesc("开始拣货");
notifyRequest.getResult().setCode(inBoundRequest.getCode()); notifyRequest.getResult().setCode(inBoundRequest.getCode());
notifyRequest.getResult().setDesc(ErrorEnum.getByCode(inBoundRequest.getCode()).getDesc()); notifyRequest.getResult().setDesc(ErrorEnum.getByCode(inBoundRequest.getCode()).getDesc());
notifyRequest.getResult().setRemark(ErrorEnum.getByCode(inBoundRequest.getCode()).getDesc()); notifyRequest.getResult().setRemark(ErrorEnum.getByCode(inBoundRequest.getCode()).getDesc());
notifyRequest.setResult(notifyResult);
log.info("derelictionRequest:{}", JSON.toJSONString(notifyRequest)); log.info("derelictionRequest:{}", JSON.toJSONString(notifyRequest));
JYBaseRequestModel requestModel = new JYBaseRequestModel(); JYBaseRequestModel requestModel = new JYBaseRequestModel();
......
...@@ -7,4 +7,6 @@ import org.ta.pddserver.model.common.PageTool; ...@@ -7,4 +7,6 @@ import org.ta.pddserver.model.common.PageTool;
public class CollectOrderListRequest extends PageTool { public class CollectOrderListRequest extends PageTool {
private String orderCode; private String orderCode;
private int status;
} }
...@@ -25,7 +25,7 @@ public class InBoundRequest { ...@@ -25,7 +25,7 @@ public class InBoundRequest {
private String action; private String action;
private int code; private Integer code;
private String goodsType; private String goodsType;
} }
...@@ -9,7 +9,7 @@ public enum StatusEnum { ...@@ -9,7 +9,7 @@ public enum StatusEnum {
INBOUND(20, "入库"), INBOUND(20, "入库"),
PARTINBOUND(21, "部分入库"), PARTINBOUND(21, "部分入库"),
FULLINBOUND(22, "全部入库"), FULLINBOUND(22, "全部入库"),
BOUNDERROR(22, "入库异常"), BOUNDERROR(23, "入库异常"),
UNPACK(30, "通知拆包"), UNPACK(30, "通知拆包"),
UNPACKBEGINPICK(31, "开始拣货"), UNPACKBEGINPICK(31, "开始拣货"),
UNPACKFINISHPICK(32, "拣货完成"), UNPACKFINISHPICK(32, "拣货完成"),
......
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