Commit 1d88386b authored by 332784038@qq.com's avatar 332784038@qq.com

海外仓申请详情值补充参数返回

parent 34304215
...@@ -84,6 +84,7 @@ public interface OrderCargoControlMapper extends AbstractMapper<OrderCargoContro ...@@ -84,6 +84,7 @@ public interface OrderCargoControlMapper extends AbstractMapper<OrderCargoContro
"o.parent_number, ", "o.parent_number, ",
"o.container_number, ", "o.container_number, ",
"o.marks, ", "o.marks, ",
"o.type, ",
"o.`status`, ", "o.`status`, ",
"o.abnormal_state, ", "o.abnormal_state, ",
"o.in_warehouse_state, ", "o.in_warehouse_state, ",
......
...@@ -33,6 +33,10 @@ public class OrderCargoControlReleaseInfoDto { ...@@ -33,6 +33,10 @@ public class OrderCargoControlReleaseInfoDto {
@ApiModelProperty(value = "唛头") @ApiModelProperty(value = "唛头")
private String marks; private String marks;
@ApiModelProperty(value = "增值服务(多个使用','连接):1 集运服务 2 海外仓")
private String type;
@ApiModelProperty(value = "货柜自编号") @ApiModelProperty(value = "货柜自编号")
private String containerNumber; private String containerNumber;
......
...@@ -615,6 +615,8 @@ public class OrderCargoControlServiceImpl extends AbstractService<OrderCargoCont ...@@ -615,6 +615,8 @@ public class OrderCargoControlServiceImpl extends AbstractService<OrderCargoCont
OrderCargoControlApplyVO orderCargoControlApplyVO = new OrderCargoControlApplyVO(); OrderCargoControlApplyVO orderCargoControlApplyVO = new OrderCargoControlApplyVO();
BeanUtils.copyProperties(releaseInfoDto, orderCargoControlApplyVO); BeanUtils.copyProperties(releaseInfoDto, orderCargoControlApplyVO);
orderCargoControlApplyVO.setApplyStatus(0); orderCargoControlApplyVO.setApplyStatus(0);
orderCargoControlApplyVO.setOrderType(releaseInfoDto.getType());
orderCargoControlApplyVO.setIsOverseasWarehouse(StringUtils.isNotBlank(releaseInfoDto.getType()) && releaseInfoDto.getType().contains("2"));
return orderCargoControlApplyVO; return orderCargoControlApplyVO;
} else { } else {
OrderCargoControlApplyVO applyVO = JSONObject.parseObject(orderApprovalDO.getDetails(), OrderCargoControlApplyVO.class); OrderCargoControlApplyVO applyVO = JSONObject.parseObject(orderApprovalDO.getDetails(), OrderCargoControlApplyVO.class);
......
...@@ -30,6 +30,9 @@ public class OrderCargoControlApplyVO { ...@@ -30,6 +30,9 @@ public class OrderCargoControlApplyVO {
@ApiModelProperty(value = "订单编号") @ApiModelProperty(value = "订单编号")
private String orderNo; private String orderNo;
@ApiModelProperty(value = "增值服务(多个使用','连接):1 集运服务 2 海外仓")
private String orderType;
@ApiModelProperty(value = "提单号") @ApiModelProperty(value = "提单号")
private String tidanNo; private String tidanNo;
......
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