This commit is contained in:
jl
2025-07-01 12:59:49 +08:00
parent fb2aa4f239
commit 6b6a0da379
5 changed files with 20 additions and 15 deletions

View File

@ -94,7 +94,7 @@ namespace Epost.DAL
#region
public DataTable getQueueOrderState(OrdersQueueModel model)
{
string sql = string.Format("select * from OrdersQueue where taskblock='{0}' and taskarea='{1}' and state=0 order by sort",
string sql = string.Format("select * from OrdersQueue where taskblock='{0}' and taskarea='{1}' and state=0 and usercode<>'' order by sort",
model.Taskblock,
model.Taskarea);
return db.GetsqlForDT(sql);