| | |
| | | dt_OutboundOrder.IsBatch = model.isBatch; |
| | | dt_OutboundOrder.FactoryArea = model.factoryArea; |
| | | dt_OutboundOrder.CreateType = OrderCreateTypeEnum.UpperSystemPush.ObjToInt(); |
| | | dt_OutboundOrder.DepartmentName = model.lineName??""; |
| | | |
| | | var content =await Service.ReceiveOutboundOrder(dt_OutboundOrder, model.operationType); |
| | | |
| | |
| | | } |
| | | return WebResponseContent.Instance.OK(null, order); |
| | | } |
| | | |
| | | [HttpGet, Route("GetOrderNoByPalletCode"), AllowAnonymous, MethodParamsValidate] |
| | | public WebResponseContent GetOrderNoByPalletCode(string palletCode) |
| | | { |
| | | return Service.GetOrderNoByPalletCode(palletCode); |
| | | } |
| | | } |
| | | } |