Skip to Content
Menu
This question has been flagged
1 Reply
962 Views

Dear Odoo(ers ),

I want to create a pricelist without the percentage , Like I specified below

Sales price multiply by  1.12 that is 

(300*1.12)

How can I bypass the %  



Avatar
Discard

Hello,

You can also create the pricelist without percentage you can also add the fixed price for product.

Author

How can i do that pls ?, I mean creating formula without the system recognizing percentage

Best Answer

You can apply that by set -12 in price discount and it will be converted by Odoo in the backend code calucation to to -0.12 due to percentage so you will get the price equal to 336 when you set the pricelist and select the product in sale order.

300*1.12= 336

Avatar
Discard
Author

Waleed ,
Thank you. It worked

Author

Waleed, How did you quickly arrive at 1.12 = -12 pls?
Incase I want to use other figures

300*1 =300 so you can discard the 1 and leave 0.12 and since you are using percentage so you can write 0.12 as 12/100 and then I got 12. You will add (-) if you want to add the amount to the original value.

Author

Thanks Waleed, I got it perfectly