diff --git a/dashboard/src2/components/BuyPrepaidCreditsStripe.vue b/dashboard/src2/components/BuyPrepaidCreditsStripe.vue index 735eb11554..84e0e9d5a0 100644 --- a/dashboard/src2/components/BuyPrepaidCreditsStripe.vue +++ b/dashboard/src2/components/BuyPrepaidCreditsStripe.vue @@ -86,7 +86,7 @@ export default { !this.$team.doc.erpnext_partner ) { throw new DashboardError( - `Amount must be greater than ${this.minimumAmount}` + `Amount must be greater than or equal to ${this.minimumAmount}` ); } }, diff --git a/dashboard/src2/components/in_desk_checkout/BuyPrepaidCreditsStripe.vue b/dashboard/src2/components/in_desk_checkout/BuyPrepaidCreditsStripe.vue index 29f2719a49..55bc2c5e92 100644 --- a/dashboard/src2/components/in_desk_checkout/BuyPrepaidCreditsStripe.vue +++ b/dashboard/src2/components/in_desk_checkout/BuyPrepaidCreditsStripe.vue @@ -87,7 +87,7 @@ export default { !this.team?.data?.erpnext_partner ) { throw new DashboardError( - `Amount must be greater than ${this.minimumAmount}` + `Amount must be greater than or equal to ${this.minimumAmount}` ); } }, diff --git a/dashboard/src2/pages/BillingOverview.vue b/dashboard/src2/pages/BillingOverview.vue index 18a090b968..be0acfc75b 100644 --- a/dashboard/src2/pages/BillingOverview.vue +++ b/dashboard/src2/pages/BillingOverview.vue @@ -191,7 +191,7 @@ export default { computed: { minimumAmount() { const unpaidAmount = this.$resources.unpaidAmountDue.data; - const minimumDefault = this.$team.doc.currency == 'INR' ? 800 : 10; + const minimumDefault = this.$team.doc.currency == 'INR' ? 410 : 5; return Math.ceil( unpaidAmount && unpaidAmount > 0 ? unpaidAmount : minimumDefault diff --git a/dashboard/src2/pages/saas/in_desk_billing/Overview.vue b/dashboard/src2/pages/saas/in_desk_billing/Overview.vue index 28529d346f..3c7be33b37 100644 --- a/dashboard/src2/pages/saas/in_desk_billing/Overview.vue +++ b/dashboard/src2/pages/saas/in_desk_billing/Overview.vue @@ -295,7 +295,7 @@ export default { computed: { minimumAmount() { const unpaidAmount = this.$resources.unpaidAmountDue.data; - const minimumDefault = this.team?.data?.currency == 'INR' ? 800 : 10; + const minimumDefault = this.team?.data?.currency == 'INR' ? 410 : 5; return Math.ceil( unpaidAmount && unpaidAmount > minimumDefault