Skip to Content
Menu
This question has been flagged
3 Replies
2034 Views

i want a "compare to" price for each variant which effectively displays as a strike through price in the website. presently what happens is if i've set for eg. 20 gm spices price as rs12 and compare to price as Rs 20. when i try to set the price by value price extra for 50 gms and also for 200 gms i'm able to get the selling prices of the respective products but the "compare to " price is still same for them which shouldn't be it.

am i missing anything

 

Avatar
Discard

To set variant-specific "compare to" prices in Odoo and display them on your website, you can use pricelists. Follow these steps:

Activate Pricelists:

Go to Sales > Configuration > Settings and activate pricelists. Choose "Advanced pricing based on formula" in the Sale Price settings.
Configure Pricelist:

Navigate to Sales > Configuration > Pricelists and edit the default pricelist (e.g., Public Pricelist).
In the Pricelist Items section, either add new items or edit existing ones.
Set the Min. Quantity field to 200 (for your 200 gm variant).
Choose the Price Discount formula in Price Computation and input the desired discount percentage.
By setting up pricelists with variant-specific conditions and discounts, you can effectively manage "compare to" prices for different product variants on your Odoo website. This approach ensures flexibility and accuracy in pricing based on quantity and other criteria. This should help achieve your goal of displaying variant-specific "compare to" prices.

Best Answer

I got the same issue.

Price comparison cannot be made for product variants.


And I cannot use price lists because the main shop page cannot show price list prices, only product template prices.

I got a real Catch 22 situation here.


Did you solve it  sskniranjan ?

Avatar
Discard
Best Answer

Hello sskniranjan, it seems like you have added the "compare to" field in the Product Template [product.template model]. However, your calculation is based on the Product Variants [product.product model]. Please note that if you add a field in the template, all the variants related to that template will also have that field. If you try to modify that field from any variant or the template, it will be reflected everywhere.


To resolve this issue, you just need to move the 'compare to' field from the template to the variant.

Hope this will help you.

Thanks & Regards,
Email: odoo@aktivsoftware.com       

Skype: kalpeshmaheshwari

Avatar
Discard
Author

Am trying to add Compare to Price field for individual product variants the below give is my python code:

from odoo import models, fieldsclass ProductsProduct(models.Model): _inherit = "product.product"
compare_list_price_variant = fields.Monetary(string="Compare to Price", help="The amount will be displayed strike throughed on the eCommerce product page",related='product_tmpl_id.compare_list_price', readonly=False)

I have added the same field in " product.product_normal_form_view " but when i run code am getting error that compare_list_price_variant does not exist in product.product model why is that.

Basically i want to add compare to price for multiple variants similar to the cost for multiple variants

Author Best Answer
Thank you for your valuable feedback. i was able to achieve some aspect of my question. The compare to price however remains constant. same evident from the below screenshots 

Price List updated


Product page

Product Variant page


website view




as is evident from the screenshots available is there a way to set the "compare to" price, the one with the price stricken off can be different for different variant. Thank you in advance !


Avatar
Discard