mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-26 23:42:07 +02:00
19.0 vanilla
This commit is contained in:
parent
ff721d030e
commit
7721452493
1826 changed files with 124775 additions and 274114 deletions
2
odoo-bringout-oca-ocb-l10n_mn/l10n_mn/models/__init__.py
Normal file
2
odoo-bringout-oca-ocb-l10n_mn/l10n_mn/models/__init__.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from . import template_mn
|
||||
37
odoo-bringout-oca-ocb-l10n_mn/l10n_mn/models/template_mn.py
Normal file
37
odoo-bringout-oca-ocb-l10n_mn/l10n_mn/models/template_mn.py
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# 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('mn')
|
||||
def _get_mn_template_data(self):
|
||||
return {
|
||||
'property_account_receivable_id': 'account_template_1201_0201',
|
||||
'property_account_payable_id': 'account_template_3101_0201',
|
||||
'property_stock_valuation_account_id': 'account_template_1401_0101',
|
||||
'code_digits': '8',
|
||||
}
|
||||
|
||||
@template('mn', 'res.company')
|
||||
def _get_mn_res_company(self):
|
||||
return {
|
||||
self.env.company.id: {
|
||||
'anglo_saxon_accounting': True,
|
||||
'account_fiscal_country_id': 'base.mn',
|
||||
'bank_account_code_prefix': '11',
|
||||
'cash_account_code_prefix': '10',
|
||||
'transfer_account_code_prefix': '1109',
|
||||
'account_default_pos_receivable_account_id': 'account_template_1201_0202',
|
||||
'income_currency_exchange_account_id': 'account_template_5301_0201',
|
||||
'expense_currency_exchange_account_id': 'account_template_5302_0201',
|
||||
'account_journal_early_pay_discount_loss_account_id': 'account_template_5701_0201',
|
||||
'account_journal_early_pay_discount_gain_account_id': 'account_template_5701_0101',
|
||||
'account_sale_tax_id': 'account_tax_sale_vat1',
|
||||
'account_purchase_tax_id': 'account_tax_purchase_vat1',
|
||||
'expense_account_id': 'account_template_6101_0101',
|
||||
'income_account_id': 'account_template_5101_0101',
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue