Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Modify the calculation of the price in an order / Odoo V10

Odoberať

Get notified when there's activity on this post

This question has been flagged
salesmodulesales_price
2 Replies
6334 Zobrazenia
Avatar
Matz

Hi,

I'm trying to see if Odoo can be a solution for my business. The business of my company is to be a broker : to be simple, my clients buy products to supplier, and i take a commission for services rendered in the sale.

For example the client C want to buy one quantity of the product P, the price is 100 euros,  my commission is 8 %, so my invoice to he client C is 8% of 100 euros, so 8 euros. The price 100 euro of the product must be mentionned in the invoice, and of course to total invoiced to the customer, 8 euros.

In odoo if i make an order from the client for the product, i will have an invoice of 100. I would like the calculation of the pricee modified so it is price of product x commission.

So I would like to modify the way the price is calculated in a quotation and order. It seems that i need to create a module which modify the calculation by inheriting the method which do that. My questions are :

1. Should i create a module which will just modify one method ?

2. How can i find the method who do this calulation ? Having the method will help me, but knowing how to find it will help me also for the whole dev i have to do on odoo

Regards

Matz

0
Avatar
Zrušiť
Avatar
Muhammad Waqas
Best Answer

Hi Matz,

In order to achieve this, please follow to following steps:

  1. Create product P as service item.

  2. Enter its Sale Price in product form as 100 euros.

  3. Create a new pricelist to define commission on every product.

  4. In the pricelist->Pricelist Items, choose 'Apply on' as product and select the product P. 

  5. In Compute Price, select 'Percentage (Discount)' and define discount as 92 i.e. 100-'your commission'.

  6. Save the pricelist.

  7. Link the customer(s) with this pricelist.

  8. Now to go Technical->Database Structure->Models and search for sale.order.line.

  9. Create a new field 'x_product_price',name it Product Price and enter 'product_id.lst_price' in the 'Related field' field.

  10. Now add this custom field in your sale order form.

  11. Accordingly you can add the field in your Sale Order/Quotation report as well.

Hope it will help you to achieve your goal without writing any python code.

Regards,

Waqas

1
Avatar
Zrušiť
Avatar
Matz
Autor Best Answer

Hi Waqas,


It is working really well. I thank you very much, it is a very good way to do what i want without any python line code ! 

One question : i need the product price to be on the invoice too. I modified the model of account.invoice.line and added also x_product_price,  related field product_id.lst_price like on sale.order.line. I also modified the views account.invoice.line.tree and account.invoice.line.form  like for the order. But on the invoice, i don't have the price of the product shown. Where am i wrong ?


My account.invoice.line.form is like this with the new field :


<?xml version="1.0"?>
<form string="Invoice Line">
                    <group>
                        <group>
                            <field name="product_id" context="parent and {'partner_id': parent.partner_id}"/>
                            <field name="x_product_price"/>
                            <label for="quantity"/>
                            <div>
                                <field name="quantity" class="oe_inline"/>
                                <field name="uom_id" class="oe_inline" groups="product.group_uom"/>
                            </div>
                            <field name="price_unit"/>
                            <field name="discount" groups="base.group_no_one"/>
                            <field name="currency_id" invisible="1"/>
                        </group>
                        <group>
                            <field domain="[('company_id', '=', parent.company_id)]" name="account_id" groups="account.group_account_user"/>
                            <field name="invoice_line_tax_ids" context="{'type':parent.get('type')}" domain="[('type_tax_use','!=','none'),('company_id', '=', parent.company_id)]" widget="many2many_tags" options="{'no_create': True}"/>
                            <field domain="[('company_id', '=', parent.company_id)]" name="account_analytic_id" groups="analytic.group_analytic_accounting"/>
                            <field name="company_id" groups="base.group_multi_company" readonly="1"/>
                        </group>
                    </group>
                    <label for="name"/>
                    <field name="name"/>
                </form>
            

Matz

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
Printing Different Pricelists
sales sales_price
Avatar
Avatar
1
jan 17
4191
Odoo 17.4 - Pricelist - Discount Visibility?? Solved
sales pricelist sales_price
Avatar
Avatar
Avatar
2
dec 24
525
Sales at the counter- Billing :Version 13, Enterprise version, online, Sh.odoo
sales sales.order sales_price
Avatar
Avatar
1
jan 23
2486
Sell with two infinite variants
sales sales.order sales_price
Avatar
0
okt 21
1966
price indication based on contact and product info?
sales sales_price AI v17
Avatar
Avatar
1
máj 24
1342
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now