Set empty string for description if not available
This commit is contained in:
parent
ed6059feaa
commit
a4427dd3af
1 changed files with 3 additions and 1 deletions
|
@ -336,7 +336,9 @@ class MonthlyHostingBill(AssignPermissionsMixin, models.Model):
|
||||||
line_item_instance = HostingBillLineItem.objects.create(
|
line_item_instance = HostingBillLineItem.objects.create(
|
||||||
monthly_hosting_bill=instance,
|
monthly_hosting_bill=instance,
|
||||||
amount=item.amount,
|
amount=item.amount,
|
||||||
description=item.description,
|
# description seems to be set to null in the Stripe
|
||||||
|
# response for an invoice
|
||||||
|
description="" if item.description is None else item.description,
|
||||||
discountable=item.discountable,
|
discountable=item.discountable,
|
||||||
metadata=json.dumps(item.metadata),
|
metadata=json.dumps(item.metadata),
|
||||||
period_start=datetime.utcfromtimestamp(item.period.start).replace(tzinfo=pytz.utc), period_end=datetime.utcfromtimestamp(item.period.end).replace(tzinfo=pytz.utc),
|
period_start=datetime.utcfromtimestamp(item.period.start).replace(tzinfo=pytz.utc), period_end=datetime.utcfromtimestamp(item.period.end).replace(tzinfo=pytz.utc),
|
||||||
|
|
Loading…
Reference in a new issue