odoo18/addons/sale_gelato/models/res_company.py

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")