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
bebfec0c
Commit
bebfec0c
authored
4 years ago
by
lzxry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导出空指针错误
parent
bc55e647
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ContractController.java
src/main/java/common/controller/ContractController.java
+4
-4
No files found.
src/main/java/common/controller/ContractController.java
View file @
bebfec0c
...
@@ -163,9 +163,9 @@ public class ContractController {
...
@@ -163,9 +163,9 @@ public class ContractController {
rowBody
.
createCell
(
11
).
setCellValue
(
contract
.
getPriceLevelName
());
rowBody
.
createCell
(
11
).
setCellValue
(
contract
.
getPriceLevelName
());
if
(
platform
.
equals
(
"tkio"
)){
if
(
platform
.
equals
(
"tkio"
)){
rowBody
.
createCell
(
12
).
setCellValue
(
contract
.
getTrackFlow
());
rowBody
.
createCell
(
12
).
setCellValue
(
contract
.
getTrackFlow
()
==
null
?
0
:
contract
.
getTrackFlow
()
);
rowBody
.
createCell
(
13
).
setCellValue
(
contract
.
getExtraFlow
());
rowBody
.
createCell
(
13
).
setCellValue
(
contract
.
getExtraFlow
()
==
null
?
0
:
contract
.
getExtraFlow
()
);
rowBody
.
createCell
(
14
).
setCellValue
(
contract
.
getMoney
());
rowBody
.
createCell
(
14
).
setCellValue
(
contract
.
getMoney
()
==
null
?
0
:
contract
.
getMoney
()
);
rowBody
.
createCell
(
15
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getContractType
()));
rowBody
.
createCell
(
15
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getContractType
()));
rowBody
.
createCell
(
16
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getStatus
()));
rowBody
.
createCell
(
16
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getStatus
()));
rowBody
.
createCell
(
17
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getBackStatus
()
+
"_back"
));
rowBody
.
createCell
(
17
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getBackStatus
()
+
"_back"
));
...
@@ -173,7 +173,7 @@ public class ContractController {
...
@@ -173,7 +173,7 @@ public class ContractController {
rowBody
.
createCell
(
19
).
setCellValue
(
contract
.
getRelationCode
()
==
null
?
""
:
contract
.
getRelationCode
());
rowBody
.
createCell
(
19
).
setCellValue
(
contract
.
getRelationCode
()
==
null
?
""
:
contract
.
getRelationCode
());
rowBody
.
createCell
(
20
).
setCellValue
(
contract
.
getSignedDate
()
==
null
?
""
:
contract
.
getSignedDate
());
rowBody
.
createCell
(
20
).
setCellValue
(
contract
.
getSignedDate
()
==
null
?
""
:
contract
.
getSignedDate
());
}
else
{
}
else
{
rowBody
.
createCell
(
12
).
setCellValue
(
contract
.
getMoney
());
rowBody
.
createCell
(
12
).
setCellValue
(
contract
.
getMoney
()
==
null
?
0
:
contract
.
getMoney
()
);
rowBody
.
createCell
(
13
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getContractType
()));
rowBody
.
createCell
(
13
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getContractType
()));
rowBody
.
createCell
(
14
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getStatus
()));
rowBody
.
createCell
(
14
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getStatus
()));
rowBody
.
createCell
(
15
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getBackStatus
()
+
"_back"
));
rowBody
.
createCell
(
15
).
setCellValue
(
CONTRACT_STATUS
.
get
(
contract
.
getBackStatus
()
+
"_back"
));
...
...
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