heshaofeng
6 天以前 375ace27ad6afbc3c83d92add0fb5a0347a6edbf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_DTO.Inbound;
using WIDESEA_DTO.Outbound;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IOutboundService
{
    public interface IOutboundPickingService : IService<Dt_PickingRecord>
    {
        IRepository<Dt_PickingRecord> Repository { get; }
 
        Task<object> GetPickingSummary(ConfirmPickingDto dto);
 
        Task<List<Dt_OutStockLockInfo>> GetUnpickedList(string orderNo, string palletCode);
 
        Task<List<Dt_OutStockLockInfo>> GetPickedList(string orderNo, string palletCode);
 
        Task<WebResponseContent> CancelPicking(string orderNo, string palletCode, string barcode);
        Task<WebResponseContent> ConfirmPicking(string orderNo, string palletCode, string barcode);
        Task<WebResponseContent> ReturnRemaining(string orderNo, string palletCode, string reason);
 
        /// <summary>
        /// 单据查找
        /// </summary>
        /// <returns></returns>
        WebResponseContent GetAvailablePurchaseOrders();
        WebResponseContent GetAvailablePickingOrders();
 
        /// <summary>
        /// 扫码验证
        /// </summary>
        WebResponseContent BarcodeValidate(NoStockOutModel noStockOut);
        /// <summary>
        /// 条码删除
        /// </summary>
        /// <param name="noStockOut"></param>
        /// <returns></returns>
        WebResponseContent DeleteBarcode(NoStockOutModel noStockOut);
 
        Task<WebResponseContent> NoStockOutSubmit(NoStockOutSubmit noStockOutSubmit);
 
        Task<WebResponseContent> RemoveEmptyPallet(string orderNo, string palletCode);
 
 
        WebResponseContent UnPalletQuantity(string orderNo);
        WebResponseContent BarcodeMaterielGroup(BarcodeMaterielGroupDTO materielGroupDTO);
 
        /// <summary>
        /// 条码查询入库单
        /// </summary>
        /// <param name="barcode"></param>
        /// <returns></returns>
        public WebResponseContent GetPurchaseOrderByBarcode(string barcode);
    }
}