lib/caren/store/line_item.rb in caren-api-0.5.6 vs lib/caren/store/line_item.rb in caren-api-0.5.7

- old
+ new

@@ -12,10 +12,11 @@ :discount_in_promillage, # Integer (190 = 19%) :commission_in_cents, # Integer :commission_in_promillage, # Integer (70 = 7%) :price_in_cents, # Integer :quantity, # Integer + :unit, # String :sales_tax_in_cents, # Integer :sales_tax_in_promillage, # Integer ] + super end @@ -33,9 +34,10 @@ :description => self.description, :discount_in_cents => self.discount_in_cents, :discount_in_promillage => self.discount_in_promillage, :price_in_cents => self.price_in_cents, :quantity => self.quantity, + :unit => self.unit, :sales_tax_in_cents => self.sales_tax_in_cents, :sales_tax_in_promillage => self.sales_tax_in_promillage } end