fix currency issue

This commit is contained in:
makwanar587
2021-12-01 16:24:23 +05:30
parent e22f60ff16
commit e30b99a730
4 changed files with 8 additions and 5 deletions

View File

@ -184,7 +184,7 @@
<!-- Estimate date -->
<template #cell-estimate_date="{ row }">
{{ row.data.formatted_estimate_date }}
{{ row.data.formatted_estimate_date }}
</template>
<template #cell-estimate_number="{ row }">
@ -209,7 +209,10 @@
</template>
<template #cell-total="{ row }">
<BaseFormatMoney :amount="row.data.total" />
<BaseFormatMoney
:amount="row.data.total"
:currency="row.data.customer.currency"
/>
</template>
<!-- Actions -->