54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
using WMS.Model.Stock;
|
|
|
|
namespace WMS.IData.IStock
|
|
{
|
|
public interface IAdjustList
|
|
{
|
|
DataTable GetIncertory();
|
|
void AddInvertory(string plcId, string loc, string sation);
|
|
#region 获取库存调整单集合
|
|
/// <summary>
|
|
/// 获取库存调整单集合
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataTable GetAdjustList(AdjustListModel model);
|
|
#endregion
|
|
|
|
#region 新增库存调整单
|
|
/// <summary>
|
|
/// 新增库存调整单
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
void ExecListAdd(AdjustListModel model);
|
|
#endregion
|
|
|
|
#region 修改库存调整单
|
|
/// <summary>
|
|
/// 修改库存调整单
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
void ExecListUpdate(AdjustListModel model);
|
|
#endregion
|
|
|
|
#region 删除库存调整单
|
|
/// <summary>
|
|
/// 删除库存调整单
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
void DelList(AdjustListModel model);
|
|
#endregion
|
|
|
|
#region 审核库存调整单
|
|
void Check(AdjustListModel model);
|
|
#endregion
|
|
}
|
|
}
|