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:
)
except AssertionError:
price = 0.0
price_information = None
else:
price = subscription_request.getPrice(None)
is_future_balance_negative = 0
price_information = None
if price is not None and price != 0:
price_information = '%s %s/%s' % (price,
subscription_request.getPriceCurrencyTitle(),
......@@ -45,8 +45,8 @@ if aggregate_uid is None:
assert subscription_request.getDestinationDecision() == destination_value.getRelativeUrl()
assert subscription_request.getLedger() == "automated"
balance = destination_value.Entity_getDepositBalanceAmount(
[subscription_request]
)
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