mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-27 05:42:02 +02:00
19.0 vanilla
This commit is contained in:
parent
ff721d030e
commit
7721452493
1826 changed files with 124775 additions and 274114 deletions
36
odoo-bringout-oca-ocb-l10n_se/l10n_se/models/template_se.py
Normal file
36
odoo-bringout-oca-ocb-l10n_se/l10n_se/models/template_se.py
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# 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('se')
|
||||
def _get_se_template_data(self):
|
||||
return {
|
||||
'property_account_receivable_id': 'a1510',
|
||||
'property_account_payable_id': 'a2440',
|
||||
'property_stock_valuation_account_id': 'a1410',
|
||||
'code_digits': '4',
|
||||
}
|
||||
|
||||
@template('se', 'res.company')
|
||||
def _get_se_res_company(self):
|
||||
return {
|
||||
self.env.company.id: {
|
||||
'account_fiscal_country_id': 'base.se',
|
||||
'bank_account_code_prefix': '193',
|
||||
'cash_account_code_prefix': '191',
|
||||
'transfer_account_code_prefix': '194',
|
||||
'account_default_pos_receivable_account_id': 'a1910',
|
||||
'income_currency_exchange_account_id': 'a3960',
|
||||
'expense_currency_exchange_account_id': 'a3960',
|
||||
'account_journal_early_pay_discount_loss_account_id': 'a9993',
|
||||
'account_journal_early_pay_discount_gain_account_id': 'a9994',
|
||||
'account_sale_tax_id': 'sale_tax_25_goods',
|
||||
'account_purchase_tax_id': 'purchase_tax_25_goods',
|
||||
'expense_account_id': 'a4000',
|
||||
'income_account_id': 'a30011',
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue