|
|
|
@ -171,4 +171,17 @@ public class BoxForNotificationController { |
|
|
|
List<OutboundNotificationHeadVo> rows = srmSupplierService.searchOutboundNotificationWithDetail(data); |
|
|
|
return R.ok().put("rows", rows); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 更新出库通知单状态 |
|
|
|
* @description 将订单状态更新为"待出库" |
|
|
|
* @param data 包含 site, buNo, orderNo |
|
|
|
* @return R |
|
|
|
*/ |
|
|
|
@PostMapping(value="/updateOrderStatus") |
|
|
|
@ResponseBody |
|
|
|
public R updateOrderStatus(@RequestBody OutboundNotificationHeadVo data) { |
|
|
|
srmSupplierService.updateOrderStatus(data); |
|
|
|
return R.ok(); |
|
|
|
} |
|
|
|
} |