Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
Laisi_AutoMES2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jiawei.su
Laisi_AutoMES2
Commits
af347f97
Commit
af347f97
authored
Feb 16, 2021
by
chenzhengpeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
文件修改
parent
89d32f3a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
.gitignore
.gitignore
+2
-0
AutomationTaskListRepository.cs
...ccRepository/Repositories/AutomationTaskListRepository.cs
+1
-1
No files found.
.gitignore
View file @
af347f97
...
...
@@ -242,3 +242,5 @@ paket-files/
.fake/
.DS_Store
.vs
/Server/.vs
Server/Infrastructure/Repositories/Siger.Middlelayer.AccRepository/Repositories/AutomationTaskListRepository.cs
View file @
af347f97
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment