Add shopoob application and new property in shop capability

This commit is contained in:
Kitof 2015-02-18 13:13:11 +01:00 committed by Romain Bignon
commit 965e5a1b1d
4 changed files with 225 additions and 0 deletions

View file

@ -43,6 +43,7 @@ class Order(BaseObject):
shipping = DecimalField('Shipping price')
discount = DecimalField('Discounts')
tax = DecimalField('Tax')
total = DecimalField('Total')
def __repr__(self):
return u"<Order id=%r date=%r>" % (self.id, self.date)