- corretto la gestione degli Sconti
- Duplicare un Catalogo
This commit is contained in:
@@ -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];
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user