This commit is contained in:
jl
2024-01-23 17:15:53 +08:00
parent ae55e77ef8
commit 0d46fcfe0b
3 changed files with 19 additions and 20 deletions

View File

@ -834,9 +834,8 @@ namespace Epost.DAL
if (!string.IsNullOrEmpty(sku))
{
strwhere += " and sku='" + sku + "'";
}
string upsql = string.Format("update v_orders set state=3 where area ='" + area + "' " + strwhere);
}
string upsql = string.Format("update v_orders set state=3 where area ='" + area + "' and state<>99 " + strwhere);
LogHelper.WriteLogInfo("修改通道拣货状态:" + upsql);
long x = db.UpdateSql(upsql);
if (x > 0)