Add Invoice.fee_type, Invoice.fee_internal_type

This commit is contained in:
Raphael Michel
2021-06-22 16:58:22 +02:00
parent 8700c41f5e
commit cba2ad5333
7 changed files with 56 additions and 2 deletions

View File

@@ -1425,7 +1425,8 @@ class InlineInvoiceLineSerializer(I18nAwareModelSerializer):
class Meta:
model = InvoiceLine
fields = ('position', 'description', 'item', 'variation', 'attendee_name', 'event_date_from',
'event_date_to', 'gross_value', 'tax_value', 'tax_rate', 'tax_name')
'event_date_to', 'gross_value', 'tax_value', 'tax_rate', 'tax_name', 'fee_type',
'fee_internal_type')
class InvoiceSerializer(I18nAwareModelSerializer):