mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-27 13:22:05 +02:00
19.0 vanilla
This commit is contained in:
parent
ff721d030e
commit
7721452493
1826 changed files with 124775 additions and 274114 deletions
34
odoo-bringout-oca-ocb-l10n_si/l10n_si/models/template_si.py
Normal file
34
odoo-bringout-oca-ocb-l10n_si/l10n_si/models/template_si.py
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# 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('si')
|
||||
def _get_si_template_data(self):
|
||||
return {
|
||||
'property_account_receivable_id': 'gd_acc_120000',
|
||||
'property_account_payable_id': 'gd_acc_220000',
|
||||
'code_digits': '6',
|
||||
'use_storno_accounting': True,
|
||||
}
|
||||
|
||||
@template('si', 'res.company')
|
||||
def _get_si_res_company(self):
|
||||
return {
|
||||
self.env.company.id: {
|
||||
'account_fiscal_country_id': 'base.si',
|
||||
'bank_account_code_prefix': '110',
|
||||
'cash_account_code_prefix': '100',
|
||||
'transfer_account_code_prefix': '109',
|
||||
'account_default_pos_receivable_account_id': 'gd_acc_125000',
|
||||
'income_currency_exchange_account_id': 'gd_acc_777000',
|
||||
'expense_currency_exchange_account_id': 'gd_acc_484000',
|
||||
'account_sale_tax_id': 'gd_taxr_3',
|
||||
'account_purchase_tax_id': 'gd_taxp_3',
|
||||
'expense_account_id': 'gd_acc_702000',
|
||||
'income_account_id': 'gd_acc_762000',
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue