提交 359335e2 authored 作者: 李瑞鑫's avatar 李瑞鑫

Merge branch 'v21.1_jianzhuang_20240807' into dev

...@@ -19,10 +19,6 @@ public class NeedAlertSuperviseInfoParam { ...@@ -19,10 +19,6 @@ public class NeedAlertSuperviseInfoParam {
@NotBlank(message = "运单编号不能为空") @NotBlank(message = "运单编号不能为空")
private String childNo; private String childNo;
@ApiModelProperty(value = "订单编号", example = "100000000")
@NotBlank(message = "订单编号不能为空")
private String orderNo;
@ApiModelProperty(value = "类型 1-监装 2-监卸", example = "1") @ApiModelProperty(value = "类型 1-监装 2-监卸", example = "1")
@NotBlank(message = "类型不能为空") @NotBlank(message = "类型不能为空")
......
...@@ -3614,6 +3614,8 @@ public class OrderChildServiceImpl implements OrderChildService { ...@@ -3614,6 +3614,8 @@ public class OrderChildServiceImpl implements OrderChildService {
@Override @Override
public NeedAlertSuperviseInfoResultVO needAlertSuperviseInfo(NeedAlertSuperviseInfoParam param) { public NeedAlertSuperviseInfoResultVO needAlertSuperviseInfo(NeedAlertSuperviseInfoParam param) {
//查询运单信息
OrderChild orderChild = orderChildDao.getByChildNo(param.getChildNo()).orElseThrow(DATA_NOT_FIND);
//返回对象 //返回对象
NeedAlertSuperviseInfoResultVO result = new NeedAlertSuperviseInfoResultVO(); NeedAlertSuperviseInfoResultVO result = new NeedAlertSuperviseInfoResultVO();
App app = appConfig.getPurchaseManageApp();//对接马上来供应链配置信息 App app = appConfig.getPurchaseManageApp();//对接马上来供应链配置信息
...@@ -3625,7 +3627,7 @@ public class OrderChildServiceImpl implements OrderChildService { ...@@ -3625,7 +3627,7 @@ public class OrderChildServiceImpl implements OrderChildService {
//通过订单号查询监装监卸信息 //通过订单号查询监装监卸信息
SupplyChainSupervisionLoadAction action = new SupplyChainSupervisionLoadAction(); SupplyChainSupervisionLoadAction action = new SupplyChainSupervisionLoadAction();
action.setOrderNo(param.getOrderNo()); action.setOrderNo(orderChild.getOrderNo());
action.setType(param.getType()); action.setType(param.getType());
log.info("请求获取监装监卸信息参数,{}",action); log.info("请求获取监装监卸信息参数,{}",action);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论