mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-27 04:01:59 +02:00
46 lines
1.8 KiB
Python
46 lines
1.8 KiB
Python
# 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('hn')
|
|
def _get_hn_template_data(self):
|
|
return {
|
|
'property_account_receivable_id': 'cta110201',
|
|
'property_account_payable_id': 'cta210101',
|
|
'code_digits': '9',
|
|
}
|
|
|
|
@template('hn', 'res.company')
|
|
def _get_hn_res_company(self):
|
|
return {
|
|
self.env.company.id: {
|
|
'account_fiscal_country_id': 'base.hn',
|
|
'bank_account_code_prefix': '1.1.01.',
|
|
'cash_account_code_prefix': '1.1.01.',
|
|
'transfer_account_code_prefix': '1.1.01.00',
|
|
'account_default_pos_receivable_account_id': 'cta110205',
|
|
'income_currency_exchange_account_id': 'cta410103',
|
|
'expense_currency_exchange_account_id': 'cta710101',
|
|
'account_journal_early_pay_discount_loss_account_id': 'cta620202',
|
|
'account_journal_early_pay_discount_gain_account_id': 'cta420102',
|
|
'account_sale_tax_id': 'impuestos_plantilla_isv_por_pagar',
|
|
'account_purchase_tax_id': 'impuestos_plantilla_isv_por_cobrar',
|
|
'income_account_id': 'cta410101',
|
|
'expense_account_id': 'cta510101',
|
|
'account_stock_journal_id': 'inventory_valuation',
|
|
'account_stock_valuation_id': 'cta130601',
|
|
},
|
|
}
|
|
|
|
@template('hn', 'account.account')
|
|
def _get_hn_account_account(self):
|
|
return {
|
|
'cta130601': {
|
|
'account_stock_expense_id': 'cta510101',
|
|
'account_stock_variation_id': 'cta620201',
|
|
},
|
|
}
|