mirror of
https://github.com/bringout/oca-server-auth.git
synced 2026-04-19 11:52:05 +02:00
10 lines
254 B
Python
10 lines
254 B
Python
# © 2021 Florian Kantelberg - initOS GmbH
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class RecCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
vault_share_delay = fields.Integer(default=0)
|