This commit is contained in:
jl
2025-06-24 15:35:29 +08:00
parent 81ef9284b7
commit 7ed7a8cd88
33 changed files with 3955 additions and 98 deletions

View File

@ -288,6 +288,26 @@ namespace Epost.DAL
}
#endregion
#region
public List<AddressstorageModel> GetOrderWayList(string block, string shelfid)
{
string strwhere = string.Empty;
if (!string.IsNullOrEmpty(block))
{
strwhere += "and block ='" + block + "'";
}
if (!string.IsNullOrEmpty(shelfid))
{
strwhere += "and shelfid ='" + shelfid + "'";
}
string sql = string.Format("select area,block,way from Addressstorage where type=1 " + strwhere + " group by area,block,way");
DataTable dt = db.GetsqlForDT(sql);
return ModelConvertHelper<AddressstorageModel>.ConvertToList(dt);
}
#endregion
#region
public List<AddressstorageModel> GetshelfidList(string block)
{