Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

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

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
salesmodulesales_price
2 Besvarelser
6337 Visninger
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
Kassér
Avatar
Muhammad Waqas
Bedste svar

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
Kassér
Avatar
Matz
Forfatter Bedste svar

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
Kassér
Enjoying the discussion? Don't just read, join in!

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

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
Printing Different Pricelists
sales sales_price
Avatar
Avatar
1
jan. 17
4192
Odoo 17.4 - Pricelist - Discount Visibility?? Løst
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
1967
price indication based on contact and product info?
sales sales_price AI v17
Avatar
Avatar
1
maj 24
1342
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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