| | |
| | | { |
| | | return _taskService.ModifyBarcode(barcode,newBarcode); |
| | | } |
| | | /// <summary> |
| | | /// ä¿®æ¹æçä¸è¢æ° |
| | | /// </summary> |
| | | /// <param name="palletCode"></param> |
| | | /// <param name="qty"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("ModifyQty")] |
| | | public WebResponseContent ModifyQty(string palletCode, int qty) |
| | | { |
| | | return _taskService.ModifyQty(palletCode, qty); |
| | | } |
| | | /// <summary> |
| | | /// è´¨æ£åºåº |
| | | /// </summary> |
| | | /// <param name="batchNo"></param> |
| | | /// <param name="qty"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("OutQC")] |
| | | public WebResponseContent OutQC(string batchNo, int qty) |
| | | { |
| | | return _taskService.OutQC(batchNo, qty); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 空æå
¥åº |
| | |
| | | [HttpPost, Route("InEmpty")] |
| | | public WebResponseContent InEmpty(string barcode,string station) |
| | | { |
| | | return _inboundService.InbounOrderService.PdaAddEmptyStockInfo(barcode,station); |
| | | return WebResponseContent.Instance.Error("æ ä½¿ç¨æé"); |
| | | //return _inboundService.InbounOrderService.PdaAddEmptyStockInfo(barcode, station); |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | [HttpPost, Route("OutEmpty")] |
| | | public WebResponseContent OutEmpty() |
| | | { |
| | | return _outboundService.OutboundOrderService.PdaOutEmpty(); |
| | | return WebResponseContent.Instance.Error("æ ä½¿ç¨æé"); |
| | | //return _outboundService.OutboundOrderService.PdaOutEmpty(); |
| | | } |
| | | /// <summary> |
| | | /// æ¥è¯¢å
¥åºå |
| | |
| | | /// <param name="orderNo"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("QueryOrderInfo")] |
| | | public WebResponseContent QueryOrderInfo(int pageNo, string orderNo) |
| | | public WebResponseContent QueryOrderInfo(int pageNo, string orderNo, int orderType) |
| | | { |
| | | return _inboundService.InbounOrderService.QueryOrderInfo(pageNo, orderNo); |
| | | return _inboundService.InbounOrderService.QueryOrderInfo(pageNo, orderNo, orderType); |
| | | } |
| | | /// <summary> |
| | | /// æ¥è¯¢å
¥åºå详æ
|