Commit c2661fa7 authored by Rafael Monnerat's avatar Rafael Monnerat

slapos_panel: Fixup price_information when price is None

parent 5edf26b1
...@@ -33,11 +33,11 @@ if aggregate_uid is None: ...@@ -33,11 +33,11 @@ if aggregate_uid is None:
) )
except AssertionError: except AssertionError:
price = 0.0 price = 0.0
price_information = None
else: else:
price = subscription_request.getPrice(None) price = subscription_request.getPrice(None)
is_future_balance_negative = 0 is_future_balance_negative = 0
price_information = None
if price is not None and price != 0: if price is not None and price != 0:
price_information = '%s %s/%s' % (price, price_information = '%s %s/%s' % (price,
subscription_request.getPriceCurrencyTitle(), subscription_request.getPriceCurrencyTitle(),
...@@ -45,8 +45,8 @@ if aggregate_uid is None: ...@@ -45,8 +45,8 @@ if aggregate_uid is None:
assert subscription_request.getDestinationDecision() == destination_value.getRelativeUrl() assert subscription_request.getDestinationDecision() == destination_value.getRelativeUrl()
assert subscription_request.getLedger() == "automated" assert subscription_request.getLedger() == "automated"
balance = destination_value.Entity_getDepositBalanceAmount( balance = destination_value.Entity_getDepositBalanceAmount(
[subscription_request] [subscription_request]
) )
if balance - price < 0: if balance - price < 0:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment