Fix stripe installation issue due to wrong account_type on transfert account

template
This commit is contained in:
hparfr
2020-04-29 23:00:08 +02:00
parent e96c3d72eb
commit d2b63236e3
2 changed files with 20 additions and 0 deletions

View File

@@ -693,3 +693,22 @@ class ResConfigSettings(models.TransientModel):
transfer_account_id = fields.Many2one(
related='company_id.transfer_account_id', readonly=False)
class AccountChartTemplate(models.Model):
_inherit = "account.chart.template"
@api.model
def _prepare_transfer_account_template(self):
"""Change the type of default account in order to be
compliant with _check_account_type_on_bank_journal
Used at installation of payment modules like stripe
See https://github.com/akretion/odoo-usability/issues/115
"""
vals = super()._prepare_transfer_account_template()
current_assets_type = self.env.ref(
'account.data_account_type_liquidity', raise_if_not_found=False)
vals.update({
'user_type_id': current_assets_type and current_assets_type.id or False,
})
return vals

View File

@@ -31,6 +31,7 @@ This modules adds the following functions:
* don't attach PDF upon invoice report generation on supplier invoices/refunds
* Add filter on debit and credit amount for Move Lines
* Add supplier invoice number in invoice tree view
* Change type from current_assets to liquidity for transfert account template.
Together with this module, I recommend the use of the following modules: