Odoo18-Base/addons/website_sale_autocomplete/models/website.py

15 lines
404 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
# -*- encoding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, fields
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)