fix(SW-3616): Handle EuroBonus point type everywhere * Add tests to formatPrice * formatPrice * More work replacing config with api points type * More work replacing config with api points type * More fixing with currency * maybe actually fixed it * Fix MyStay * Clean up * Fix comments * Merge branch 'master' into fix/refactor-currency-display * Fix calculateTotalPrice for EB points + SF points + cash Approved-by: Joakim Jäderberg
14 lines
218 B
TypeScript
14 lines
218 B
TypeScript
// TODO move to better location?
|
|
|
|
export enum CurrencyEnum {
|
|
DKK = "DKK",
|
|
EUR = "EUR",
|
|
NOK = "NOK",
|
|
PLN = "PLN",
|
|
SEK = "SEK",
|
|
Voucher = "Voucher",
|
|
CC = "CC",
|
|
Unknown = "Unknown",
|
|
POINTS = "Points",
|
|
}
|