This commit is contained in:
jl
2024-12-02 13:53:56 +08:00
parent fb0c29fb89
commit 7bdb8633db
7 changed files with 106 additions and 59 deletions

View File

@ -44,6 +44,28 @@ namespace Epost.BLL
return dal.GetInOrderList(strwhere);
}
#endregion
#region
public DataTable GetV_InOrders(string strwhere)
{
return dal.GetV_InOrders(strwhere);
}
#endregion
#region
public string GetLocation(string strwhere)
{
DataTable dt= dal.GetLocation(strwhere);
if (dt != null && dt.Rows.Count > 0)
{
return dt.Rows[0]["agvloc"].ToString();
}
else {
return "";
}
}
#endregion
#region
public bool InsertOrder(DataTable dt, Dictionary<string, string> diclist)
{
@ -57,8 +79,16 @@ namespace Epost.BLL
return dal.UpInOrderList(id,state,data);
}
public bool UpInOrder(string id, string errormsg)
{
return dal.UpInOrder(id, errormsg);
}
#endregion
#region agv单号更新订单状态
public bool UpInOrderListByAgvid(string agvid, string state)
{