29 lines
949 B
C#
29 lines
949 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using WMS.Model.Strategy;
|
|||
|
|
using System.Data;
|
|||
|
|
using WMS.IData;
|
|||
|
|
using WMS.Common;
|
|||
|
|
|
|||
|
|
namespace WMS.Business.Strategy
|
|||
|
|
{
|
|||
|
|
public class BussStrAreaRepStorage : IBussFactory
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取库区间定时补货策略仓库库区明细
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns>库区间定时补货策略仓库库区明细</returns>
|
|||
|
|
public List<StrAreaRepStorageModel> GetStrAreaRepStorageList(StrAreaRepStorageModel model)
|
|||
|
|
{
|
|||
|
|
DataTable table = DataProvider.Instance.StrAreaRepStorage.GetStrAreaRepStorageDT(model);
|
|||
|
|
List<StrAreaRepStorageModel> StrAreaRepStorageModel = ConvertHelper<StrAreaRepStorageModel>.ConvertToList(table);
|
|||
|
|
|
|||
|
|
if (DataLogErrWrite(table, "获取库区间定时补货策略仓库库区明细"))
|
|||
|
|
{
|
|||
|
|
return StrAreaRepStorageModel;
|
|||
|
|
}
|
|||
|
|
return null;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|