mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-23 03:52:06 +02:00
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
|
|
)
|