Show net prices

This commit is contained in:
Uku Taht 2021-05-14 10:50:56 +03:00
parent d10d8fb7dd
commit b2bbe06c90
2 changed files with 3 additions and 2 deletions

View File

@ -25,7 +25,7 @@
'GBP': '£'
}[plan.currency]
return currency + plan.price.gross
return currency + plan.price.net
},
fetchPlans() {
var productIds = []

View File

@ -25,7 +25,8 @@
'GBP': '£'
}[plan.currency]
return currency + plan.price.gross
console.log(plan)
return currency + plan.price.net
},
fetchPlans() {
var productIds = []