18 lines
844 B
Python
18 lines
844 B
Python
from odoo import models
|
|
|
|
|
|
class AccountChartTemplate(models.Model):
|
|
_inherit = 'account.chart.template'
|
|
|
|
def _prepare_all_journals(self, acc_template_ref, company, journals_dict=None):
|
|
""" If EGYPT chart, we add 2 new journals TA and IFRS"""
|
|
if self == self.env.ref('l10n_eg.egypt_chart_template_standard'):
|
|
if not journals_dict:
|
|
journals_dict = []
|
|
journals_dict.extend(
|
|
[{"name": "Tax Adjustments", "company_id": company.id, "code": "TA", "type": "general", "sequence": 1,
|
|
"favorite": True},
|
|
{"name": "IFRS 16", "company_id": company.id, "code": "IFRS", "type": "general", "favorite": True,
|
|
"sequence": 10}])
|
|
return super()._prepare_all_journals(acc_template_ref, company, journals_dict=journals_dict)
|