Commit 7acafb18 authored by zhangfeng's avatar zhangfeng

订单V值触发测试接口

parent 5f6c0fdd
...@@ -50,7 +50,7 @@ public class OrderApiImpl implements OrderApi { ...@@ -50,7 +50,7 @@ public class OrderApiImpl implements OrderApi {
BeanUtils.copyProperties(orderDO, orderRespDTO); BeanUtils.copyProperties(orderDO, orderRespDTO);
// 设置目的地信息 // 设置目的地信息
OrderObjectiveDO orderObjectiveDO = objectiveService.getByOrderId(id); OrderObjectiveDO orderObjectiveDO = objectiveService.getByOrderId(orderDO.getOrderId());
if (orderObjectiveDO != null) { if (orderObjectiveDO != null) {
OrderObjectiveApiDO orderObjectiveApiDO = new OrderObjectiveApiDO(); OrderObjectiveApiDO orderObjectiveApiDO = new OrderObjectiveApiDO();
BeanUtils.copyProperties(orderObjectiveDO, orderObjectiveApiDO); BeanUtils.copyProperties(orderObjectiveDO, orderObjectiveApiDO);
...@@ -58,7 +58,7 @@ public class OrderApiImpl implements OrderApi { ...@@ -58,7 +58,7 @@ public class OrderApiImpl implements OrderApi {
} }
// 设置收货人信息 // 设置收货人信息
OrderConsigneeDO orderConsigneeByOrderId = orderConsigneeService.getOrderConsigneeByOrderId(id); OrderConsigneeDO orderConsigneeByOrderId = orderConsigneeService.getOrderConsigneeByOrderId(orderDO.getOrderId());
if (orderConsigneeByOrderId != null) { if (orderConsigneeByOrderId != null) {
OrderConsigneeApiDO orderConsigneeApiDO = new OrderConsigneeApiDO(); OrderConsigneeApiDO orderConsigneeApiDO = new OrderConsigneeApiDO();
BeanUtils.copyProperties(orderConsigneeByOrderId, orderConsigneeApiDO); BeanUtils.copyProperties(orderConsigneeByOrderId, orderConsigneeApiDO);
......
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