remove Bill.idparent and add Bill.vat

This commit is contained in:
Romain Bignon 2015-08-02 20:08:48 +02:00
commit 4881bb0be7

View file

@ -57,9 +57,6 @@ class Detail(BaseObject, Currency):
quantity = DecimalField('Number of units consumed') quantity = DecimalField('Number of units consumed')
unit = StringField('Unit of the consumption') unit = StringField('Unit of the consumption')
def __init__(self):
BaseObject.__init__(self, 0)
class Bill(BaseObject, Currency): class Bill(BaseObject, Currency):
""" """
@ -68,16 +65,13 @@ class Bill(BaseObject, Currency):
date = DateField('The day the bill has been sent to the subscriber') date = DateField('The day the bill has been sent to the subscriber')
format = StringField('file format of the bill') format = StringField('file format of the bill')
label = StringField('label of bill') label = StringField('label of bill')
idparent = StringField('id of the parent subscription')
price = DecimalField('Price to pay') price = DecimalField('Price to pay')
currency = StringField('Currency', default=None) currency = StringField('Currency', default=None)
vat = DecimalField('VAT included in the price')
deadline = DateField('The latest day to pay') deadline = DateField('The latest day to pay')
startdate = DateField('The first day the bill applies to') startdate = DateField('The first day the bill applies to')
finishdate = DateField('The last day the bill applies to') finishdate = DateField('The last day the bill applies to')
def __init__(self):
BaseObject.__init__(self, 0)
class Subscription(BaseObject): class Subscription(BaseObject):
""" """