Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
李苗
/
Vion-DevOps
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 0004d1ae
authored
Oct 29, 2024
by
HlQ
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[fix] 合同付款比例bug修改
1 parent
d55512b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/vion/cron/ContractRunner.java
src/main/java/vion/cron/ContractRunner.java
View file @
0004d1a
...
...
@@ -402,7 +402,7 @@ public class ContractRunner {
// 维保进度款
ContractPayment
maintainProgressPayment
=
new
ContractPayment
();
maintainProgressPayment
.
setId
(
contractId2PaymentMap
.
getOrDefault
(
contract
.
getId
(),
new
HashMap
<>()).
get
(
7
));
maintainProgressPayment
.
setId
(
contractId2PaymentMap
.
getOrDefault
(
contract
.
getId
(),
new
HashMap
<>()).
get
(
9
));
maintainProgressPayment
.
setContractId
(
contract
.
getId
());
maintainProgressPayment
.
setPaymentType
(
9
);
maintainProgressPayment
.
setPaymentRatio
(
Opt
.
ofNullable
(
contract
.
getMaintainProgressRatio
()).
orElse
(
BigDecimal
.
ZERO
));
...
...
@@ -411,7 +411,7 @@ public class ContractRunner {
// 维保验收款
ContractPayment
maintainAcceptancePayment
=
new
ContractPayment
();
maintainAcceptancePayment
.
setId
(
contractId2PaymentMap
.
getOrDefault
(
contract
.
getId
(),
new
HashMap
<>()).
get
(
8
));
maintainAcceptancePayment
.
setId
(
contractId2PaymentMap
.
getOrDefault
(
contract
.
getId
(),
new
HashMap
<>()).
get
(
10
));
maintainAcceptancePayment
.
setContractId
(
contract
.
getId
());
maintainAcceptancePayment
.
setPaymentType
(
10
);
maintainAcceptancePayment
.
setPaymentRatio
(
Opt
.
ofNullable
(
contract
.
getMaintainAcceptanceRatio
()).
orElse
(
BigDecimal
.
ZERO
));
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment