mirror of
https://github.com/bringout/oca-purchase.git
synced 2026-04-22 13:02:04 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
361 B
Python
12 lines
361 B
Python
# Copyright 2024 Onestein
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
purchase_portal_confirmation_sign = fields.Boolean(
|
|
related="company_id.purchase_portal_confirmation_sign",
|
|
readonly=False,
|
|
)
|