Skip to content

Commit

Permalink
[FIX] 'point_of_sale' : incorrect price on PoS receipt;
Browse files Browse the repository at this point in the history
  • Loading branch information
legalsylvain committed Oct 20, 2016
1 parent d9857e9 commit 0b3ca96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/point_of_sale/static/src/js/models.js
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ function openerp_pos_models(instance, module){ //module is instance.point_of_sal
price: this.get_unit_price(),
discount: this.get_discount(),
product_name: this.get_product().get('name'),
price_display : this.get_display_price(),
price_display : this.get_price_with_tax(),
price_with_tax : this.get_price_with_tax(),
price_without_tax: this.get_price_without_tax(),
tax: this.get_tax(),
Expand Down

0 comments on commit 0b3ca96

Please sign in to comment.