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,2 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import product_template, template_my

View file

@ -0,0 +1,10 @@
from odoo import fields, models
class ProductTemplate(models.Model):
_inherit = "product.template"
l10n_my_tax_classification_code = fields.Char(
string="Malaysian Customs Tariff Code",
help="A unique identifier for classifying items for official declaration. It holds the Customs Tariff Code for physical goods or the Service Type Code for services.",
)

View file

@ -0,0 +1,44 @@
# 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('my')
def _get_my_template_data(self):
return {
'property_account_receivable_id': 'l10n_my_1240',
'property_account_payable_id': 'l10n_my_2211',
'code_digits': '6',
}
@template('my', 'res.company')
def _get_my_res_company(self):
return {
self.env.company.id: {
'anglo_saxon_accounting': True,
'account_fiscal_country_id': 'base.my',
'bank_account_code_prefix': '1200',
'cash_account_code_prefix': '1210',
'transfer_account_code_prefix': '111220',
'account_default_pos_receivable_account_id': 'l10n_my_1243',
'income_currency_exchange_account_id': 'l10n_my_4240',
'expense_currency_exchange_account_id': 'l10n_my_5240',
'account_sale_tax_id': 'l10n_my_tax_sale_10',
'income_account_id': 'l10n_my_41',
'expense_account_id': 'l10n_my_51',
'tax_calculation_rounding_method': 'round_per_line',
'account_stock_journal_id': 'inventory_valuation',
'account_stock_valuation_id': 'l10n_my_1270',
},
}
@template('my', 'account.account')
def _get_my_account_account(self):
return {
'l10n_my_1270': {
'account_stock_variation_id': 'l10n_my_51',
},
}