From 3e84642583e7a93790cbb776cb48ae496ca34706 Mon Sep 17 00:00:00 2001 From: mono Date: Sat, 14 Mar 2026 23:54:26 -0500 Subject: [PATCH] #35 feat: add payment method to purchase summary template --- src/components/SummaryPurchase.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/SummaryPurchase.vue b/src/components/SummaryPurchase.vue index a4062de..805102c 100644 --- a/src/components/SummaryPurchase.vue +++ b/src/components/SummaryPurchase.vue @@ -52,6 +52,7 @@ {{ item.id }} {{ item.date }} {{ item.customer.name }} + {{ item.payment_method }} {{ currencyFormat(calculateTotal(item.lines)) }} @@ -87,6 +88,7 @@ {title: 'Compra', value: 'id'}, {title: 'Fecha', value: 'date'}, {title: 'Nombre', value: 'customer.name'}, + {title: 'Método de pago', value: 'payment_method'}, {title: 'Valor', value: ''}, ], }; -- 2.49.1