wangxinhui
2025-01-15 86215107267c319e41a81fa59a382c8f1eed3d67
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core.BaseServices;
using WIDESEA_DTO;
using WIDESEA_DTO.Inbound;
using WIDESEA_External.Model;
using WIDESEA_IInboundRepository;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IInboundService
{
    public interface IInboundOrderService : IService<Dt_InboundOrder>
    {
        IInboundOrderRepository Repository { get; }
 
        WebResponseContent GetInboundOrders(SaveModel saveModel);
        WebResponseContent MaterielGroup(int inboundOrderId, string palletCode, string serNum);
 
        WebResponseContent InPinKu(string inboundOrderId,int warehouseId, List<string> serNums);
        WebResponseContent MaterielGroup(string palletCode, int Initiallife, int warehouseId, List<string> serNums);
 
        //WebResponseContent FeedbackInboundOrder(int id);
 
        WebResponseContent MaterielGroup(SaveModel saveModel);
        /// <summary>
        /// 入库完成上报 弃用
        /// </summary>
        /// <returns></returns>
        #region 弃用
        WebResponseContent FeedbackInboundOrder(Dt_StockInfo stockInfo,Dt_InboundOrder inboundOrder, List<ERPInboundDetailModel> detailModels);
        #endregion
        /// <summary>
        /// 入库完成上报
        /// </summary>
        /// <returns></returns>
        WebResponseContent FeedbackInboundOrder(Dt_InboundOrder inboundOrder,List<Dt_StockInfoDetail> stockInfoDetails);
    }
}