Add Belgian structured communication (OGM/VCS) invoice reference type

This commit is contained in:
Kristof Bernaert
2026-04-13 18:16:24 +02:00
parent 16da61111b
commit d24a769000
5 changed files with 56 additions and 0 deletions
@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
from odoo import fields, models
class AccountJournal(models.Model):
_inherit = 'account.journal'
invoice_reference_type = fields.Selection(
selection_add=[('be_structured', 'Based on Invoice Number (BE Structured)')],
ondelete={'be_structured': 'set default'},
)