mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
Create countryPriceInfo
util
This commit is contained in:
parent
db8a6cccd2
commit
6b55259bce
1 changed files with 75 additions and 0 deletions
75
modules/ppcp-settings/resources/js/utils/countryPriceInfo.js
Normal file
75
modules/ppcp-settings/resources/js/utils/countryPriceInfo.js
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
export const countryPriceInfo = {
|
||||||
|
us: {
|
||||||
|
currencySymbol: '$',
|
||||||
|
fixedFee: 0.49,
|
||||||
|
checkout: 3.49,
|
||||||
|
ccf: 2.59,
|
||||||
|
dw: 2.59,
|
||||||
|
apm: 2.59,
|
||||||
|
fastlane: 2.59,
|
||||||
|
standardCardFields: 2.99,
|
||||||
|
},
|
||||||
|
uk: {
|
||||||
|
currencySymbol: '£',
|
||||||
|
fixedFee: 0.3,
|
||||||
|
checkout: 2.9,
|
||||||
|
ccf: 1.2,
|
||||||
|
dw: 1.2,
|
||||||
|
apm: 1.2,
|
||||||
|
standardCardFields: 1.2,
|
||||||
|
},
|
||||||
|
ca: {
|
||||||
|
currencySymbol: '$',
|
||||||
|
fixedFee: 0.3,
|
||||||
|
checkout: 2.9,
|
||||||
|
ccf: 2.7,
|
||||||
|
dw: 2.7,
|
||||||
|
apm: 2.9,
|
||||||
|
standardCardFields: 2.9,
|
||||||
|
},
|
||||||
|
au: {
|
||||||
|
currencySymbol: '$',
|
||||||
|
fixedFee: 0.3,
|
||||||
|
checkout: 2.6,
|
||||||
|
ccf: 1.75,
|
||||||
|
dw: 1.75,
|
||||||
|
apm: 2.6,
|
||||||
|
standardCardFields: 2.6,
|
||||||
|
},
|
||||||
|
fr: {
|
||||||
|
currencySymbol: '€',
|
||||||
|
fixedFee: 0.35,
|
||||||
|
checkout: 2.9,
|
||||||
|
ccf: 1.2,
|
||||||
|
dw: 1.2,
|
||||||
|
apm: 1.2,
|
||||||
|
standardCardFields: 1.2,
|
||||||
|
},
|
||||||
|
it: {
|
||||||
|
currencySymbol: '€',
|
||||||
|
fixedFee: 0.35,
|
||||||
|
checkout: 3.4,
|
||||||
|
ccf: 1.2,
|
||||||
|
dw: 1.2,
|
||||||
|
apm: 1.2,
|
||||||
|
standardCardFields: 1.2,
|
||||||
|
},
|
||||||
|
de: {
|
||||||
|
currencySymbol: '€',
|
||||||
|
fixedFee: 0.39,
|
||||||
|
checkout: 2.99,
|
||||||
|
ccf: 2.99,
|
||||||
|
dw: 2.99,
|
||||||
|
apm: 2.99,
|
||||||
|
standardCardFields: 2.99,
|
||||||
|
},
|
||||||
|
es: {
|
||||||
|
currencySymbol: '€',
|
||||||
|
fixedFee: 0.35,
|
||||||
|
checkout: 2.9,
|
||||||
|
ccf: 1.2,
|
||||||
|
dw: 1.2,
|
||||||
|
apm: 1.2,
|
||||||
|
standardCardFields: 1.2,
|
||||||
|
},
|
||||||
|
};
|
Loading…
Add table
Add a link
Reference in a new issue