Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
performance
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zry
performance
Commits
6799bf4a
Commit
6799bf4a
authored
Dec 23, 2021
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'hotfix/修复下发新增判定条件'
parents
d0722040
382c1fb2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
performance/Performance.Services/AllotCompute/ResultComputeService.cs
+4
-4
No files found.
performance/Performance.Services/AllotCompute/ResultComputeService.cs
View file @
6799bf4a
...
...
@@ -672,7 +672,7 @@ public List<IssuedPromptResponse> IssuedPrompt(per_allot allot, AllotRequest req
foreach
(
var
item
in
secondList
)
{
var
second
=
secondList
?.
FirstOrDefault
(
f
=>
f
.
UnitType
==
item
.
UnitType
&&
f
.
Department
==
item
.
Department
);
var
isDiffer
=
(
item
.
RealGiveFee
??
0
)
!=
(
item
.
PreRealGiveFee
??
0
);
if
((
item
.
RealGiveFee
??
0
)
==
0
&&
(
item
.
PreRealGiveFee
??
0
)
>
0
)
...
...
@@ -683,7 +683,7 @@ public List<IssuedPromptResponse> IssuedPrompt(per_allot allot, AllotRequest req
promptSecond
.
IssueStatus
=
4
;
promptSeconds
.
Add
(
promptSecond
);
}
else
if
(
isDiffer
&&
!
status
.
Contains
(
item
.
Status
.
Value
)
&&
(
IsOpen
==
true
?
!
status
.
Contains
(
item
.
NursingDeptStatus
.
Value
):
true
))
else
if
(
isDiffer
&&
!
status
.
Contains
(
item
.
Status
.
Value
)
&&
(
IsOpen
==
true
?
!
status
.
Contains
(
item
.
NursingDeptStatus
.
Value
)
:
true
))
{
var
promptSecond
=
_mapper
.
Map
<
IssuedPromptResponse
>(
item
);
promptSecond
.
StatusRemake
=
$@"未提交科室实发绩效变更,原金额:
{
item
.
RealGiveFee
??
0
}
"
;
...
...
@@ -691,7 +691,7 @@ public List<IssuedPromptResponse> IssuedPrompt(per_allot allot, AllotRequest req
promptSecond
.
RealGiveFee
=
item
.
PreRealGiveFee
;
promptSeconds
.
Add
(
promptSecond
);
}
else
if
(
isDiffer
&&
status
.
Contains
(
item
.
Status
.
Value
)
&&
(
IsOpen
==
true
?
status
.
Contains
(
item
.
NursingDeptStatus
.
Value
):
true
))
else
if
(
isDiffer
&&
status
.
Contains
(
item
.
Status
.
Value
)
&&
(
IsOpen
==
true
?
status
.
Contains
(
item
.
NursingDeptStatus
.
Value
)
:
true
))
{
var
promptSecond
=
_mapper
.
Map
<
IssuedPromptResponse
>(
item
);
promptSecond
.
StatusRemake
=
$@"已提交或已审核科室实发绩效变更驳回,原金额:
{
item
.
RealGiveFee
??
0
}
"
;
...
...
@@ -708,7 +708,7 @@ public List<IssuedPromptResponse> IssuedPrompt(per_allot allot, AllotRequest req
promptSeconds
.
Add
(
promptSecond
);
}
else
if
((
item
.
RealGiveFee
??
0
)
>=
0
&&
(
item
.
PreRealGiveFee
??
0
)
==
0
)
else
if
((
item
.
PreRealGiveFee
??
0
)
==
0
)
{
var
promptSecond
=
_mapper
.
Map
<
IssuedPromptResponse
>(
item
);
promptSecond
.
StatusRemake
=
""
;
...
...
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