Skip to Content
Menu
This question has been flagged
2 Replies
2400 Views

i am using multiple companies in odoo,

5 companies together

how i can get same product different standard price in all companies

Note: without pricelist



Avatar
Discard
Best Answer

Create a price list for each company. And in the price list, you can use the formula to calculate the sales price for the product.

Avatar
Discard
Author

True, thanks for your reply, but required different price on product template

Best Answer

Hi @Muhammad Usman Anwar,

if you dont want to use the price list then you might need to modify this on code level a little bit. 

For that, Inherit the product.template model and redefine the Sale Price field and add company_dependent=True to the defination.
list_price = fields.Float('Sales Price', company_dependent=True, default=1.0,digits='Product Price',help="Price at which the product is sold to customers.")

for more understanding the company_dependent part please refer to the Cost field (standard_price as technical name) functioning.

Let me know if it helps!

Avatar
Discard
Related Posts Replies Views Activity
3
Nov 24
347
0
Nov 24
151
4
Sep 24
1489
2
Aug 24
354
0
May 24
285