You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
445 B
12 lines
445 B
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
group_validate_invoice_negative_total_amount = fields.Boolean(
|
|
"""Allow validating an invoice with a negative total amount""",
|
|
implied_group="beesdoo_account."
|
|
"group_validate_invoice_negative_total_amount",
|
|
help="""Allows you to validate an invoice with a negative total amount""",
|
|
)
|