Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
manager
Project
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
reyun
manager
Commits
4ad08b19
Commit
4ad08b19
authored
May 29, 2020
by
kangxiaoshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
6f8bcebf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
ContractController.java
src/main/java/common/controller/ContractController.java
+10
-10
No files found.
src/main/java/common/controller/ContractController.java
View file @
4ad08b19
...
...
@@ -449,16 +449,16 @@ public class ContractController {
sb
.
append
(
"我方签约主体,签约方,合同编号,合同金额,不含税收入,合同开始时间,合同截止时间,区间使用天数,区间分摊收入,调整额,分摊总收入\r\n"
);
if
(
ValidateUtil
.
isValid
(
contracts
))
{
for
(
Contract
c
:
contracts
)
{
sb
.
append
(
c
.
getMyBodyName
())
.
append
(
c
.
getCustomerBody
())
.
append
(
c
.
getContractCode
())
.
append
(
"\""
).
append
(
df
.
format
(
c
.
getMoney
())).
append
(
"\""
)
.
append
(
"\""
).
append
(
df
.
format
(
c
.
getIncomeExcludingTax
()
*
1.0
/
100
)).
append
(
"\""
)
.
append
(
c
.
getStartDate
())
.
append
(
c
.
getEndDate
())
.
append
(
c
.
getIntervalUseDays
())
.
append
(
"\""
).
append
(
df
.
format
(
c
.
getIntervaIncomeShare
()
*
1.0
/
100
)).
append
(
"\""
)
.
append
(
"\""
).
append
(
df
.
format
(
c
.
getAdjustmentFund
()
*
1.0
/
100
)).
append
(
"\""
)
sb
.
append
(
c
.
getMyBodyName
())
.
append
(
","
)
.
append
(
c
.
getCustomerBody
())
.
append
(
","
)
.
append
(
c
.
getContractCode
())
.
append
(
","
)
.
append
(
"\""
).
append
(
df
.
format
(
c
.
getMoney
())).
append
(
"\"
,
"
)
.
append
(
"\""
).
append
(
df
.
format
(
c
.
getIncomeExcludingTax
()
*
1.0
/
100
)).
append
(
"\"
,
"
)
.
append
(
c
.
getStartDate
())
.
append
(
","
)
.
append
(
c
.
getEndDate
())
.
append
(
","
)
.
append
(
c
.
getIntervalUseDays
())
.
append
(
","
)
.
append
(
"\""
).
append
(
df
.
format
(
c
.
getIntervaIncomeShare
()
*
1.0
/
100
)).
append
(
"\"
,
"
)
.
append
(
"\""
).
append
(
df
.
format
(
c
.
getAdjustmentFund
()
*
1.0
/
100
)).
append
(
"\"
,
"
)
.
append
(
"\""
).
append
(
df
.
format
(
c
.
getIncomeShareAll
()
*
1.0
/
100
)).
append
(
"\""
)
.
append
(
"\r\n"
);
}
...
...
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