19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:31:28 +01:00
parent ff721d030e
commit 7721452493
1826 changed files with 124775 additions and 274114 deletions

View file

@ -0,0 +1,2 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import template_gt

View file

@ -0,0 +1,44 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
from odoo.addons.account.models.chart_template import template
class AccountChartTemplate(models.AbstractModel):
_inherit = 'account.chart.template'
@template('gt')
def _get_gt_template_data(self):
return {
'code_digits': '9',
'property_account_receivable_id': 'cta110201',
'property_account_payable_id': 'cta210101',
}
@template('gt', 'res.company')
def _get_gt_res_company(self):
return {
self.env.company.id: {
'account_fiscal_country_id': 'base.gt',
'bank_account_code_prefix': '1.0.01.0',
'cash_account_code_prefix': '1.0.02.0',
'transfer_account_code_prefix': '1.0.03.01',
'account_default_pos_receivable_account_id': 'cta110205',
'income_currency_exchange_account_id': 'cta410103',
'expense_currency_exchange_account_id': 'cta710101',
'account_sale_tax_id': 'impuestos_plantilla_iva_por_pagar',
'account_purchase_tax_id': 'impuestos_plantilla_iva_por_cobrar',
'income_account_id': 'cta410101',
'expense_account_id': 'cta510101',
'account_stock_journal_id': 'inventory_valuation',
'account_stock_valuation_id': 'cta140101',
},
}
@template('gt', 'account.account')
def _get_gt_account_account(self):
return {
'cta140101': {
'account_stock_expense_id': 'cta510101',
'account_stock_variation_id': 'cta640101',
},
}