mirror of
https://github.com/mokuappio/serverless-invoices.git
synced 2025-10-27 16:01:07 -04:00
58 lines
1.5 KiB
Vue
58 lines
1.5 KiB
Vue
<template>
|
|
<tfoot>
|
|
<tr class="text-right">
|
|
<td :colspan="colspan">{{ $t('subtotal') }}</td>
|
|
<td>{{ invoice.subTotal | currency }}</td>
|
|
</tr>
|
|
<tr class="text-right" v-for="tax in invoice.taxes" :key="tax.label">
|
|
<td :colspan="colspan">
|
|
{{ tax.label }}
|
|
<!--({{ tax.rate | currency }}%)-->
|
|
</td>
|
|
<td>{{ tax.total | currency }}</td>
|
|
</tr>
|
|
<tr class="text-right">
|
|
<th :colspan="colspan">
|
|
{{ $t('total') }}
|
|
<AppEditable :value="invoice.currency"
|
|
:errors="errors"
|
|
field="currency"
|
|
:placeholder="$t('add_currency')"
|
|
@change="updateProp({ currency: $event })"/>
|
|
</th>
|
|
<th class="text-nowrap">{{ invoice.total | currency }}</th>
|
|
</tr>
|
|
</tfoot>
|
|
</template>
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import AppEditable from '../form/AppEditable';
|
|
import { formatDate } from '../../filters/date.filter';
|
|
import { formatCurrency } from '../../filters/currency.filter';
|
|
|
|
export default {
|
|
i18nOptions: { namespaces: 'invoice-totals' },
|
|
props: ['invoice', 'errors'],
|
|
components: {
|
|
AppEditable,
|
|
},
|
|
filters: {
|
|
date: formatDate,
|
|
currency: formatCurrency,
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
taxes: 'invoiceRows/taxes',
|
|
}),
|
|
colspan() {
|
|
return 4 + this.taxes.length;
|
|
},
|
|
},
|
|
methods: {
|
|
updateProp(props) {
|
|
this.$emit('update', props);
|
|
},
|
|
},
|
|
};
|
|
</script>
|