14 lines
381 B
Python
Executable File
14 lines
381 B
Python
Executable File
# Copyright 2018 ACSONE SA/NV (<http://acsone.eu>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
sale_default_invoice_policy = fields.Selection(
|
|
related="company_id.sale_default_invoice_policy",
|
|
readonly=False,
|
|
)
|