Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

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

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
accountingcustomhelp
2 Respuestas
299 Vistas
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
Descartar
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
Mejor respuesta
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
Descartar
Rehmanareeb
Autor

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
Mejor respuesta
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
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
How to make parent Level In Chart of Accountant Odoo Community 14
accounting help
Avatar
Avatar
1
mar 21
2747
everytime i add new item the accountant page reset to item number 1
accounting new help
Avatar
Avatar
Avatar
3
ago 24
1538
Accounting Report send Email V15
accounting email reporting help
Avatar
Avatar
2
mar 24
4463
Custom Filter in the Enterprise Finance report
accounting filter custom report
Avatar
0
dic 21
1667
Bank Suspense vs Bank Suspense Account on Odoo Chart of Accounts default Resuelto
accounting
Avatar
Avatar
2
dic 25
357
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Sitio web hecho con

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