Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
c0ed080a
Commit
c0ed080a
authored
Jul 02, 2017
by
季圣华
Browse files
修复用户预付款默认值为空的bug
parent
79dad49a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/com/jsh/action/basic/SupplierAction.java
View file @
c0ed080a
...
...
@@ -44,6 +44,7 @@ public class SupplierAction extends BaseAction<SupplierModel>
supplier
.
setType
(
model
.
getType
());
supplier
.
setDescription
(
model
.
getDescription
());
supplier
.
setEmail
(
model
.
getEmail
());
supplier
.
setAdvanceIn
(
0.0
);
supplier
.
setBeginNeedGet
(
model
.
getBeginNeedGet
());
supplier
.
setBeginNeedPay
(
model
.
getBeginNeedPay
());
supplier
.
setIsystem
((
short
)
1
);
...
...
@@ -124,6 +125,7 @@ public class SupplierAction extends BaseAction<SupplierModel>
supplier
.
setType
(
model
.
getType
());
supplier
.
setDescription
(
model
.
getDescription
());
supplier
.
setEmail
(
model
.
getEmail
());
supplier
.
setAdvanceIn
(
supplier
.
getAdvanceIn
());
supplier
.
setBeginNeedGet
(
model
.
getBeginNeedGet
());
supplier
.
setBeginNeedPay
(
model
.
getBeginNeedPay
());
supplier
.
setIsystem
((
short
)
1
);
...
...
Write
Preview
Supports
Markdown
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