This commit is contained in:
@ -695,13 +695,14 @@ namespace Epost.DAL
|
||||
|
||||
|
||||
#region 修改门店拣货状态
|
||||
public bool UpdateStateByOrderID(string orderid)
|
||||
public bool UpdateStateBymatchid(string matchid)
|
||||
{
|
||||
try
|
||||
{
|
||||
string upsql = string.Format("update orders set oprationstate=3,truequantity=quantity, state=3 where orderid='{0}'",
|
||||
orderid);
|
||||
string upsql = string.Format("update orders set state=3 where matchid='{0}'",
|
||||
matchid);
|
||||
long x = db.UpdateSql(upsql);
|
||||
LogHelper.WriteLogInfo(x+"修改波次拣选完成"+upsql);
|
||||
if (x > 0)
|
||||
return true;
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user