Commit af347f97 by chenzhengpeng

文件修改

parent 89d32f3a
......@@ -242,3 +242,5 @@ paket-files/
.fake/
.DS_Store
.vs
/Server/.vs
......@@ -36,7 +36,7 @@ namespace Siger.Middlelayer.AccRepository.Repositories
}
else
{
var unDolist = _context.siger_automation_task_list.Where(f => f.send == 1 && f.status == (int)TaskResultStatus.Produce && f.status == (int)TaskResultStatus.Waiting).Count();
var unDolist = _context.siger_automation_task_list.Where(f => f.send == 1 && (f.status == (int)TaskResultStatus.Produce || f.status == (int)TaskResultStatus.Waiting)).Count();
if (unDolist == 0)
return true;
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment