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
cd4ecec7
Commit
cd4ecec7
authored
Nov 20, 2017
by
季圣华
Browse files
解决单据明细保存失败的问题(单价为0的情况)
parent
2b4afc09
Changes
1
Show whitespace changes
Inline
Side-by-side
src/main/webapp/js/pages/materials/in_out.js
View file @
cd4ecec7
...
...
@@ -2870,7 +2870,7 @@
var row = $('#materialData').datagrid('getRows');
var totalRowNum = "";
for (var i = 0; i < row.length; i++) {
if
(
row
[
i
].
MaterialId
==
""
||
row
[
i
].
OperNumber
==
""
||
row
[
i
].
UnitPrice
==
""
||
row
[
i
].
AllPrice
==
""
)
{
if (row[i].MaterialId == "" || row[i].OperNumber == "" || row[i].UnitPrice ==
=
"" || row[i].AllPrice ==
=
"") {
totalRowNum += (i + 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