forked from verdnatura/salix-front
Apply right alignment to total and import columns
This commit is contained in:
parent
02ce4f2658
commit
8baf5b1489
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue