- corretto la gestione degli Sconti

- Duplicare un Catalogo
This commit is contained in:
Surya Paolo
2025-06-11 01:05:20 +02:00
parent 56d1870bc1
commit d99ad47483
17 changed files with 296 additions and 147 deletions

View File

@@ -402,6 +402,7 @@ export default defineComponent({
// Add other properties as needed
totalPrice: orderscart.reduce((total: number, rec: any) => total + rec.totalPrice, 0),
totalPriceCalc: orderscart.reduce((total: number, rec: any) => total + rec.totalPriceCalc, 0),
totalPriceIntero: orderscart.reduce((total: number, rec: any) => total + rec.totalPriceIntero, 0),
};
let rowsWithTotals: any = [...orderscart];

View File

@@ -233,6 +233,11 @@
caption
>{{ props.row.totalPriceCalc }} €</q-item-label
>
<q-item-label
v-else-if="col.name === 'totalPriceIntero'"
caption
>{{ props.row.totalPriceIntero }} €</q-item-label
>
<q-item-label
v-else-if="col.name === 'status'"
caption