oca-ocb-l10n_europe/odoo-bringout-oca-ocb-l10n_lt/l10n_lt/models/template_lt.py
Ernad Husremovic 7721452493 19.0 vanilla
2026-03-09 09:31:28 +01:00

58 lines
2.9 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('lt')
def _get_lt_template_data(self):
return {
'property_account_receivable_id': 'account_account_template_2410',
'property_account_payable_id': 'account_account_template_4430',
'property_stock_valuation_account_id': 'account_account_template_2040',
'code_digits': '6',
}
@template('lt', 'res.company')
def _get_lt_res_company(self):
return {
self.env.company.id: {
'anglo_saxon_accounting': True,
'account_fiscal_country_id': 'base.lt',
'bank_account_code_prefix': '271',
'cash_account_code_prefix': '272',
'transfer_account_code_prefix': '273',
'account_default_pos_receivable_account_id': 'account_account_template_2411',
'income_currency_exchange_account_id': 'account_account_template_5803',
'expense_currency_exchange_account_id': 'account_account_template_6803',
'account_journal_early_pay_discount_loss_account_id': 'account_account_template_509',
'account_journal_early_pay_discount_gain_account_id': 'account_account_template_6209',
'account_sale_tax_id': 'account_tax_template_sales_21',
'account_purchase_tax_id': 'account_tax_template_purchase_21',
'expense_account_id': 'account_account_template_6000',
'income_account_id': 'account_account_template_5000',
'account_stock_journal_id': 'inventory_valuation',
'account_stock_valuation_id': 'account_account_template_2010',
},
}
def _setup_utility_bank_accounts(self, template_code, company, template_data):
super()._setup_utility_bank_accounts(template_code, company, template_data)
if template_code == "lt":
bank_tags = self.env.ref('l10n_lt.account_account_tag_b_4')
company.account_journal_suspense_account_id.tag_ids |= bank_tags
company.transfer_account_id.tag_ids |= bank_tags
other_operating_results_tags = self.env.ref('l10n_lt.account_account_tag_6_other_operating_results')
company.default_cash_difference_income_account_id.tag_ids |= other_operating_results_tags
company.default_cash_difference_expense_account_id.tag_ids |= other_operating_results_tags
@template('lt', 'account.account')
def _get_lt_account_account(self):
return {
'account_account_template_2010': {
'account_stock_expense_id': 'account_account_template_6208',
'account_stock_variation_id': 'account_account_template_6005',
},
}