mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-27 06:21:59 +02:00
19.0 vanilla
This commit is contained in:
parent
ff721d030e
commit
7721452493
1826 changed files with 124775 additions and 274114 deletions
52
odoo-bringout-oca-ocb-l10n_nl/l10n_nl/models/template_nl.py
Normal file
52
odoo-bringout-oca-ocb-l10n_nl/l10n_nl/models/template_nl.py
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# 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('nl')
|
||||
def _get_nl_template_data(self):
|
||||
return {
|
||||
'code_digits': '6',
|
||||
'property_account_receivable_id': 'recv',
|
||||
'property_account_payable_id': 'pay',
|
||||
'property_stock_valuation_account_id': '3200',
|
||||
}
|
||||
|
||||
@template('nl', 'res.company')
|
||||
def _get_nl_res_company(self):
|
||||
return {
|
||||
self.env.company.id: {
|
||||
'anglo_saxon_accounting': True,
|
||||
'account_fiscal_country_id': 'base.nl',
|
||||
'bank_account_code_prefix': '103',
|
||||
'cash_account_code_prefix': '101',
|
||||
'transfer_account_code_prefix': '1060',
|
||||
'account_default_pos_receivable_account_id': 'recv_pos',
|
||||
'income_currency_exchange_account_id': '8920',
|
||||
'expense_currency_exchange_account_id': '4920',
|
||||
'account_journal_early_pay_discount_loss_account_id': '7065',
|
||||
'account_journal_early_pay_discount_gain_account_id': '8065',
|
||||
'l10n_nl_rounding_difference_loss_account_id': '4960',
|
||||
'l10n_nl_rounding_difference_profit_account_id': '4950',
|
||||
'account_sale_tax_id': 'btw_21',
|
||||
'account_purchase_tax_id': 'btw_21_buy',
|
||||
'expense_account_id': '7001',
|
||||
'income_account_id': '8001',
|
||||
'deferred_expense_account_id': '1205',
|
||||
'deferred_revenue_account_id': '1405',
|
||||
'account_stock_journal_id': 'inventory_valuation',
|
||||
'account_stock_valuation_id': '3001',
|
||||
},
|
||||
}
|
||||
|
||||
@template('nl', 'account.account')
|
||||
def _get_nl_account_account(self):
|
||||
return {
|
||||
'3001': {
|
||||
'account_stock_expense_id': '7000',
|
||||
'account_stock_variation_id': '7090',
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue