oca-ocb-l10n_asia-pacific/odoo-bringout-oca-ocb-l10n_sg/l10n_sg/models/template_sg.py
Ernad Husremovic 7f43bbbfcc 19.0 vanilla
2026-03-09 09:31:21 +01:00

45 lines
1.9 KiB
Python

# 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',
},
}