-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
54 lines (53 loc) · 1.58 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
# -*- coding: utf-8 -*-
{
'name' : 'InfoSaône - Module Odoo pour SMP Packaging',
'version' : '0.1',
'author' : u'InfoSaône',
'category' : u'InfoSaône',
'description': """
InfoSaône - Module Odoo pour SMP Packaging
===================================================
""",
'maintainer' : 'InfoSaône',
'website' : 'http://www.infosaone.com',
'depends' : [
'base',
'sale',
'purchase',
'stock',
'account',
'account_accountant',
'document',
],
'data' : [
'security/ir.model.access.csv',
'views/assets.xml',
'views/product_view.xml',
'views/purchase_view.xml',
'views/is_export_compta_view.xml',
'views/account_invoice_view.xml',
'views/partner_view.xml',
'views/stock_picking_views.xml',
'views/stock_move_views.xml',
'views/sale_view.xml',
'views/is_affaire_view.xml',
'views/account_view.xml',
'views/is_purchase_order_line.xml',
'views/is_account_invoice_line.xml',
'views/is_sous_ensemble_view.xml',
'views/is_previsionnel_tresorerie_view.xml',
'views/is_sale_order_line.xml',
'views/mail.xml',
'views/menu.xml',
'report/report_invoice.xml',
'report/report_deliveryslip.xml',
'report/purchase_quotation_templates.xml',
'report/purchase_order_templates.xml',
'report/sale_report_templates.xml',
'wizard/mail_compose_message_view.xml',
],
'installable': True,
'application': True,
'qweb': [
],
}