2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import api, models
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class WizardMultiChartsAccounts(models.TransientModel):
|
|
|
|
_inherit = 'wizard.multi.charts.accounts'
|
|
|
|
|
|
|
|
@api.multi
|
|
|
|
def _create_bank_journals_from_o2m(self, company, acc_template_ref):
|
|
|
|
'''
|
|
|
|
When system automatically creates journals of bank and cash type when CoA is being installed
|
|
|
|
do not enable the `Check` payment method on bank journals of type `Cash`.
|
|
|
|
|
|
|
|
'''
|
|
|
|
bank_journals = super(WizardMultiChartsAccounts, self)._create_bank_journals_from_o2m(company, acc_template_ref)
|
|
|
|
payment_method_check = self.env.ref('account_check_printing.account_payment_method_check')
|
|
|
|
bank_journals.filtered(lambda journal: journal.type == 'cash').write({
|
|
|
|
'outbound_payment_method_ids': [(3, payment_method_check.id)]
|
|
|
|
})
|
|
|
|
return bank_journals
|