bklLiudl
2024-07-23 675b8bcc4a3630d95e3d0b97d933e63442075ecb
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Model;
 
namespace BLL
{
    public interface IDALPalletBind
    {
 
        IList<PalBind> GetList(PalBindList ajaxPbl, ref PageInfo page);
 
        bool Add(PalBind model, List<PalBind> lst);
 
        bool GetErpinByMatNo(PalBind models, ref IList<PalBind> lstPB);
 
        bool GetPalletBind(string PalletNo,  ref IList<PalletBind>lst);
        bool GetPalletBind(PalBind palBind, ref IList<PalBind> lst);
 
        bool GetRemainBindCount(string OrdNo, string MatNo, ref int OrdCount, ref int BindCount, ref int RemainCount, string PalletNo);
 
        bool GetOrderMatByMatNoAndOrd(string OrdNo, string MatNo, ref ErpInDetail eid);
 
        bool IsPalletUsing(string PalletNo);
 
        bool UpdateErpinStatus(string OrderNo, string Statu);
 
        bool UpdateErpinByPalletNo(IList<ErpIn> lst);
 
        bool GetPalletBindStatus(string PalletNo, string status);
 
        string DelPalBind(string userCode, string palno, string ordNo,string LocationCode);
        void DelPalBindDetail(string userCode, string guid, string ordNo);
 
    }
}