40 lines
1.7 KiB
Python
40 lines
1.7 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('id')
|
|
def _get_id_template_data(self):
|
|
return {
|
|
'property_account_receivable_id': 'l10n_id_11210010',
|
|
'property_account_payable_id': 'l10n_id_21100010',
|
|
'property_account_expense_categ_id': 'l10n_id_51000010',
|
|
'property_account_income_categ_id': 'l10n_id_41000010',
|
|
'property_stock_account_input_categ_id': 'l10n_id_29000000',
|
|
'property_stock_account_output_categ_id': 'l10n_id_29000000',
|
|
'property_stock_valuation_account_id': 'l10n_id_11300180',
|
|
'code_digits': '8',
|
|
}
|
|
|
|
@template('id', 'res.company')
|
|
def _get_id_res_company(self):
|
|
return {
|
|
self.env.company.id: {
|
|
'anglo_saxon_accounting': True,
|
|
'account_fiscal_country_id': 'base.id',
|
|
'bank_account_code_prefix': '1112',
|
|
'cash_account_code_prefix': '1111',
|
|
'transfer_account_code_prefix': '1999999',
|
|
'account_default_pos_receivable_account_id': 'l10n_id_11210011',
|
|
'income_currency_exchange_account_id': 'l10n_id_81100010',
|
|
'expense_currency_exchange_account_id': 'l10n_id_91100010',
|
|
'account_journal_early_pay_discount_loss_account_id': 'l10n_id_99900003',
|
|
'account_journal_early_pay_discount_gain_account_id': 'l10n_id_99900004',
|
|
'account_sale_tax_id': 'tax_ST1',
|
|
'account_purchase_tax_id': 'tax_PT1',
|
|
},
|
|
}
|