mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-26 05:22:00 +02:00
51 lines
2.2 KiB
Python
51 lines
2.2 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('ee')
|
|
def _get_ee_template_data(self):
|
|
return {
|
|
'property_account_receivable_id': 'l10n_ee_10200',
|
|
'property_account_payable_id': 'l10n_ee_2010',
|
|
'code_digits': '6',
|
|
}
|
|
|
|
@template('ee', 'res.company')
|
|
def _get_ee_res_company(self):
|
|
return {
|
|
self.env.company.id: {
|
|
'account_fiscal_country_id': 'base.ee',
|
|
'bank_account_code_prefix': '1001',
|
|
'cash_account_code_prefix': '1000',
|
|
'transfer_account_code_prefix': '1008',
|
|
'account_default_pos_receivable_account_id': 'l10n_ee_10201',
|
|
'income_currency_exchange_account_id': 'l10n_ee_422',
|
|
'expense_currency_exchange_account_id': 'l10n_ee_673',
|
|
'account_journal_suspense_account_id': 'l10n_ee_1009',
|
|
'account_journal_early_pay_discount_loss_account_id': 'l10n_ee_6850',
|
|
'account_journal_early_pay_discount_gain_account_id': 'l10n_ee_430',
|
|
'default_cash_difference_income_account_id': 'l10n_ee_420',
|
|
'default_cash_difference_expense_account_id': 'l10n_ee_671',
|
|
'account_sale_tax_id': 'l10n_ee_vat_out_24_g',
|
|
'account_purchase_tax_id': 'l10n_ee_vat_in_24_g',
|
|
'income_account_id': 'l10n_ee_40000',
|
|
'expense_account_id': 'l10n_ee_50',
|
|
'l10n_ee_rounding_difference_loss_account_id': 'l10n_ee_6851',
|
|
'l10n_ee_rounding_difference_profit_account_id': 'l10n_ee_431',
|
|
'account_stock_journal_id': 'inventory_valuation',
|
|
'account_stock_valuation_id': 'l10n_ee_1030',
|
|
},
|
|
}
|
|
|
|
@template('ee', 'account.account')
|
|
def _get_ee_account_account(self):
|
|
return {
|
|
'l10n_ee_1030': {
|
|
'account_stock_expense_id': 'l10n_ee_51',
|
|
'account_stock_variation_id': 'l10n_ee_6810',
|
|
},
|
|
}
|