From 1ce6b895cc4db3466bae3602b32fd9c8fc75428f Mon Sep 17 00:00:00 2001 From: Omair Saleh Date: Fri, 17 May 2024 13:42:54 +0800 Subject: [PATCH] hide the estimate for when the recipient will receive the payment --- .../components/bookings/elements/PaymentHistoryComponent.vue | 2 +- .../components/bookings/forms/CurrencyConverterComponent.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue b/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue index 7679b807..33cc6db5 100644 --- a/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue +++ b/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue @@ -233,7 +233,7 @@
Our Payment Proof
-
+

Payment proof will be uploaded {{ (parseFloat(item.interval.duration) + 1) <= 0 ? 'today' : (parseFloat(item.interval.duration) + 1) === 2 ? 'tomorrow' : 'in '+(parseFloat(item.interval.duration) + 1)+' days'}} at 4:00 PM

diff --git a/resources/assets/vue/components/bookings/forms/CurrencyConverterComponent.vue b/resources/assets/vue/components/bookings/forms/CurrencyConverterComponent.vue index c8c581ee..59291ed1 100644 --- a/resources/assets/vue/components/bookings/forms/CurrencyConverterComponent.vue +++ b/resources/assets/vue/components/bookings/forms/CurrencyConverterComponent.vue @@ -6,7 +6,7 @@ {{error}}
-
+
The recipient will receive the transfer amount by
{{ this.calculation.receive_date }}
@@ -225,7 +225,7 @@ if (!this.currentSegmentNames.includes('enable enter MYR rate')) { return true; } - + return false; }, },