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,6 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import account_move
from . import template_nz
from . import account_payment
from . import res_partner

View file

@ -0,0 +1,13 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class AccountMove(models.Model):
_inherit = 'account.move'
def _get_name_invoice_report(self):
# Safety mechanism to avoid issues if the module has not yet been updated.
template = self.env.ref('l10n_nz.report_invoice_document', raise_if_not_found=False)
if template and self.company_id.account_fiscal_country_id.code == 'NZ':
return 'l10n_nz.report_invoice_document'
return super()._get_name_invoice_report()

View file

@ -0,0 +1,13 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, api, _
class AccountPayment(models.Model):
_inherit = 'account.payment'
@api.depends('country_code', 'partner_type')
def _compute_payment_receipt_title(self):
# OVERRIDE
super()._compute_payment_receipt_title()
for payment in self.filtered(lambda p: p.country_code == 'NZ' and p.partner_type == 'supplier'):
payment.payment_receipt_title = _('Remittance Advice')

View file

@ -0,0 +1,10 @@
from odoo import models, _
class ResPartner(models.Model):
_inherit = 'res.partner'
def _get_company_registry_labels(self):
labels = super()._get_company_registry_labels()
labels['NZ'] = _("NZBN")
return labels

View file

@ -0,0 +1,40 @@
# 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('nz')
def _get_nz_template_data(self):
return {
'code_digits': '5',
'property_account_receivable_id': 'nz_11200',
'property_account_payable_id': 'nz_21200',
'property_stock_valuation_account_id': 'nz_11330',
'property_stock_account_production_cost_id': 'nz_11350',
}
@template('nz', 'res.company')
def _get_nz_res_company(self):
return {
self.env.company.id: {
'anglo_saxon_accounting': True,
'account_fiscal_country_id': 'base.nz',
'bank_account_code_prefix': '1111',
'cash_account_code_prefix': '1113',
'transfer_account_code_prefix': '11170',
'account_default_pos_receivable_account_id': 'nz_11220',
'income_currency_exchange_account_id': 'nz_61630',
'expense_currency_exchange_account_id': 'nz_61630',
'account_journal_early_pay_discount_loss_account_id': 'nz_61610',
'account_journal_early_pay_discount_gain_account_id': 'nz_61620',
'account_sale_tax_id': 'nz_tax_sale_15',
'account_purchase_tax_id': 'nz_tax_purchase_15',
'fiscalyear_last_month': '3',
'fiscalyear_last_day': 31,
'expense_account_id': 'nz_51110',
'income_account_id': 'nz_41110',
},
}