1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-11 02:37:21 +00:00

Merge pull request from overleaf/bg-add-inr-currency

add Indian Rupee (INR) prices to plan and group settings

GitOrigin-RevId: 6c058ed034d1566cfda17e73a8ba23d8bd7b7ab0
This commit is contained in:
Brian Gough 2023-04-26 16:50:27 +01:00 committed by Copybot
parent fe1dad8c0b
commit 426128554d
2 changed files with 111 additions and 0 deletions
services/web
app/templates/plans
frontend/js/main

View file

@ -139,6 +139,29 @@
"price_in_cents": 525000
}
},
"INR": {
"2": {
"price_in_cents": 1343800
},
"3": {
"price_in_cents": 2015700
},
"4": {
"price_in_cents": 2687600
},
"5": {
"price_in_cents": 3359500
},
"10": {
"price_in_cents": 3743000
},
"20": {
"price_in_cents": 6910000
},
"50": {
"price_in_cents": 15835000
}
},
"NOK": {
"2": {
"price_in_cents": 401600
@ -394,6 +417,29 @@
"price_in_cents": 260000
}
},
"INR": {
"2": {
"price_in_cents": 643800
},
"3": {
"price_in_cents": 965700
},
"4": {
"price_in_cents": 1287600
},
"5": {
"price_in_cents": 1609500
},
"10": {
"price_in_cents": 1793000
},
"20": {
"price_in_cents": 3310000
},
"50": {
"price_in_cents": 7585000
}
},
"NOK": {
"2": {
"price_in_cents": 202800
@ -651,6 +697,29 @@
"price_in_cents": 875000
}
},
"INR": {
"2": {
"price_in_cents": 1343800
},
"3": {
"price_in_cents": 2015700
},
"4": {
"price_in_cents": 2687600
},
"5": {
"price_in_cents": 3359500
},
"10": {
"price_in_cents": 6239000
},
"20": {
"price_in_cents": 11518000
},
"50": {
"price_in_cents": 26395000
}
},
"NOK": {
"2": {
"price_in_cents": 401600
@ -906,6 +975,29 @@
"price_in_cents": 435000
}
},
"INR": {
"2": {
"price_in_cents": 643800
},
"3": {
"price_in_cents": 965700
},
"4": {
"price_in_cents": 1287600
},
"5": {
"price_in_cents": 1609500
},
"10": {
"price_in_cents": 2989000
},
"20": {
"price_in_cents": 5518000
},
"50": {
"price_in_cents": 12645000
}
},
"NOK": {
"2": {
"price_in_cents": 202800

View file

@ -221,6 +221,25 @@ App.factory('MultiCurrencyPricing', function () {
annual: '$519',
},
},
INR: {
symbol: '₹',
student: {
monthly: '₹219',
annual: '₹2199',
},
personal: {
monthly: '₹339',
annual: '₹2999',
},
collaborator: {
monthly: '₹499',
annual: '₹4599',
},
professional: {
monthly: '₹999',
annual: '₹9599',
},
},
},
}
})