Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
13
account_invoice_supplier_ref_unique/models/res_company.py
Normal file
13
account_invoice_supplier_ref_unique/models/res_company.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# Copyright 2023 ACSONE SA/NV
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResCompany(models.Model):
|
||||
_inherit = "res.company"
|
||||
|
||||
check_invoice_supplier_number = fields.Boolean(
|
||||
help="Check this if you want to constraint the unicity for Invoice Supplier"
|
||||
" Number",
|
||||
)
|
||||
Reference in New Issue
Block a user