This commit is contained in:
帅凯 贾
2023-11-07 16:04:21 +08:00
parent 7d3f50c97b
commit a77604f299
6 changed files with 748 additions and 706 deletions

View File

@ -3054,5 +3054,22 @@ namespace Epost.DAL
return dt;
}
#endregion
#region
public bool UpOrdersWaitState(string orderid)
{
string sql = string.Format("update Orders set oprationstate='3' where orderid='" + orderid + "' and state!=1 ");
long x = db.UpdateSql(sql);
LogHelper.WriteLogInfo("接口灭灯-一对多标签-修改等待亮灯的状态:" + sql + ",执行条数:" + x + "");
if (x > 0)
{
return true;
}
else
{
return false;
}
}
#endregion
}
}