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
eb7cf3d9
Commit
eb7cf3d9
authored
3 years ago
by
kangxiaoshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmp合同金额可以为空
parent
81170a96
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
DmpIncomeServiceImpl.java
src/main/java/common/service/impl/DmpIncomeServiceImpl.java
+5
-1
No files found.
src/main/java/common/service/impl/DmpIncomeServiceImpl.java
View file @
eb7cf3d9
...
@@ -525,7 +525,11 @@ public class DmpIncomeServiceImpl implements DmpIncomeService {
...
@@ -525,7 +525,11 @@ public class DmpIncomeServiceImpl implements DmpIncomeService {
contract
.
setContractType
(
getCellStringValue
(
rowItem
,
12
));
contract
.
setContractType
(
getCellStringValue
(
rowItem
,
12
));
contract
.
setBusinessTypeName
(
getCellStringValue
(
rowItem
,
13
));
contract
.
setBusinessTypeName
(
getCellStringValue
(
rowItem
,
13
));
contract
.
setAgreementTypeName
(
getCellStringValue
(
rowItem
,
14
));
contract
.
setAgreementTypeName
(
getCellStringValue
(
rowItem
,
14
));
contract
.
setMoney
(
Double
.
parseDouble
(
getCellStringValue
(
rowItem
,
15
,
"0"
)));
String
money
=
getCellStringValue
(
rowItem
,
15
,
"0"
);
if
(
StringUtils
.
isEmpty
(
money
))
{
money
=
"0"
;
}
contract
.
setMoney
(
Double
.
parseDouble
(
money
));
contract
.
setRelationCode
(
getCellStringValue
(
rowItem
,
16
));
contract
.
setRelationCode
(
getCellStringValue
(
rowItem
,
16
));
}
}
...
...
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