mirror of
https://github.com/bringout/oca-purchase.git
synced 2026-04-23 22:42:02 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
307 B
Python
11 lines
307 B
Python
# Copyright 2024 Onestein
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
purchase_portal_confirmation_sign = fields.Boolean(
|
|
string="Purchase Online Signature", default=False
|
|
)
|