@ -0,0 +1,45 @@ |
|||||
|
.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg |
||||
|
:target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html |
||||
|
:alt: License: LGPL-3 |
||||
|
|
||||
|
Google Search Systray |
||||
|
===================== |
||||
|
This module will helps to browse anything in Odoo itself |
||||
|
|
||||
|
License |
||||
|
------- |
||||
|
Lesser General Public License, Version 3 (LGPL-3). |
||||
|
(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) |
||||
|
|
||||
|
Company |
||||
|
------- |
||||
|
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Credits |
||||
|
------- |
||||
|
* Developer: |
||||
|
(V16) Sruthi Pavithran, |
||||
|
(V17) Jumana Haseen, |
||||
|
(V18) Akhil, |
||||
|
Contact: odoo@cybrosys.com |
||||
|
|
||||
|
Contacts |
||||
|
-------- |
||||
|
* Mail Contact : odoo@cybrosys.com |
||||
|
|
||||
|
Bug Tracker |
||||
|
----------- |
||||
|
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. |
||||
|
|
||||
|
Maintainer |
||||
|
========== |
||||
|
.. image:: https://cybrosys.com/images/logo.png |
||||
|
:target: https://cybrosys.com |
||||
|
|
||||
|
This module is maintained by Cybrosys Technologies. |
||||
|
|
||||
|
For support and more information, please visit `Our Website <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Further information |
||||
|
=================== |
||||
|
HTML Description: `<static/description/index.html>`__ |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Akhil (odoo@cybrosys.com) |
||||
|
# |
||||
|
# You can modify it under the terms of the GNU LESSER |
||||
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
||||
|
# (LGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from . import models |
@ -0,0 +1,49 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Akhil (odoo@cybrosys.com) |
||||
|
# |
||||
|
# You can modify it under the terms of the GNU LESSER |
||||
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
||||
|
# (LGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
{ |
||||
|
'name': "Google Search Systray", |
||||
|
'version': '18.0.1.0.0', |
||||
|
'category': "Extra Tools", |
||||
|
'summary': """Manage to browse anything in Odoo itself""", |
||||
|
'description': """This module will helps to browse anything in |
||||
|
Odoo itself""", |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'maintainer': 'Cybrosys Techno Solutions', |
||||
|
'website': "https://www.cybrosys.com", |
||||
|
'depends': ['base', 'base_setup'], |
||||
|
'data': [ |
||||
|
'views/res_config_settings_views.xml', |
||||
|
], |
||||
|
'assets': { |
||||
|
'web.assets_backend': [ |
||||
|
'google_search_in_odoo/static/src/xml/google_search.xml', |
||||
|
'google_search_in_odoo/static/src/js/google_search.js', |
||||
|
'google_search_in_odoo/static/src/css/google_search.css' |
||||
|
], |
||||
|
}, |
||||
|
'license': 'LGPL-3', |
||||
|
'images': ['static/description/banner.jpg'], |
||||
|
'installable': True, |
||||
|
'application': True, |
||||
|
'auto_install': False, |
||||
|
} |
@ -0,0 +1,6 @@ |
|||||
|
## Module <google_search_in_odoo> |
||||
|
|
||||
|
#### 19.11.2024 |
||||
|
#### Version 18.0.1.0.0 |
||||
|
#### ADD |
||||
|
- Initial Commit for Google Search Systray |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Akhil (odoo@cybrosys.com) |
||||
|
# |
||||
|
# You can modify it under the terms of the GNU LESSER |
||||
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
||||
|
# (LGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from . import res_config_settings |
@ -0,0 +1,72 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Akhil (odoo@cybrosys.com) |
||||
|
# |
||||
|
# You can modify it under the terms of the GNU LESSER |
||||
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
||||
|
# (LGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
import requests |
||||
|
from odoo import api, fields, models |
||||
|
|
||||
|
|
||||
|
class ResConfigSettings(models.TransientModel): |
||||
|
"""Add field to configuration settings""" |
||||
|
_inherit = 'res.config.settings' |
||||
|
|
||||
|
google_search = fields.Boolean( |
||||
|
string='Allow the users to synchronize the google search', |
||||
|
config_parameter='google_search_in_odoo.google_search', |
||||
|
help="For synchronizing the google search") |
||||
|
ser_client_api = fields.Char( |
||||
|
"API Key", |
||||
|
config_parameter='google_search_in_odoo.ser_client_api', |
||||
|
help="Google search api key") |
||||
|
ser_client_engine = fields.Char( |
||||
|
"Search Engine", |
||||
|
config_parameter='google_search_in_odoo.ser_client_engine', |
||||
|
help="Search engine ID") |
||||
|
|
||||
|
@api.model |
||||
|
def google_search_config(self, input_data): |
||||
|
"""Create function to get google custom search api response""" |
||||
|
api_key = self.env['ir.config_parameter'].sudo().get_param( |
||||
|
'google_search_in_odoo.ser_client_api') |
||||
|
search_engine = self.env['ir.config_parameter'].sudo().get_param( |
||||
|
'google_search_in_odoo.ser_client_engine') |
||||
|
google_search = self.env['ir.config_parameter'].sudo().get_param( |
||||
|
'google_search_in_odoo.google_search') |
||||
|
if not google_search: |
||||
|
return { |
||||
|
'error': 'Please enable Google Search.' |
||||
|
} |
||||
|
else: |
||||
|
if not api_key and not search_engine: |
||||
|
return { |
||||
|
'error': 'Please provide API key and Search engine ID.' |
||||
|
} |
||||
|
base_url = 'https://www.googleapis.com/customsearch/v1' |
||||
|
params = { |
||||
|
'q': input_data, |
||||
|
'key': api_key, |
||||
|
'cx': search_engine, |
||||
|
'num': 10, |
||||
|
} |
||||
|
response = requests.get(base_url, params=params) |
||||
|
if response.status_code == 200: |
||||
|
data = response.json() |
||||
|
items = data.get('items', []) |
||||
|
return items |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 210 KiB |
After Width: | Height: | Size: 209 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 495 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 624 B |
After Width: | Height: | Size: 136 KiB |
After Width: | Height: | Size: 214 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 929 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 542 B |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 365 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 600 B |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 462 B |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 926 B |
After Width: | Height: | Size: 9.0 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 800 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 189 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 875 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 767 KiB |
After Width: | Height: | Size: 138 KiB |
After Width: | Height: | Size: 760 KiB |
After Width: | Height: | Size: 92 KiB |
After Width: | Height: | Size: 697 KiB |
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 249 KiB |
After Width: | Height: | Size: 520 KiB |
After Width: | Height: | Size: 196 KiB |
After Width: | Height: | Size: 200 KiB |
After Width: | Height: | Size: 196 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 104 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 92 KiB |
After Width: | Height: | Size: 880 KiB |
After Width: | Height: | Size: 735 KiB |
After Width: | Height: | Size: 43 KiB |
@ -0,0 +1,75 @@ |
|||||
|
.toggle-icon{ |
||||
|
padding: 10px; |
||||
|
margin-bottom: 18px; |
||||
|
} |
||||
|
.search{ |
||||
|
|
||||
|
border-top-right-radius: 32px !important; |
||||
|
border-bottom-right-radius: 32px !important; |
||||
|
background-color: #fff; |
||||
|
} |
||||
|
.google{ |
||||
|
|
||||
|
border-top-left-radius: 32px !important; |
||||
|
border-bottom-left-radius: 32px !important; |
||||
|
background-color: #fff; |
||||
|
|
||||
|
} |
||||
|
.input-group-prepend { |
||||
|
margin-right: -2px !important; |
||||
|
} |
||||
|
.input-group-append { |
||||
|
margin-left: -2px !important; |
||||
|
} |
||||
|
.form-control:focus { |
||||
|
color: #495057; |
||||
|
background-color: #fff; |
||||
|
border-color: #ced4da; |
||||
|
outline: 0; |
||||
|
box-shadow: 0 0 0 0 !important; |
||||
|
|
||||
|
} |
||||
|
.form-control{ |
||||
|
border-right: 0 !important; |
||||
|
border-left: 0 !important; |
||||
|
background-color: #fff; |
||||
|
} |
||||
|
.container { |
||||
|
position: relative; |
||||
|
width: 100%; |
||||
|
overflow: hidden; |
||||
|
/* 16:9 Aspect Ratio */ |
||||
|
} |
||||
|
.google_result{ |
||||
|
background-color: #fff; |
||||
|
width: 500px; |
||||
|
height: 500px; |
||||
|
z-index:2; |
||||
|
position: absolute; |
||||
|
margin-top:28px; |
||||
|
border: 4px solid black; |
||||
|
overflow: auto; |
||||
|
} |
||||
|
.google_result > div { |
||||
|
background-color: #fff; |
||||
|
border: 1px solid #ccc; |
||||
|
padding: 10px; |
||||
|
margin: 10px 0; |
||||
|
border-radius: 4px; |
||||
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); |
||||
|
} |
||||
|
.header { |
||||
|
font-size: 1.5rem; |
||||
|
font-weight: bold; |
||||
|
} |
||||
|
.link { |
||||
|
color: #1a0dab; |
||||
|
text-decoration: underline; |
||||
|
} |
||||
|
.link:hover { |
||||
|
color: #0d0d0d; |
||||
|
} |
||||
|
.content { |
||||
|
font-size: 0.9rem; |
||||
|
color: #545454; |
||||
|
} |
@ -0,0 +1,81 @@ |
|||||
|
/** @odoo-module **/ |
||||
|
import { WarningDialog } from "@web/core/errors/error_dialogs"; |
||||
|
import { useService } from "@web/core/utils/hooks"; |
||||
|
import { Component,useState } from "@odoo/owl"; |
||||
|
import { session } from "@web/session"; |
||||
|
import { registry } from "@web/core/registry"; |
||||
|
import { Dropdown } from "@web/core/dropdown/dropdown"; |
||||
|
import { _t } from "@web/core/l10n/translation"; |
||||
|
import { Dialog } from "@web/core/dialog/dialog"; |
||||
|
export class GoogleSearchWidget extends Component { |
||||
|
async setup() { |
||||
|
super.setup(...arguments); |
||||
|
this.orm = useService('orm'); |
||||
|
this.dialog = useService("dialog"); |
||||
|
this.events = [ |
||||
|
'keydown', |
||||
|
]; |
||||
|
this.state = useState({ |
||||
|
isGoogleSearchEnabled: '', |
||||
|
}); |
||||
|
this.orm.call("ir.config_parameter", "get_param", ["google_search_in_odoo.google_search"]).then((result) => { |
||||
|
this.state.isGoogleSearchEnabled = result; |
||||
|
console.log("Google search is enabled:", this.state.isGoogleSearchEnabled); |
||||
|
}); |
||||
|
}; |
||||
|
onKeyPress(ev) { |
||||
|
if (ev.key === "Enter") { |
||||
|
ev.preventDefault(); |
||||
|
this._onClick(ev); |
||||
|
} |
||||
|
} |
||||
|
async _onClick(ev) { |
||||
|
var self = this |
||||
|
// Get response from google based on the search value and display result on the template
|
||||
|
var input = document.getElementById("search_text") |
||||
|
const resultsDiv = document.getElementById('google_result'); |
||||
|
if (ev.key === "Enter" && input.value.trim() !== '') { |
||||
|
this.orm.call('res.config.settings','google_search_config',[input.value] |
||||
|
).then(function (result) { |
||||
|
if (result.error) { |
||||
|
var title = _t("Alert"); |
||||
|
var message = _t(result.error); |
||||
|
self.dialog.add(WarningDialog, { title, message }); |
||||
|
} else if (result === null) { |
||||
|
var warning = _t('Limit exceeded for Queries and Queries per day') |
||||
|
self.dialog.add(WarningDialog, { title, warning }); |
||||
|
}else { |
||||
|
resultsDiv.innerHTML = ''; |
||||
|
for (let i = 0; i < result.length; i++) { |
||||
|
const resultItem = document.createElement("div"); |
||||
|
const titleText = document.createTextNode(result[i].title); |
||||
|
const titleElement = document.createElement("h2"); |
||||
|
titleElement.classList.add("header") |
||||
|
titleElement.appendChild(titleText); |
||||
|
const linkElement = document.createElement("a"); |
||||
|
linkElement.classList.add("link") |
||||
|
linkElement.href = result[i].link; |
||||
|
linkElement.textContent = result[i].link; |
||||
|
const snippetText = document.createTextNode(result[i].snippet); |
||||
|
const snippetElement = document.createElement("p"); |
||||
|
snippetElement.classList.add("content") |
||||
|
snippetElement.appendChild(snippetText); |
||||
|
resultItem.appendChild(titleElement); |
||||
|
resultItem.appendChild(linkElement); |
||||
|
resultItem.appendChild(snippetElement); |
||||
|
resultsDiv.appendChild(resultItem); |
||||
|
} |
||||
|
resultsDiv.style.display = 'block'; |
||||
|
} |
||||
|
}); |
||||
|
} else { |
||||
|
resultsDiv.style.display = 'none'; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
GoogleSearchWidget.components = { Dropdown }; |
||||
|
export const searchItem = { |
||||
|
Component: GoogleSearchWidget, |
||||
|
}; |
||||
|
GoogleSearchWidget.template = "google_search_in_odoo.SearchSystray" |
||||
|
registry.category("systray").add("GoogleSearch", searchItem, { sequence: 0 }); |
@ -0,0 +1,28 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<templates> |
||||
|
<!-- Template Google Search Output--> |
||||
|
<t t-name="google_search_in_odoo.SearchSystray"> |
||||
|
<div t-if="state.isGoogleSearchEnabled" class="toggle-icon" role="button"> |
||||
|
<t > |
||||
|
<div class="input-group col-sm-7 input-group-lg" |
||||
|
id="google_search" style="height:2px"> |
||||
|
<div class="input-group-prepend"> |
||||
|
<span class="input-group-text google"> |
||||
|
<img src="https://img.icons8.com/color/48/000000/google-logo.png" |
||||
|
style="height:11px;"/> |
||||
|
</span> |
||||
|
</div> |
||||
|
<input type="text" id="search_text" class="form-control" |
||||
|
style="height:23px;" t-on-click="_onClick" t-on-keydown="ev => this.onKeyPress(ev)"/> |
||||
|
<div class="input-group-append"> |
||||
|
<span class="input-group-text search"> |
||||
|
<img src="https://img.icons8.com/nolan/48/000000/search.png" |
||||
|
style="height:11px;"/> |
||||
|
</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="google_result" class="google_result" style="display: none"/> |
||||
|
</t> |
||||
|
</div> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,55 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- Inherit res config settings view--> |
||||
|
<record id="res_config_settings_view_form" model="ir.ui.view"> |
||||
|
<field name="name"> |
||||
|
res.config.settings.view.form.inherit.google.search.in.odoo |
||||
|
</field> |
||||
|
<field name="model">res.config.settings</field> |
||||
|
<field name="inherit_id" |
||||
|
ref="base_setup.res_config_settings_view_form"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<setting id="recaptcha" position="after"> |
||||
|
<div class="col-12 col-lg-6 o_setting_box" |
||||
|
id="sync_google_search_setting"> |
||||
|
<div class="o_setting_left_pane"> |
||||
|
<field name="google_search"/> |
||||
|
</div> |
||||
|
<div class="o_setting_right_pane"> |
||||
|
<label string="Google Search" |
||||
|
for="google_search"/> |
||||
|
<div class="text-muted"> |
||||
|
Synchronize your search with Google Search |
||||
|
</div> |
||||
|
<div class="content-group" |
||||
|
invisible="google_search == False"> |
||||
|
<div class="mt16 row"> |
||||
|
<label for="ser_client_api" string="API Key" |
||||
|
class="col-3 col-lg-3 o_light_label"/> |
||||
|
<field name="ser_client_api" nolabel="1"/> |
||||
|
</div> |
||||
|
<div class="mt16 row"> |
||||
|
<label for="ser_client_engine" |
||||
|
string="Client Search Engine" |
||||
|
class="col-3 col-lg-3 o_light_label"/> |
||||
|
<field name="ser_client_engine" nolabel="1"/> |
||||
|
</div> |
||||
|
<div class="content-group mt16"> |
||||
|
<div role="alert" |
||||
|
class="alert alert-warning"> |
||||
|
Create a Custom Search Api |
||||
|
<a role="button" |
||||
|
href="https://developers.google.com/custom-search/v1/overview" |
||||
|
class="btn btn-link btn-success o_activity_link mr8"> |
||||
|
<i class="fa fa-arrow-right"/> |
||||
|
Click Here |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</setting> |
||||
|
</field> |
||||
|
</record> |
||||
|
</odoo> |