42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// 此方法用于 库存查看窗体功能
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataTable GetMiStockForLookUp(MIStockModel model);
|
|
|
|
DataTable GetMiStockForLookUp(MIStockModel model,string sts);
|
|
|
|
/// <summary>
|
|
/// 通过商品编号和年份 查询年份中每个月的库存总量
|
|
/// </summary>
|
|
/// <param name="goods_id"></param>
|
|
/// <param name="year"></param>
|
|
/// <returns></returns>
|
|
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);
|
|
}
|
|
}
|