1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_pl_reports/models/account_chart_template.py
2024-12-10 09:04:09 +07:00

17 lines
423 B
Python

# -*- coding: utf-8 -*-
from odoo.addons.account.models.chart_template import template
from odoo import models
class AccountChartTemplate(models.AbstractModel):
_inherit = 'account.chart.template'
@template('pl', 'res.company')
def _get_pl_reports_res_company(self):
return {
self.env.company.id: {
'deferred_expense_account_id': 'chart14000200',
}
}