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
07dda011
Commit
07dda011
authored
4 years ago
by
lzxry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导出空指针
parent
65468cb1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
ContractController.java
src/main/java/common/controller/ContractController.java
+6
-6
No files found.
src/main/java/common/controller/ContractController.java
View file @
07dda011
...
@@ -653,13 +653,13 @@ public class ContractController {
...
@@ -653,13 +653,13 @@ public class ContractController {
rowBody
.
createCell
(
7
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getStatus
()));
rowBody
.
createCell
(
7
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getStatus
()));
rowBody
.
createCell
(
8
).
setCellValue
(
df
.
format
(
contract
.
getMoney
()));
rowBody
.
createCell
(
8
).
setCellValue
(
df
.
format
(
contract
.
getMoney
()));
rowBody
.
createCell
(
9
).
setCellValue
(
contract
.
getTrackFlow
());
rowBody
.
createCell
(
9
).
setCellValue
(
contract
.
getTrackFlow
());
rowBody
.
createCell
(
10
).
setCellValue
(
contract
.
getUnitPrice
());
rowBody
.
createCell
(
10
).
setCellValue
(
contract
.
getUnitPrice
()
==
null
?
0
:
contract
.
getUnitPrice
()
);
rowBody
.
createCell
(
11
).
setCellValue
(
contract
.
getClickFlow
()==
null
?
0.0
:
contract
.
getClickFlow
());
rowBody
.
createCell
(
11
).
setCellValue
(
contract
.
getClickFlow
()==
null
?
0.0
:
contract
.
getClickFlow
());
rowBody
.
createCell
(
12
).
setCellValue
(
df
.
format
(
contract
.
getIntervaIncomeShare
()
/
100.0
));
rowBody
.
createCell
(
12
).
setCellValue
(
df
.
format
(
contract
.
getIntervaIncomeShare
()
==
null
?
0
:
contract
.
getIntervaIncomeShare
()
/
100.0
));
rowBody
.
createCell
(
13
).
setCellValue
(
df
.
format
(
contract
.
getAdjustmentFund
()
/
100.0
));
rowBody
.
createCell
(
13
).
setCellValue
(
df
.
format
(
contract
.
getAdjustmentFund
()
==
null
?
0
:
contract
.
getAdjustmentFund
()
/
100.0
));
rowBody
.
createCell
(
14
).
setCellValue
(
df
.
format
(
contract
.
getIncomeShareAll
()
/
100.0
));
rowBody
.
createCell
(
14
).
setCellValue
(
df
.
format
(
contract
.
getIncomeShareAll
()
==
null
?
0
:
contract
.
getIncomeShareAll
()
/
100.0
));
rowBody
.
createCell
(
15
).
setCellValue
(
df
.
format
(
contract
.
getIncomeGross
()
/
100.0
));
rowBody
.
createCell
(
15
).
setCellValue
(
df
.
format
(
contract
.
getIncomeGross
()
==
null
?
0
:
contract
.
getIncomeGross
()
/
100.0
));
rowBody
.
createCell
(
16
).
setCellValue
(
df2
.
format
(
contract
.
getExtraFlow
()
/
10000.0
));
rowBody
.
createCell
(
16
).
setCellValue
(
df2
.
format
(
contract
.
getExtraFlow
()
==
null
?
0
:
contract
.
getExtraFlow
()
/
10000.0
));
rowBody
.
createCell
(
17
).
setCellValue
(
contract
.
getRelationCode
()
==
null
?
""
:
contract
.
getRelationCode
());
rowBody
.
createCell
(
17
).
setCellValue
(
contract
.
getRelationCode
()
==
null
?
""
:
contract
.
getRelationCode
());
rowBody
.
createCell
(
18
).
setCellValue
(
contract
.
getSignedDate
()
==
null
?
""
:
contract
.
getSignedDate
());
rowBody
.
createCell
(
18
).
setCellValue
(
contract
.
getSignedDate
()
==
null
?
""
:
contract
.
getSignedDate
());
}
}
...
...
This diff is collapsed.
Click to expand it.
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