This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user