Skip to content
Snippets Groups Projects
Commit e6390a76 authored by Nicolas Martinelli's avatar Nicolas Martinelli
Browse files

[FIX] purchase: overwrite vendor reference

Overwrite vendor reference only if there is a PO linked to the bill.
Otherwise, any addition of product will erase what the user just typed.

Closes #26734
parent d40145a4
No related branches found
No related tags found
No related merge requests found
......@@ -101,8 +101,9 @@ class AccountInvoice(models.Model):
@api.onchange('invoice_line_ids')
def _onchange_origin(self):
purchase_ids = self.invoice_line_ids.mapped('purchase_id')
self.origin = ', '.join(purchase_ids.mapped('name'))
self.reference = ', '.join(purchase_ids.filtered('partner_ref').mapped('partner_ref'))
if purchase_ids:
self.origin = ', '.join(purchase_ids.mapped('name'))
self.reference = ', '.join(purchase_ids.filtered('partner_ref').mapped('partner_ref'))
@api.onchange('partner_id', 'company_id')
def _onchange_partner_id(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment