| | |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_DTO.CalcOut; |
| | | using WIDESEA_Model.Models; |
| | | |
| | | namespace WIDESEA_IOutboundService |
| | | { |
| | |
| | | /// <returns>åºåºå®æååº</returns> |
| | | WebResponseContent CompleteOutboundWithBarcode(OutboundCompleteRequestDTO request); |
| | | |
| | | WebResponseContent CompleteOutboundWithPallet(OutboundCompletePalletRequestDTO request); |
| | | |
| | | WebResponseContent QueryPickingTasks(string palletCode, string orderNo); |
| | | |
| | | WebResponseContent QueryPickedList(string orderNo, string palletCode); |
| | | |
| | | WebResponseContent GetOrderInfo(string orderNo); |
| | | |
| | | /// <summary> |
| | | /// å空箱 |
| | | /// </summary> |
| | | /// <param name="palletCode"></param> |
| | | /// <returns></returns> |
| | | Task<WebResponseContent> EmptyBox(string palletCode); |
| | | |
| | | |
| | | /// <summary> |
| | | /// ååº |
| | | /// </summary> |
| | | /// <param name="palletCode"></param> |
| | | /// <param name="OrderNo"></param> |
| | | /// <returns></returns> |
| | | Task<WebResponseContent> ReturnToWarehouse(string palletCode, string OrderNo,string station); |
| | | |
| | | public (string NewBarcode, List<MaterialCodeReturnDTO> MaterialCodeReturnDTOs) PerformUnpackOperation(Dt_StockInfoDetail stockDetail, Dt_StockInfo stockInfo, |
| | | decimal actualOutboundQuantity, OutboundCompleteRequestDTO request, decimal beforeQuantity, int taskNum, int orderId, string orderNo); |
| | | |
| | | public void PerformFullOutboundOperation(Dt_StockInfoDetail stockDetail, Dt_StockInfo stockInfo, |
| | | decimal actualOutboundQuantity, OutboundCompleteRequestDTO request, decimal beforeQuantity, int taskNum); |
| | | |
| | | /// <summary> |
| | | /// 鿣æ£é |
| | | /// </summary> |
| | | /// <param name="barCode"></param> |
| | | /// <param name="orderNo"></param> |
| | | /// <returns></returns> |
| | | WebResponseContent RecheckPicking(RecheckPickingDTO pickingDTO); |
| | | |
| | | WebResponseContent ReversePicking(ReversePickingRequestDTO reversePickingRequestDTO); |
| | | |
| | | WebResponseContent PrintFromData(string barcode); |
| | | } |
| | | } |