From f8068a9db72f1385dd6444e34bf6f3087c43c4d8 Mon Sep 17 00:00:00 2001 From: Juan Carlos Montoya Date: Wed, 2 Sep 2015 12:09:44 +0200 Subject: [PATCH] Update models.js --- pos_pricelist/static/src/js/models.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pos_pricelist/static/src/js/models.js b/pos_pricelist/static/src/js/models.js index 4aa54d71..d1c0c39f 100644 --- a/pos_pricelist/static/src/js/models.js +++ b/pos_pricelist/static/src/js/models.js @@ -513,6 +513,11 @@ function pos_pricelist_models(instance, module) { } break; } + //default price_extra is not included (product variants) + if(product['price_extra'] > 0.0){ + price += product['price_extra'] + } + return price }, /** @@ -634,7 +639,7 @@ function pos_pricelist_models(instance, module) { if (_.size(product_model) == 1) { var product_index = parseInt(Object.keys(product_model)[0]); pos_model.models[product_index].fields.push( - 'categ_id', 'seller_ids' + 'categ_id', 'seller_ids', 'price_extra' ); }