|
|
@ -459,9 +459,9 @@ public class OrderInfoController { |
|
|
|
@ApiOperation(value = "订单更新物料", notes = "订单信息管理-更新物料") |
|
|
|
@ApiOperation(value = "订单更新物料", notes = "订单信息管理-更新物料") |
|
|
|
@PostMapping("/updateOrderItem") |
|
|
|
@PostMapping("/updateOrderItem") |
|
|
|
@SysLog(operation = "订单更新物料", operationDesc = "订单更新物料", key = "订单更新物料") |
|
|
|
@SysLog(operation = "订单更新物料", operationDesc = "订单更新物料", key = "订单更新物料") |
|
|
|
public R updateOrderItem(@RequestParam("orderInfoId")String orderInfoId,@RequestParam("entId")String entId){ |
|
|
|
public R updateOrderItem(@RequestParam("orderId")String orderId,@RequestParam("entId")String entId){ |
|
|
|
try { |
|
|
|
try { |
|
|
|
return orderInfoService.updateOrderItem(orderInfoId,entId); |
|
|
|
return orderInfoService.updateOrderItem(orderId,entId); |
|
|
|
} catch (Exception e) { |
|
|
|
} catch (Exception e) { |
|
|
|
log.error(e.getMessage()); |
|
|
|
log.error(e.getMessage()); |
|
|
|
return R.error("系统异常"); |
|
|
|
return R.error("系统异常"); |
|
|
|