Skip to content
Snippets Groups Projects
Commit 5f43d87a authored by Christophe Matthieu's avatar Christophe Matthieu
Browse files

[IMP] website_sale: display image function of the selected product variant

parent de2f5743
No related branches found
No related tags found
No related merge requests found
......@@ -78,17 +78,21 @@ $(document).ready(function () {
$form_var.find('input:checked, select').each(function () {
values.push(+$(this).val());
});
var available = false;
var product_id = false;
for (var k in variant_ids) {
if (_.isEqual(variant_ids[k][1], values)) {
var dec = variant_ids[k][2] % 1;
$('input[name="product_id"]').val(variant_ids[k][0]);
product_id = variant_ids[k][0];
$('input[name="product_id"]').val(product_id);
$price.html(variant_ids[k][2] + (dec < 0.01 ? ".00" : (dec < 1 ? "0" : "") ));
available = true;
break;
}
}
if (product_id) {
$("#product_detail .product_detail_img").attr("src", "/website/image?field=image&model=product.product&id="+product_id);
}
$form_var.find("input:radio, select").each(function () {
var id = +$(this).val();
var values = [id];
......@@ -105,7 +109,7 @@ $(document).ready(function () {
$(this).find("option[value='" + id + "']").addClass("css_not_available");
});
if (available) {
if (product_id) {
$(".oe_price_h4").removeClass("hidden");
$(".oe_not_available").addClass("hidden");
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment