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
c67f9475
Commit
c67f9475
authored
Dec 23, 2021
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修复
parent
8a2a9a7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
performance/Performance.Services/AllotCompute/ResultComputeService.cs
+5
-4
No files found.
performance/Performance.Services/AllotCompute/ResultComputeService.cs
View file @
c67f9475
...
...
@@ -746,14 +746,14 @@ public List<IssuedPromptResponse> GetChangeSecond(List<ag_secondallot> secondLis
promptSecond
.
IssueStatus
=
4
;
promptSeconds
.
Add
(
promptSecond
);
}
else
if
(
isDiffer
)
else
if
(
isDiffer
&&
(
item
.
PreRealGiveFee
??
0
)
!=
0
)
{
if
(
status
.
Contains
(
item
.
Status
.
Value
))
{
var
promptSecond
=
_mapper
.
Map
<
IssuedPromptResponse
>(
item
);
promptSecond
.
StatusRemake
=
$@"已提交或已审核科室实发绩效变更驳回,原金额:
{
item
.
RealGiveFee
??
0
:
0.
##
}
"
;
promptSecond
.
IssueStatus
=
2
;
promptSecond
.
RealGiveFee
=
item
.
PreRealGiveFee
;
promptSecond
.
IssueStatus
=
2
;
promptSeconds
.
Add
(
promptSecond
);
}
...
...
@@ -761,8 +761,8 @@ public List<IssuedPromptResponse> GetChangeSecond(List<ag_secondallot> secondLis
{
var
promptSecond
=
_mapper
.
Map
<
IssuedPromptResponse
>(
item
);
promptSecond
.
StatusRemake
=
$@"未提交科室实发绩效变更,原金额:
{
item
.
RealGiveFee
??
0
:
0.
##
}
"
;
promptSecond
.
IssueStatus
=
3
;
promptSecond
.
RealGiveFee
=
item
.
PreRealGiveFee
;
promptSecond
.
IssueStatus
=
3
;
promptSeconds
.
Add
(
promptSecond
);
}
}
...
...
@@ -770,11 +770,12 @@ public List<IssuedPromptResponse> GetChangeSecond(List<ag_secondallot> secondLis
{
var
promptSecond
=
_mapper
.
Map
<
IssuedPromptResponse
>(
item
);
promptSecond
.
StatusRemake
=
$"科室下发金额:
{
item
.
PreRealGiveFee
??
0
:
0.
##
}
,原金额:
{
item
.
RealGiveFee
??
0
:
0.
##
}
"
;
promptSecond
.
RealGiveFee
=
item
.
PreRealGiveFee
;
promptSecond
.
IssueStatus
=
1
;
promptSeconds
.
Add
(
promptSecond
);
}
}
promptSeconds
.
ForEach
(
item
=>
item
.
RealGiveFee
=
item
.
RealGiveFee
.
HasValue
?
item
.
RealGiveFee
.
Value
:
0
);
return
promptSeconds
;
}
}
...
...
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