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
f006b4c8
Commit
f006b4c8
authored
Nov 18, 2022
by
季圣华
Browse files
给采购入库和销售出库的欠款金额上面加上是否收付款的提示
parent
0ea22848
Changes
2
Hide whitespace changes
Inline
Side-by-side
jshERP-web/src/views/bill/PurchaseInList.vue
View file @
f006b4c8
...
...
@@ -151,8 +151,12 @@
</a-popconfirm>
</span>
<
template
slot=
"customRenderDebt"
slot-scope=
"value, record"
>
<span
style=
"color:green"
v-if=
"value>0 && record.hasFinancialFlag"
>
{{
value
}}
</span>
<span
style=
"color:red"
v-if=
"value>0 && !record.hasFinancialFlag"
>
{{
value
}}
</span>
<a-tooltip
title=
"有付款单"
>
<span
style=
"color:green"
v-if=
"value>0 && record.hasFinancialFlag"
>
{{
value
}}
</span>
</a-tooltip>
<a-tooltip
title=
"暂未付款"
>
<span
style=
"color:red"
v-if=
"value>0 && !record.hasFinancialFlag"
>
{{
value
}}
</span>
</a-tooltip>
<span
v-if=
"value===0"
>
{{
value
}}
</span>
</
template
>
<
template
slot=
"customRenderStatus"
slot-scope=
"status"
>
...
...
jshERP-web/src/views/bill/SaleOutList.vue
View file @
f006b4c8
...
...
@@ -152,8 +152,12 @@
</a-popconfirm>
</span>
<
template
slot=
"customRenderDebt"
slot-scope=
"value, record"
>
<span
style=
"color:green"
v-if=
"value>0 && record.hasFinancialFlag"
>
{{
value
}}
</span>
<span
style=
"color:red"
v-if=
"value>0 && !record.hasFinancialFlag"
>
{{
value
}}
</span>
<a-tooltip
title=
"有收款单"
>
<span
style=
"color:green"
v-if=
"value>0 && record.hasFinancialFlag"
>
{{
value
}}
</span>
</a-tooltip>
<a-tooltip
title=
"暂未收款"
>
<span
style=
"color:red"
v-if=
"value>0 && !record.hasFinancialFlag"
>
{{
value
}}
</span>
</a-tooltip>
<span
v-if=
"value===0"
>
{{
value
}}
</span>
</
template
>
<
template
slot=
"customRenderStatus"
slot-scope=
"status"
>
...
...
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