diff --git a/addons/point_of_sale/static/src/js/models.js b/addons/point_of_sale/static/src/js/models.js index 0bd1b99f94d..ec61ad943ec 100644 --- a/addons/point_of_sale/static/src/js/models.js +++ b/addons/point_of_sale/static/src/js/models.js @@ -821,7 +821,7 @@ function openerp_pos_models(instance, module){ //module is instance.point_of_sal this.trigger('change',this); }, get_unit_price: function(){ - return this.price; + return round_di(this.price || 0, this.pos.dp['Product Price']) }, get_base_price: function(){ var rounding = this.pos.currency.rounding;