-
Notifications
You must be signed in to change notification settings - Fork 1
/
__manifest__.py
executable file
·60 lines (53 loc) · 1.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
{
'name': "T-jara",
'summary': """
Application de gestion commerciale.
""",
'description': """
Application de gestion commerciale.
""",
'author': "Khidma Company",
'website': "http://www.khidma.tn",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
# for the full list
'category': 'Sales',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base'],
# always loaded
'data': [
# 'security/ir.model.access.csv',
# 'views/views.xml',
# 'views/templates.xml',
'views/purchase_inquiry.xml',
'views/sequences.xml',
'views/product_package.xml',
'views/purchase_order.xml',
'views/product.xml',
'views/category.xml',
'views/sector.xml',
'views/provider.xml',
'views/client.xml',
'views/package.xml',
'views/stock.xml',
'views/depot.xml',
'views/provider_order.xml',
'views/voucher_entry.xml',
'views/movement.xml',
# 'views/purchase_invoice.xml',
# 'views/purchase_payment.xml',
# 'views/provider_regulation.xml',
'report/r_provider_order.xml',
'views/menu.xml',
# 'views/wizards.xml',
],
# only loaded in demonstration mode
'demo': [
# 'demo/demo.xml',
],
'installable': True,
'auto_install': False,
'application': True,
}