using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using WMS.Model.Stock; namespace WMS.IData.IReport { public interface IMIStockSearch { /// /// 此方法用于 库存查看窗体功能 /// /// /// DataTable GetMiStockForLookUp(MIStockModel model); DataTable GetMiStockForLookUp(MIStockModel model,string sts); /// /// 通过商品编号和年份 查询年份中每个月的库存总量 /// /// /// /// DataTable MonthReportData( MIStockBackModel year); DataTable DayReportData(MIStockBackModel mo); DataTable GetVendorsSite(); DataTable GetVendors(); DataTable GetSubinventory(); DataTable GetItems(); DataTable GetReason(); string DeleteReason(string id,string reason); void AddReason(string id,string reason); DataTable GetMoveLot(string row, string cln, string layer, string area); DataTable GetMoveLot2(string row, string cln, string layer, string area, String ABC_ID); } }