FEATURE: Add BRL currency support
This commit is contained in:
parent
4830468e32
commit
88f36c18a6
|
@ -44,6 +44,8 @@ class PaymentSerializer < ApplicationSerializer
|
|||
"£"
|
||||
when "inr"
|
||||
"₹"
|
||||
when "brl"
|
||||
"R$"
|
||||
else
|
||||
"$"
|
||||
end
|
||||
|
|
|
@ -15,7 +15,8 @@ export default Controller.extend({
|
|||
{ id: "EUR", name: "EUR" },
|
||||
{ id: "GBP", name: "GBP" },
|
||||
{ id: "USD", name: "USD" },
|
||||
{ id: "INR", name: "INR" }
|
||||
{ id: "INR", name: "INR" },
|
||||
{ id: "BRL", name: "BRL" }
|
||||
];
|
||||
},
|
||||
|
||||
|
|
|
@ -16,6 +16,10 @@ export default Helper.helper(function(params) {
|
|||
case "inr":
|
||||
currencySign = "₹";
|
||||
break;
|
||||
case "BRL":
|
||||
case "brl":
|
||||
currencySign = "R$";
|
||||
break;
|
||||
default:
|
||||
currencySign = "$";
|
||||
}
|
||||
|
|
|
@ -22,9 +22,10 @@ plugins:
|
|||
type: enum
|
||||
choices:
|
||||
- AUD
|
||||
- BRL
|
||||
- CAD
|
||||
- EUR
|
||||
- GBP
|
||||
- USD
|
||||
- NZD
|
||||
- INR
|
||||
- NZD
|
||||
- USD
|
||||
|
|
Loading…
Reference in New Issue