-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__manifest__.py
38 lines (35 loc) · 1.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
# -*- coding: utf-8 -*-
{
'name': "recu2",
'summary': """recu2""",
'description': """Odoo module to buy 2nd hand laptops:""",
'author': "recu2",
'website': "https://github.com/SalesianosZaragoza/recuperacion-odoo-jonfeddan.git",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
# for the full list
'category': 'Uncategorized',
'version': '1.0',
'application': True,
'sequence': -100,
# any module necessary for this one to work correctly
'depends': ['base'],
# always loaded
'data': [
'views/chat.xml',
'views/envio.xml',
'views/marca.xml',
'views/mensaje.xml',
'views/portatil.xml',
'views/post_venta.xml',
'views/producto.xml',
'views/usuario.xml',
'views/venta.xml',
'views/devoluciones.xml',
'views/menus.xml',
'views/periferico.xml',
'views/perifericos.xml',
'views/venta_periferico.xml',
'views/devolucionesPeriferico.xml',
],
}