Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
1 Svar
7599 Visninger

In Odoo V13 enterprise.


I have an invoice and I want to find the relevant payment record but the invoices ID is in the 'reconciled_invoice_ids' many2many field.


If I do env['account.payment'].search([('reconciled_invoice_ids','=',invoice.id)]) it returns quite a few payments without the relevant ID in the reconciled field.


If I try .search([(invoice.id,'in','reconciled_invoice_ids')]) it gives me an invalid leaf error.


I am not really sure what the correct way to do this is.

Avatar
Kassér
Bedste svar

Jonah,

Did you tried for this 

 search ([('reconciled_invoice_ids', 'in', invoice.id)])


or 


search ([('reconciled_invoice_ids', 'in', invoice.ids)])

Regards,




Email:    odoo@aktivsoftware.com  

Skype: kalpeshmaheshwari

   

Avatar
Kassér
Related Posts Besvarelser Visninger Aktivitet
1
sep. 23
2295
7
jun. 20
6669
7
jul. 18
20706
2
jul. 17
3330
0
nov. 22
80