15 lines
525 B
Python
15 lines
525 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from flectra import api, fields, models, _
|
||
|
|
||
|
|
||
|
class WizardMultiChartsAccounts(models.TransientModel):
|
||
|
_inherit = 'wizard.multi.charts.accounts'
|
||
|
|
||
|
@api.multi
|
||
|
def _create_bank_journals_from_o2m(self, company, acc_template_ref):
|
||
|
res = super(WizardMultiChartsAccounts, self)._create_bank_journals_from_o2m(company, acc_template_ref)
|
||
|
|
||
|
# Try to generate the missing journals
|
||
|
return res + self.env['payment.acquirer']._create_missing_journal_for_acquirers(company=company)
|