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
41504265
Commit
41504265
authored
Dec 22, 2018
by
季圣华
Browse files
去掉单据明细里面显示的null
parent
331cc271
Changes
1
Hide whitespace changes
Inline
Side-by-side
erp_web/js/pages/materials/bill_detail.js
View file @
41504265
...
...
@@ -224,8 +224,8 @@
$
(
"
#bill .DiscountLastMoneyShow
"
).
text
(
data
.
discountlastmoney
);
$
(
"
#bill .ChangeAmountShow
"
).
text
(
data
.
changeamount
);
$
(
"
#bill .DebtShow
"
).
text
((
data
.
discountlastmoney
-
data
.
changeamount
).
toFixed
(
2
));
$
(
"
#bill .OtherMoneyShow
"
).
text
(
data
.
othermoney
);
$
(
"
#bill .AccountDayShow
"
).
text
(
data
.
accountday
);
//结算天数
$
(
"
#bill .OtherMoneyShow
"
).
text
(
data
.
othermoney
==
null
?
""
:
data
.
othermoney
);
$
(
"
#bill .AccountDayShow
"
).
text
(
data
.
accountday
==
null
?
""
:
data
.
accountday
);
//结算天数
var
otherMoney
=
data
.
othermoney
+
""
;
var
otherMoneyList
=
data
.
othermoneylist
+
""
;
var
otherMoneyItem
=
data
.
othermoneyitem
+
""
;
...
...
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