yanjinhui
9 天以前 4babfcfde8b26c755850e0066f1c07fac38e96a2
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
63
64
65
66
67
68
69
70
71
72
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.SquareCabin;
using WIDESEA_Model.Models;
 
namespace WIDESEA_ISquareCabinServices
{
    public interface IDeliveryOrderServices : IService<Dt_DeliveryOrder>
    {
        IRepository<Dt_DeliveryOrder> Repository { get; }
        /// <summary>
        /// 盘点出库接口
        /// </summary>
        /// <returns></returns>
        public WebResponseContent InventoryGood(string batchNo, string goodsNo);
        WebResponseContent GetDeliveryOrders(SaveModel saveModel);
        WebResponseContent GetDeliveryOrderDetail(int pageNo, string orderNo, bool isPick);
        /// <summary>
        /// 完成出库任务
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        WebResponseContent OutFinish(SaveModel saveModel);
 
 
        /// <summary>
        /// 生成调拨入库出库单接口
        /// </summary>
        /// <param name="materielInfo"></param>
        /// <returns></returns>
        WebResponseContent CreateAllocatInOut(Dt_MaterielInfo materielInfo);
 
 
        /// <summary>
        /// 盘点任务接口
        /// </summary>
        /// <param name="keys"></param>
        /// <returns></returns>
        WebResponseContent CreateCheckOrder(int[] keys);
 
        /// <summary>
        /// 查询盘点单信息
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        WebResponseContent GetCheckOrders(SaveModel saveModel);
        /// <summary>
        /// 完成出库单
        /// </summary>
        /// <param name="key"></param>
        /// <returns></returns>
        WebResponseContent FinishOutOrder(int key);
 
        /// <summary>
        /// 完成盘点任务
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        WebResponseContent CheckFinish(SaveModel saveModel);
        WebResponseContent GetCheckOutTasks(SaveModel saveModel);
        WebResponseContent OutTaskFinish(Dt_SupplyTask supplyTask);
        WebResponseContent CheckTaskFinish(Dt_SupplyTask supplyTask, string LocationCode = null);
        WebResponseContent CreateOutboundOrder(OrderDto.UpstramOutOrderInfo upstramOutOrderInfo);
        WebResponseContent CreateCheckOutOrder(OrderDto.UpstramOutOrderInfo outorder);
    }
}