This commit is contained in:
linfso 2024-07-15 08:16:17 +08:00
parent e479fdbc79
commit aa4143f6fe

View File

@ -73,6 +73,8 @@ public class Oms2cWaybillController extends BaseController
@PostMapping(value = "/realSubmitOrder")
public AjaxResult realSubmitOrder(@Valid @RequestBody WaybillOrder waybillOrder,Integer isModify)
{
waybillOrder.setUserId(getLoginUser().getUser().getId());
waybillOrder.setCustomerCode(getLoginUser().getUser().getCustomerCode());
return this.iRpcWaybillSvc.realSubmitOrderByOms(waybillOrder,isModify);
}