Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- # Written by RHT on 13/12/2023
- # Post-review proof : https://pastebin.com/KmWFfXLW
- # 911 Task : https://www.odoo.com/web#id=3628575&cids=1&menu_id=4720&action=333&active_id=5686&model=project.task&view_type=form
- # Business need : have the price bigger
- # Video : -->
- <xpath expr="//div[@class='text-end' and style='padding: 0 4px;']" position="replace">
- <div class="text-end" style="padding: 0 4px;">
- <t t-if="product.is_product_variant">
- <!-- CHANGE THE CLASS FROM o_label_price_small TO o_label_price FOR BIGGER PRICE SIZE [3628575] -->
- <strong class="o_label_price" t-field="product.lst_price" t-options="{'widget': 'monetary', 'label_price': True}"/>
- </t>
- <t t-else="">
- <strong class="o_label_price" t-field="product.list_price" t-options="{'widget': 'monetary', 'label_price': True}"/>
- </t>
- <div class="o_label_extra_data">
- <t t-out="extra_html"/>
- </div>
- </div>
- </xpath>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement