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
f71674a4
Commit
f71674a4
authored
3 years ago
by
kangxiaoshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmp合同金额可以为空
parent
eb7cf3d9
master
…
2580_fix
master_mv
mobvista_master
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
DmpIncomeServiceImpl.java
src/main/java/common/service/impl/DmpIncomeServiceImpl.java
+1
-1
No files found.
src/main/java/common/service/impl/DmpIncomeServiceImpl.java
View file @
f71674a4
...
@@ -526,7 +526,7 @@ public class DmpIncomeServiceImpl implements DmpIncomeService {
...
@@ -526,7 +526,7 @@ public class DmpIncomeServiceImpl implements DmpIncomeService {
contract
.
setBusinessTypeName
(
getCellStringValue
(
rowItem
,
13
));
contract
.
setBusinessTypeName
(
getCellStringValue
(
rowItem
,
13
));
contract
.
setAgreementTypeName
(
getCellStringValue
(
rowItem
,
14
));
contract
.
setAgreementTypeName
(
getCellStringValue
(
rowItem
,
14
));
String
money
=
getCellStringValue
(
rowItem
,
15
,
"0"
);
String
money
=
getCellStringValue
(
rowItem
,
15
,
"0"
);
if
(
StringUtils
.
isEmpty
(
money
))
{
if
(
money
==
null
||
StringUtils
.
isEmpty
(
money
.
trim
()
))
{
money
=
"0"
;
money
=
"0"
;
}
}
contract
.
setMoney
(
Double
.
parseDouble
(
money
));
contract
.
setMoney
(
Double
.
parseDouble
(
money
));
...
...
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