Refs #131 -- Basic implementation of invoicing

This commit is contained in:
Raphael Michel
2016-03-12 12:03:00 +01:00
parent 0f054416fc
commit 5ab78b4576
21 changed files with 1489 additions and 374 deletions

View File

@@ -61,6 +61,22 @@ DEFAULTS = {
'default': '0.00',
'type': decimal.Decimal
},
'invoice_generate': {
'default': 'False',
'type': bool
},
'invoice_address_from': {
'default': '',
'type': str
},
'invoice_additional_text': {
'default': '',
'type': str
},
'invoice_language': {
'default': '__user__',
'type': str
},
'show_items_outside_presale_period': {
'default': 'True',
'type': bool