From ea86da26d775aefb3f57e6495cb0f3c863326dfe Mon Sep 17 00:00:00 2001 From: omair saleh Date: Tue, 25 May 2021 10:52:48 +0800 Subject: [PATCH] purchase order value must match booking total up to 2 decimal --- .../bookings/forms/PurchaseOrderFormComponent.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue b/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue index e49227ad..135275d8 100644 --- a/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue +++ b/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue @@ -123,17 +123,17 @@
Total:
-
{{(Math.round(( poTotal + Number.EPSILON) * 100) / 100).toFixed(2)}}/{{(Math.round((data.amount + Number.EPSILON) * 100) / 100).toFixed(2)}} {{data.fixed_currency.short_code}}
+
{{(Math.round(( poTotal + Number.EPSILON) * 100) / 100).toFixed(2)}}/{{(Math.round((data.amount + Number.EPSILON) * 100) / 100).toFixed(2)}} {{data.fixed_currency.short_code}}
- +
-
+
** you purchase order will be saved but wont be approved until your purchase order's total matches your transfer order's total.