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
49df4bad
Commit
49df4bad
authored
Mar 09, 2019
by
季圣华
Browse files
优化对账报表的页面显示
parent
d2dc7810
Changes
2
Hide whitespace changes
Inline
Side-by-side
erp_web/pages/reports/customer_account.html
View file @
49df4bad
...
...
@@ -47,7 +47,7 @@
<td>
</td>
<td>
期初应收:
<span
class=
"first-total"
>
0
</span>
期末应收:
<span
class=
"last-total"
>
0
</span>
期末应收:
<span
class=
"last-total"
>
0
</span>
<span
id=
"pleaseSelect"
>
(请选择客户)
</span>
</td>
</tr>
</table>
...
...
@@ -261,6 +261,7 @@
var
moneyBeginNeedPay
=
beginNeedPay
-
0
;
//期初应付
money
=
(
money
+
moneyBeginNeedGet
-
moneyBeginNeedPay
).
toFixed
(
2
);
$
(
"
.first-total
"
).
text
(
money
);
//期初结存
$
(
"
#pleaseSelect
"
).
hide
();
}
},
error
:
function
()
{
...
...
@@ -309,6 +310,7 @@
var
moneyBeginNeedPay
=
beginNeedPay
-
0
;
//期初应付
money
=
(
money
+
moneyBeginNeedGet
-
moneyBeginNeedPay
).
toFixed
(
2
);
$
(
"
.last-total
"
).
text
(
money
);
//期末合计
$
(
"
#pleaseSelect
"
).
hide
();
}
},
error
:
function
()
{
...
...
erp_web/pages/reports/vendor_account.html
View file @
49df4bad
...
...
@@ -47,7 +47,7 @@
<td>
</td>
<td>
期初应付:
<span
class=
"first-total"
>
0
</span>
期末应付:
<span
class=
"last-total"
>
0
</span>
期末应付:
<span
class=
"last-total"
>
0
</span>
<span
id=
"pleaseSelect"
>
(请选择供应商)
</span>
</td>
</tr>
</table>
...
...
@@ -260,6 +260,7 @@
var
moneyBeginNeedPay
=
beginNeedPay
-
0
;
//期初应付
money
=
(
money
+
moneyBeginNeedPay
-
moneyBeginNeedGet
).
toFixed
(
2
);
$
(
"
.first-total
"
).
text
(
money
);
//期初结存
$
(
"
#pleaseSelect
"
).
hide
();
}
},
error
:
function
()
{
...
...
@@ -308,6 +309,7 @@
var
moneyBeginNeedPay
=
beginNeedPay
-
0
;
//期初应付
money
=
(
money
+
moneyBeginNeedPay
-
moneyBeginNeedGet
).
toFixed
(
2
);
$
(
"
.last-total
"
).
text
(
money
);
//期末合计
$
(
"
#pleaseSelect
"
).
hide
();
}
},
error
:
function
()
{
...
...
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