From cddf7953e673b7ffe3e46ec23e13ad4f4728f038 Mon Sep 17 00:00:00 2001 From: Eric Date: Thu, 8 Dec 2022 13:01:24 -0600 Subject: [PATCH] Update Fleet Premium pricing (#8966) * update Fleet Premium price * Update new-license.ejs --- website/api/controllers/customers/create-quote.js | 4 ++-- website/views/pages/customers/dashboard.ejs | 2 +- website/views/pages/customers/new-license.ejs | 4 ++-- website/views/pages/pricing.ejs | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/website/api/controllers/customers/create-quote.js b/website/api/controllers/customers/create-quote.js index 789992a7f2..772c6c7f18 100644 --- a/website/api/controllers/customers/create-quote.js +++ b/website/api/controllers/customers/create-quote.js @@ -24,8 +24,8 @@ module.exports = { fn: async function ({ numberOfHosts }) { - // Determine the price, 1 dollar * host * month (Billed anually) - let price = 2.00 * numberOfHosts * 12; + // Determine the price, 5 dollars * host * month (Billed anually) + let price = 5.00 * numberOfHosts * 12; let quote = await Quote.create({ numberOfHosts: numberOfHosts, diff --git a/website/views/pages/customers/dashboard.ejs b/website/views/pages/customers/dashboard.ejs index ceef34d62d..b548dd2958 100644 --- a/website/views/pages/customers/dashboard.ejs +++ b/website/views/pages/customers/dashboard.ejs @@ -74,7 +74,7 @@
A calendar icon
-

{{thisSubscription.numberOfHosts}} devices @ $1.00/device/month

+

{{thisSubscription.numberOfHosts}} devices @ ${{thisSubscription.subscriptionPrice / thisSubscription.numberOfHosts / 12}}.00/device/month

Billed annually at ${{thisSubscription.subscriptionPrice}}.00/yr

Next payment on

diff --git a/website/views/pages/customers/new-license.ejs b/website/views/pages/customers/new-license.ejs index cdb1b9b3ae..192284e242 100644 --- a/website/views/pages/customers/new-license.ejs +++ b/website/views/pages/customers/new-license.ejs @@ -18,7 +18,7 @@

- $2.00/month/device
(Billed annually at $24/device) + $5.00/month/device
(Billed annually at $60/device)

@@ -29,7 +29,7 @@ Order total
- ${{(!showQuotedPrice || _.isNaN(formData.numberOfHosts * 24)) ? quotedPrice : formData.numberOfHosts * 24}}.00 /year + ${{(!showQuotedPrice || _.isNaN(formData.numberOfHosts * 5.00 * 12)) ? quotedPrice : formData.numberOfHosts * 5.00 * 12}}.00 /year
diff --git a/website/views/pages/pricing.ejs b/website/views/pages/pricing.ejs index 202615e16a..718da73c97 100644 --- a/website/views/pages/pricing.ejs +++ b/website/views/pages/pricing.ejs @@ -39,10 +39,10 @@

Premium

-

$2

+

$5

/host/month

- (USD, billed annually at $24) + (USD, billed annually at $60)