This commit is contained in:
@ -37,11 +37,34 @@ namespace Epost.BLL
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
||||
#region 查询订单信息
|
||||
public DataTable GetInOrderList(string strwhere)
|
||||
{
|
||||
return dal.GetInOrderList(strwhere);
|
||||
}
|
||||
#endregion
|
||||
#region 添加订单
|
||||
public bool InsertOrder(DataTable dt, Dictionary<string, string> diclist)
|
||||
{
|
||||
return dal.InsertOrders(dt, diclist);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 更新订单状态
|
||||
public bool UpInOrderList(string id, string state,string data="")
|
||||
{
|
||||
|
||||
return dal.UpInOrderList(id,state,data);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 根据agv单号更新订单状态
|
||||
public bool UpInOrderListByAgvid(string agvid, string state)
|
||||
{
|
||||
|
||||
return dal.UpInOrderListByAgvid(agvid, state);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user