|
@@ -11,7 +11,7 @@ from django.core.exceptions import ObjectDoesNotExist
|
|
|
from coin.offers.models import Offer, OfferSubscription
|
|
|
from coin.members.models import Member
|
|
|
from coin.billing.models import Invoice, InvoiceDetail
|
|
|
-
|
|
|
+from django.conf import settings
|
|
|
|
|
|
def create_all_members_invoices_for_a_period(date=None):
|
|
|
"""
|
|
@@ -140,7 +140,8 @@ def create_member_invoice_for_a_period(member, date):
|
|
|
# à la facture
|
|
|
label = offer.name
|
|
|
try:
|
|
|
- if (offer_subscription.configuration.comment):
|
|
|
+ if settings.INVOICES_INCLUDE_CONFIG_COMMENTS and \
|
|
|
+ (offer_subscription.configuration.comment):
|
|
|
label += " (%s)" % offer_subscription.configuration.comment
|
|
|
except ObjectDoesNotExist:
|
|
|
pass
|