|
|
|
@ -136,7 +136,7 @@ public class PanFactoryDataController extends BladeController {
|
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "订单数据推送", notes = "传入orderInfoDTO") |
|
|
|
|
public R sendOrders(@Validated @RequestBody OrderInfoDTO orderInfoDTO) { |
|
|
|
|
log.info("############sendOrders: "); |
|
|
|
|
log.info("############sendOrders: 请求参数{}",orderInfoDTO); |
|
|
|
|
try{ |
|
|
|
|
// factoryDataService.handleData(orderInfoDTO);
|
|
|
|
|
}catch (CustomerException e){ |
|
|
|
@ -155,7 +155,7 @@ public class PanFactoryDataController extends BladeController {
|
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "订单状态推送", notes = "传入orderInfoDTO") |
|
|
|
|
public R sendOrderStatus(@RequestBody OrderStatusDTO orderStatusDTO) { |
|
|
|
|
log.info("############sendOrderStatus: "); |
|
|
|
|
log.info("############sendOrderStatus: 请求参数{}",orderStatusDTO); |
|
|
|
|
try{ |
|
|
|
|
factoryDataService.handleStatusData(orderStatusDTO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|