mirror of
https://github.com/frappe/books.git
synced 2025-02-13 17:39:09 +00:00
commit
4a53e0c344
@ -165,6 +165,22 @@
|
|||||||
<div>{{ _('Grand Total') }}</div>
|
<div>{{ _('Grand Total') }}</div>
|
||||||
<div>{{ formattedValue('grandTotal') }}</div>
|
<div>{{ formattedValue('grandTotal') }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div
|
||||||
|
v-if="doc.outstandingAmount > 0"
|
||||||
|
class="
|
||||||
|
flex
|
||||||
|
pl-2
|
||||||
|
justify-between
|
||||||
|
py-3
|
||||||
|
border-t
|
||||||
|
text-red-600
|
||||||
|
font-semibold
|
||||||
|
text-base
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<div>{{ _('Outstanding Amount') }}</div>
|
||||||
|
<div>{{ formattedValue('outstandingAmount') }}</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -107,10 +107,10 @@
|
|||||||
:read-only="doc.submitted"
|
:read-only="doc.submitted"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-right font-semibold text-green-700 px-3">
|
<div class="text-right font-semibold text-green-600 px-3">
|
||||||
{{ totalDebit }}
|
{{ totalDebit }}
|
||||||
</div>
|
</div>
|
||||||
<div class="text-right font-semibold text-red-700 px-3">
|
<div class="text-right font-semibold text-red-600 px-3">
|
||||||
{{ totalCredit }}
|
{{ totalCredit }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -30,7 +30,8 @@
|
|||||||
meta.isSubmittable &&
|
meta.isSubmittable &&
|
||||||
doc &&
|
doc &&
|
||||||
!doc.submitted &&
|
!doc.submitted &&
|
||||||
!doc._notInserted
|
!doc._notInserted &&
|
||||||
|
!(doc.cancelled || false)
|
||||||
"
|
"
|
||||||
class="ml-2 text-white text-xs"
|
class="ml-2 text-white text-xs"
|
||||||
>
|
>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user