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);
|
|
}
|
}
|