-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
41 lines (34 loc) · 1 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Query Tool',
'version': '12.0.0.1.1',
'category': 'Sale',
'summary': 'Query Tool',
'author': 'Roberto Zanardo',
'website': 'https://www.robertozanardo.com/',
'description': """
Direct Query Tool for Odoo
===========================
Useful to make db operations:Use at your own risk.
Add a Query function under technical settings, it allows to run query directly on current Odoo database.
It allows also to save some query and create unlimited query templates.
It supports also multiple query separated by ;
Example:
DELETE FROM fob_order;
DELETE FROM fob_po_order;
DELETE FROM account_invoice;
Use it at your own risk!
Roberto
www.robertozanardo.com
""",
'depends': ['base'],
'data': [
'data/data.xml',
'views/querytool.xml',
'security/ir.model.access.csv',
],
'installable': True,
'auto_install': False,
"application": False,
}