0
0
Fork 0

Apply right alignment to total and import columns

This commit is contained in:
William Buezas 2024-07-03 16:14:47 -03:00
parent 02ce4f2658
commit 8baf5b1489
1 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
</template> </template>
<template #body-cell-import="{ row }"> <template #body-cell-import="{ row }">
<QTd> <QTd>
<div class="column"> <div class="column text-right">
<span v-for="(saleComponent, index) in row.components" :key="index"> <span v-for="(saleComponent, index) in row.components" :key="index">
{{ toCurrency(saleComponent.value, 'EUR', 3) }} {{ toCurrency(saleComponent.value, 'EUR', 3) }}
</span> </span>
@ -348,7 +348,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
</template> </template>
<template #body-cell-total="{ row }"> <template #body-cell-total="{ row }">
<QTd> <QTd>
<div class="column"> <div class="column text-right">
<span v-for="(saleComponent, index) in row.components" :key="index"> <span v-for="(saleComponent, index) in row.components" :key="index">
{{ toCurrency(saleComponent.value * row.quantity, 'EUR', 3) }} {{ toCurrency(saleComponent.value * row.quantity, 'EUR', 3) }}
</span> </span>