19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:31:21 +01:00
parent 7dc55599c6
commit 7f43bbbfcc
650 changed files with 45260 additions and 33436 deletions

View file

@ -0,0 +1,45 @@
# 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('sg')
def _get_sg_template_data(self):
return {
'code_digits': '6',
'property_account_receivable_id': 'account_account_735',
'property_account_payable_id': 'account_account_777',
}
@template('sg', 'res.company')
def _get_sg_res_company(self):
return {
self.env.company.id: {
'account_fiscal_country_id': 'base.sg',
'bank_account_code_prefix': '10141',
'cash_account_code_prefix': '10140',
'transfer_account_code_prefix': '10110',
'account_default_pos_receivable_account_id': 'account_account_737',
'income_currency_exchange_account_id': 'account_account_853',
'expense_currency_exchange_account_id': 'account_account_853',
'account_journal_early_pay_discount_loss_account_id': 'account_account_800',
'account_journal_early_pay_discount_gain_account_id': 'account_account_856',
'account_sale_tax_id': 'sg_sale_tax_sr_9',
'account_purchase_tax_id': 'sg_purchase_tax_tx8_9',
'expense_account_id': 'account_account_819',
'income_account_id': 'account_account_803',
'account_stock_journal_id': 'inventory_valuation',
'account_stock_valuation_id': 'account_account_699',
},
}
@template('sg', 'account.account')
def _get_sg_account_account(self):
return {
'account_account_699': {
'account_stock_variation_id': 'account_account_844',
},
}