2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Google Drive™ integration',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author' : 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'version': '0.2',
|
|
|
|
'category': 'Extra Tools',
|
|
|
|
'installable': True,
|
|
|
|
'auto_install': False,
|
|
|
|
'data': [
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'data/google_drive_data.xml',
|
|
|
|
'views/google_drive_views.xml',
|
|
|
|
'views/google_drive_templates.xml',
|
|
|
|
'views/res_config_settings_views.xml',
|
|
|
|
],
|
|
|
|
'demo': [
|
|
|
|
'data/google_drive_demo.xml'
|
|
|
|
],
|
|
|
|
'depends': ['base_setup', 'google_account'],
|
|
|
|
'description': """
|
|
|
|
Integrate google document to Odoo record.
|
|
|
|
============================================
|
|
|
|
|
|
|
|
This module allows you to integrate google documents to any of your Odoo record quickly and easily using OAuth 2.0 for Installed Applications,
|
|
|
|
You can configure your google Authorization Code from Settings > Configuration > General Settings by clicking on "Generate Google Authorization Code"
|
|
|
|
"""
|
|
|
|
}
|