Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

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

Naroči se

Get notified when there's activity on this post

This question has been flagged
salesmodulesales_price
2 Odgovori
6331 Prikazi
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
Opusti
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
Opusti
Avatar
Matz
Avtor 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
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
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
2484
Sell with two infinite variants
sales sales.order sales_price
Avatar
0
okt. 21
1965
price indication based on contact and product info?
sales sales_price AI v17
Avatar
Avatar
1
maj 24
1342
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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