Skip to content

Commit

Permalink
[IMP] website_product_configurator: Use image of custom value
Browse files Browse the repository at this point in the history
  • Loading branch information
SirAionTech committed Jul 1, 2024
1 parent 58e3211 commit 7b5c988
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion website_product_configurator/data/config_form_templates.xml
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,20 @@
</div>
</t>
<t t-if="line.custom">
<t t-if="line.attribute_id.configurator_custom_image">
<t
t-set="image_record"
t-value="line.attribute_id"
/>
<t
t-set="image_field"
t-value="'configurator_custom_image'"
/>
</t>
<t t-else="">
<t t-set="image_record" t-value="custom_val_id" />
<t t-set="image_field" t-value="'image'" />
</t>
<div class="radio-card-container">
<span
t-esc="custom_val_id.name"
Expand All @@ -575,7 +589,7 @@
class="image_config_attr_value_radio"
for="'%s%s' % (field_prefix, line.attribute_id.id)"
t-att-data-val-id="custom_val_id.id"
t-attf-style="background-image:url(/web/image/product.attribute.value/{{custom_val_id.id}}/image);"
t-attf-style="background-image:url(/web/image/{{image_record._name}}/{{image_record.id}}/{{image_field}});"
t-att-enabled="custom_val_id.id in available_value_ids and True or False"
t-att-title="custom_val_id.name"
>
Expand Down

0 comments on commit 7b5c988

Please sign in to comment.