Skip to Content
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
2 Vastaukset
723 Näkymät

I am mass importing Invoices and Payments, and I know which ones have to be reconciled but I don't want to do this manually.

Avatar
Hylkää
Paras vastaus

Given you have the ID of the Journal Item (account.move.line) representing the AP debit from the Invoice and the ID of the Journal Item representing the AP credit from the Payment:

reconcile_wanted = self.env['account.reconcile.wizard'].with_context(
    active_model='account.move.line',
    active_ids=[__invoice_move_line_id__,__payment_move_line_id__],
).new({'allow_partials': True})
reconcile_wanted.reconcile()
Avatar
Hylkää
Paras vastaus

great answer thank you so much

Avatar
Hylkää
Related Posts Vastaukset Näkymät Toimenpide
1
kesäk. 24
639
1
maalisk. 23
2908
1
marrask. 22
17381
1
lokak. 22
9433
7
tammik. 22
16117