From bcf7ae40983429609693b985e80a29b53d4aa91c Mon Sep 17 00:00:00 2001 From: omair saleh Date: Tue, 12 Oct 2021 14:07:21 +0800 Subject: [PATCH] fix daily cbm report --- .../reports/sections/MonthlySalesReportSectionComponent.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/assets/vue/components/reports/sections/MonthlySalesReportSectionComponent.vue b/resources/assets/vue/components/reports/sections/MonthlySalesReportSectionComponent.vue index 9e550c25..3e8ac237 100644 --- a/resources/assets/vue/components/reports/sections/MonthlySalesReportSectionComponent.vue +++ b/resources/assets/vue/components/reports/sections/MonthlySalesReportSectionComponent.vue @@ -43,7 +43,7 @@
-

{{(Math.ceil(report.total_cbm * 1000) / 1000).toFixed(3)}} {{(report.daily_cbm).toFixed(0)}} CBM/Day

+

{{(Math.ceil(report.total_cbm * 1000) / 1000).toFixed(3)}} +{{(report.daily_cbm).toFixed(0)}} CBM/Day

{{((report.total_cbm / 800) * 100).toFixed(2)}}% Goal: 800 CBM
@@ -105,7 +105,7 @@
-

{{report.active_customers}} +{{(report.total_cbm / report.active_customers).toFixed(3)}} CBM

+

{{report.active_customers}} {{(report.total_cbm / report.active_customers).toFixed(3)}} CBM

{{((report.active_customers / report.total_customers) * 100).toFixed(2)}}% Total Customers: {{report.total_customers}}