From 8a2fcb260de873b122d9dba5e4088a5cafca77e0 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Sun, 19 Dec 2021 20:34:30 +0800 Subject: [PATCH] fix purchase order input bug --- .../components/bookings/forms/PurchaseOrderFormComponent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue b/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue index 2df20f73..2804dbcb 100644 --- a/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue +++ b/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue @@ -240,7 +240,7 @@ unit_price: parseFloat((product.unit_price).toString().replace(',', '')), total: product.quantity * parseFloat((product.unit_price).toString().replace(',', '')) }; - console.log(this.productTotal); + console.log(this.poTotal); }, removeProduct(index){ this.products.splice(index, 1);