7729-devToTest_2430 #554

Merged
alexm merged 401 commits from 7729-devToTest_2430 into test 2024-07-16 07:17:04 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 8baf5b1489 - Show all commits

View File

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