oca-ocb-sale/odoo-bringout-oca-ocb-website_sale_autocomplete/website_sale_autocomplete/models/website.py
Ernad Husremovic 73afc09215 19.0 vanilla
2026-03-09 09:32:12 +01:00

14 lines
379 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class Website(models.Model):
_inherit = 'website'
google_places_api_key = fields.Char(
string='Google Places API Key',
groups="base.group_system")
def has_google_places_api_key(self):
return bool(self.sudo().google_places_api_key)