Commit af347f97 by chenzhengpeng

文件修改

parent 89d32f3a
...@@ -242,3 +242,5 @@ paket-files/ ...@@ -242,3 +242,5 @@ paket-files/
.fake/ .fake/
.DS_Store .DS_Store
.vs
/Server/.vs
...@@ -36,7 +36,7 @@ namespace Siger.Middlelayer.AccRepository.Repositories ...@@ -36,7 +36,7 @@ namespace Siger.Middlelayer.AccRepository.Repositories
} }
else 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) if (unDolist == 0)
return true; return true;
else 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