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
    • Sociale 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

Invoice Lines Duplicated When Using Many2one Bill Merge (Odoo 16)

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
accountingcustomhelp
2 Antwoorden
304 Weergaven
Avatar
Rehmanareeb


Hello everyone,

I’m working on a customization in Odoo 16 where I added a new field on vendor bills:

bill_merge_id = fields.Many2one(
    "account.move",
    string="Bill Merge",
    domain="[('partner_id', '=', partner_id),
             ('move_type', '=', 'in_invoice'),
             ('company_id', '=', company_id),
             ('state', '!=', 'cancel')]",
)

The idea is:

When the user selects a vendor bill in bill_merge_id, the invoice lines should be replaced with the invoice lines of the selected bill.

Here is my current code:

@api.onchange('bill_merge_id')
    def _onchange_bill_merge_id(self):
        _logger.info("Bill merge onchange triggered")

        # Prevent recursion and duplication on saving/confirm
        self = self.with_context(bill_merge_skip=True)

        if not self.bill_merge_id:
            self.invoice_line_ids = [(5, 0, 0)]
            return

        if self.env.context.get("bill_merge_skip"):
            return

        source_bill = self.bill_merge_id

        line_commands = []
        for line in source_bill.invoice_line_ids:
            line_commands.append((0, 0, {
                'name': line.name,
                'product_id': line.product_id.id,
                'quantity': line.quantity,
                'price_unit': line.price_unit,
                'account_id': line.account_id.id,
            }))

        self.invoice_line_ids = line_commands

The problem

When I select a bill, the invoice lines correctly update.

But when I click Save or Confirm, Odoo duplicates the invoice lines — meaning the same lines get inserted again.

So instead of:

Line A
Line B

I get:

Line A
Line B
Line A
Line B

What I’ve tried

  • Clearing the lines with (5, 0, 0)

  • Using new_ids = [(0,0,...)] instead of create()

  • Adding context flags like "skip_onchange": True

The duplication still happens because Odoo re-triggers onchange during create() and write().

My Question

What is the correct Odoo 16 approach to update invoice lines based on a selected bill without causing duplication during save/confirm?

Should I:

  1. Use a button instead of @api.onchange?

  2. Use api.depends instead of onchange?

  3. Use context flags in override of create() and write()?

  4. Something else entirely?

I only want the lines to appear once — exactly when the user selects a bill — and not be duplicated later.

Any guidance or best practices would be greatly appreciated.

Thanks!


0
Avatar
Annuleer
Kunjan Patel

Hello,
Yes, possible but not recommended:
def write(self, vals):
if 'invoice_line_ids' in vals and self.invoice_line_ids:
vals.pop('invoice_line_ids')
return super().write(vals)

Problem: This blocks ALL line edits after first save - users can't add/remove/modify lines anymore, breaking normal invoice workflow.
Better: Use the boolean flag approach - targets only merge duplication without side effects.

Avatar
Kunjan Patel
Beste antwoord
Hello Rehmanareeb,
I hope you are doing well

The issue is that `@api.onchange` triggers multiple times during the record lifecycle (on field change, save, and confirm), causing lines to be appended repeatedly.
​
Solution: Replace onchange with a button action
  def action_merge_bill(self):
      if self.bill_merge_id:
          commands = [(5, 0, 0)]  # Clear existing lines
          for line in self.bill_merge_id.invoice_line_ids:
              commands.append((0, 0, {
                  'product_id': line.product_id.id,
                  'quantity': line.quantity,
                  'price_unit': line.price_unit,
​ ​'account_id': line.account_id.id,
              }))
          self.invoice_line_ids = commands


Add a button in your XML view to call this method. This avoids the onchange re-triggering issue entirely and gives users explicit control over the merge action.

I hope this information helps to you

Thanks & Regards,
Kunjan Patel

1
Avatar
Annuleer
Rehmanareeb
Auteur

I can go with that way too. But this kind of gives me another idea. As you have mentioned that `onchange` triggers multiple times(field change,save and confirm) what if I over-ride the save and confirm method? In a manner that they don't write if there are already existing lines/records in the invoice lines. Is it possible?

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Beste antwoord
Hi,
Please refer to the code:
def action_merge_bill_lines(self):
    self.ensure_one()

    if not self.bill_merge_id:
        self.invoice_line_ids = [(5, 0, 0)]
        return

    source_bill = self.bill_merge_id

    line_commands = []
    for line in source_bill.invoice_line_ids:
        line_commands.append((0, 0, {
            'name': line.name,
            'product_id': line.product_id.id,
            'quantity': line.quantity,
            'price_unit': line.price_unit,
            'account_id': line.account_id.id,
        }))

    # Clear existing lines & assign new ones
    self.invoice_line_ids = [(5, 0, 0)] + line_commands

Recommended button-based solution to avoid duplication when merging invoice lines.
This function copies invoice lines from the selected bill and replaces the current invoice lines with them. First, it checks that only one bill is being processed. If no bill is selected, it simply clears all existing invoice lines. When a bill is chosen, the method goes through each line in that bill and prepares new lines with the same product, quantity, price, and account. Before adding them, it deletes all existing lines from the invoice to avoid duplication. Finally, it inserts the newly prepared lines so the invoice shows exactly the same lines as the selected bill—only once, with no duplicates.

Hope it helps.


0
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
How to make parent Level In Chart of Accountant Odoo Community 14
accounting help
Avatar
Avatar
1
mrt. 21
2748
everytime i add new item the accountant page reset to item number 1
accounting new help
Avatar
Avatar
Avatar
3
aug. 24
1538
Accounting Report send Email V15
accounting email reporting help
Avatar
Avatar
2
mrt. 24
4487
Custom Filter in the Enterprise Finance report
accounting filter custom report
Avatar
0
dec. 21
1674
New date format odoo 19
accounting
Avatar
Avatar
Avatar
2
dec. 25
1302
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