Odoo18-Base/addons/sale_gelato/models/res_company.py
2025-03-04 12:23:19 +07:00

11 lines
302 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResCompany(models.Model):
_inherit = 'res.company'
gelato_api_key = fields.Char(string="Gelato API Key")
gelato_webhook_secret = fields.Char(string="Gelato Webhook Secret")