Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Edit the Final Price in quotation lines and automatically update the discount

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
accountingdiscountquotation
1 Beantwoorden
549 Weergaven
Avatar
George Geitonas

Hi everyone,


I’m working with Odoo (v18,v19) and I’ve noticed that in quotation/order lines you can only change the discount percentage — not the final unit price directly.


What I’d like to do is the opposite:

👉 Enter the final price per unit, and have Odoo automatically calculate the discount based on the list price.


Example:

  • Product list price = €100
  • I type the final price = €85
  • Odoo automatically sets the discount to 15%


Has anyone already implemented this behavior or knows how to achieve it (e.g. via Studio, automated action, or a small customization)?


Thanks in advance for any ideas or examples!

0
Avatar
Annuleer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Beste antwoord

Hi,


You can achieve this with a lightweight Odoo customization using @api.onchange.

Here’s the Python code for a small module that adds this behavior.

from odoo import api, fields, models

class SaleOrderLine(models.Model):

    _inherit = "sale.order.line"


    final_price = fields.Float(

        string="Final Unit Price",

        help="Enter the final selling price per unit; discount will be calculated automatically."

    )

    @api.onchange('final_price')

    def _onchange_final_price(self):

        for line in self:

            if line.final_price and line.product_id:

                list_price = line.product_id.lst_price

                if list_price > 0:

                    discount = (1 - (line.final_price / list_price)) * 100

                    line.discount = discount

                    line.price_unit = list_price

                else:

                    line.discount = 0.0

* Adds a new field final_price on sale order lines.

* When you enter a final_price, it:

          -Sets the Unit Price to the product’s list price.

          -Calculates and fills the Discount % field automatically.

* This ensures accounting, taxes, and reports continue to use Odoo’s built-in fields.

Option 2 — Odoo Studio (No Code Alternative)

If you use Odoo Enterprise, you can implement a simpler version with Odoo Studio:

    Open Sales → Orders → Order Lines.

    Activate Studio and add a new field called Final Price.

    Add an Automated Action (triggered on change of Final Price) with Python code:

if record.product_id and record.final_price:

    list_price = record.product_id.list_price or 0

    if list_price > 0:

        record.discount = (1 - (record.final_price / list_price)) * 100

        record.price_unit = list_price

    Save and test — when you edit Final Price, Odoo will auto-calculate the discount.


Related module:-

* https://apps.odoo.com/apps/modules/18.0/sale_discount_total


Hope it heps

1
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Journal Entries on Discounts Opgelost
accounting discount
Avatar
Avatar
1
nov. 20
5442
Difference between purchases quotation & sales quotation? Opgelost
accounting v7 quotation
Avatar
Avatar
1
mrt. 23
24573
Hide discounts on order lines on quotations/invoices?
discount quotation invisible
Avatar
Avatar
1
mrt. 15
10767
Crazy number of decimals
sales accounting discount decimals
Avatar
Avatar
1
aug. 23
2084
[Odoo14 CE] Global / Line Discount for Sale/Purchase/Account
accounting discount customization v14
Avatar
0
sep. 21
2026
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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