Skip to content
Snippets Groups Projects
Commit 22223e14 authored by Hardik Prajapati's avatar Hardik Prajapati Committed by Ravi Gohil
Browse files

[IMP] l10n_no: generate payment reference called KID


the KID number is base on invoice and payment

the KID number control digit is calculated from the MOD10 (luan)

the last digit in the KID number is a control digit.

task-1969040

closes #33779

Signed-off-by: default avatarJosse Colpaert <jco@openerp.com>
parent 81c7afb8
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models
def _preserve_tag_on_taxes(cr, registry):
from odoo.addons.account.models.chart_template import preserve_existing_tags_on_taxes
......
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import account_journal
from . import account_move
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class AccountJournal(models.Model):
_inherit = 'account.journal'
invoice_reference_model = fields.Selection(selection_add=[('no', 'Norway')])
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
from stdnum import luhn
class AccountMove(models.Model):
_inherit = "account.move"
def _get_invoice_reference_no_invoice(self):
""" This computes the reference based on the Odoo format.
We calculat reference using invoice number and
partner id and added control digit at last.
"""
return self._get_kid_number()
def _get_invoice_reference_no_partner(self):
""" This computes the reference based on the Odoo format.
We calculat reference using invoice number and
partner id and added control digit at last.
"""
return self._get_kid_number()
def _get_kid_number(self):
self.ensure_one()
invoice_name = ''.join([i for i in self.name if i.isdigit()]).zfill(7)
ref = (str(self.partner_id.id).zfill(7)[-7:] + invoice_name[-7:])
return ref + luhn.calc_check_digit(ref)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment