54 lines
2.1 KiB
Python
54 lines
2.1 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('uk')
|
|
def _get_uk_template_data(self):
|
|
return {
|
|
'property_account_receivable_id': '1100',
|
|
'property_account_payable_id': '2100',
|
|
'property_account_expense_categ_id': '5000',
|
|
'property_account_income_categ_id': '4000',
|
|
'code_digits': '6',
|
|
}
|
|
|
|
@template('uk', 'res.company')
|
|
def _get_uk_res_company(self):
|
|
return {
|
|
self.env.company.id: {
|
|
'anglo_saxon_accounting': True,
|
|
'account_fiscal_country_id': 'base.uk',
|
|
'bank_account_code_prefix': '1200',
|
|
'cash_account_code_prefix': '1210',
|
|
'transfer_account_code_prefix': '1220',
|
|
'account_default_pos_receivable_account_id': '1104',
|
|
'income_currency_exchange_account_id': '7700',
|
|
'expense_currency_exchange_account_id': '7700',
|
|
'account_sale_tax_id': 'ST11',
|
|
'account_purchase_tax_id': 'PT_20_G',
|
|
'deferred_expense_account_id': '1103',
|
|
'deferred_revenue_account_id': '2109',
|
|
},
|
|
}
|
|
|
|
def _post_load_data(self, template_code, company, template_data):
|
|
"""If the company is located in Northern Ireland, activate the relevant taxes and fiscal postions."""
|
|
result = super()._post_load_data(template_code, company, template_data)
|
|
|
|
is_ni = {
|
|
'base.state_uk18', 'base.state_uk19', 'base.state_uk20', 'base.state_uk21',
|
|
'base.state_uk22', 'base.state_uk23', 'base.state_uk24',
|
|
}.intersection(
|
|
company.state_id._get_external_ids().get(company.state_id.id, [])
|
|
)
|
|
|
|
if is_ni:
|
|
for xmlid in ['PT8', 'ST4', 'PT7', 'account_fiscal_position_ni_to_eu_b2b']:
|
|
self.ref(xmlid).active = True
|
|
|
|
return result
|