Improve the price shown to user
This commit is contained in:
parent
671ec75584
commit
72d651ea76
1 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ def get_pricing(price_in_chf_cents, product_type, recurring_period):
|
||||||
recurring_period
|
recurring_period
|
||||||
)
|
)
|
||||||
elif product_type == "one-time":
|
elif product_type == "one-time":
|
||||||
return "CHF {}".format(price_in_chf_cents/100)
|
return "CHF {} (One time charge)".format(price_in_chf_cents/100)
|
||||||
|
|
||||||
def get_user_friendly_product(product_dict):
|
def get_user_friendly_product(product_dict):
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue