15 lines
404 B
Python
15 lines
404 B
Python
|
# -*- 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)
|