using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using System.Collections; namespace Estsh.Core.Repository.IRepositories { public interface IPurchaseManageRepository : IBaseRepository { public List getList(string strWhere, string filedOrder); public Hashtable getPurchaseListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public Hashtable getPurchaseDetailListByPage(string strWhere); public Hashtable getStockListByPage(string strWhere); public List getStockListByPrint(string strWhere); public List GetPartInfo(string part_no); public List GetErpwarehouse(); public List GetOrderStatus(); public List getSelectFactory(); public List getSelectWarehouse(); public List getSelectWarehouse(string warehouseid); public List getSelectZone(string zoneid); public List getSelectZone(); public List getSelectVendor(); public List getSelectVendor(string vendorName); public List GetPart(int type); public List GetOrderType(); public List GetPart(int type,string PartNo); public int savePurchaseManage(WmsPurchase htParams, IList htDetailParams); public List GetPartNoInfo(string part_no); public List GetPartNoInfoByPartNo(string part_no); public List GetPartSpecInfo(string partSpec); public List GetPartSpecInfoByPartSpec(string partSpec); public Hashtable onBarcodeGenerator(string orderNo, string userID, string factoryID, string factoryCode); public int onClose(String ids); public int EnableData(String ids); public int DisableData(String ids); } }