19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:31:28 +01:00
parent ff721d030e
commit 7721452493
1826 changed files with 124775 additions and 274114 deletions

View file

@ -0,0 +1,39 @@
# 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('do')
def _get_do_template_data(self):
return {
'code_digits': '8',
'property_account_receivable_id': 'l10n_do_11030201',
'property_account_payable_id': 'l10n_do_21010200',
'property_stock_valuation_account_id': 'l10n_do_11050100',
}
@template('do', 'res.company')
def _get_do_res_company(self):
return {
self.env.company.id: {
'anglo_saxon_accounting': True,
'account_fiscal_country_id': 'base.do',
'bank_account_code_prefix': '110102',
'cash_account_code_prefix': '110101',
'transfer_account_code_prefix': '11010100',
'account_default_pos_receivable_account_id': 'l10n_do_11030210',
'income_currency_exchange_account_id': 'l10n_do_42040100',
'expense_currency_exchange_account_id': 'l10n_do_61070800',
'account_journal_early_pay_discount_loss_account_id': 'l10n_do_61081000',
'account_journal_early_pay_discount_gain_account_id': 'l10n_do_42040400',
'default_cash_difference_income_account_id': 'l10n_do_42040400',
'default_cash_difference_expense_account_id': 'l10n_do_61081000',
'account_sale_tax_id': 'tax_18_sale',
'account_purchase_tax_id': 'tax_18_purch',
'income_account_id': 'l10n_do_41010100',
'expense_account_id': 'l10n_do_51010100',
},
}