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
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Purchase',
'version': '1.2',
'category': 'Inventory/Purchase',
'sequence': 35,
'summary': 'Purchase orders, tenders and agreements',
'description': "",
'website': 'https://www.odoo.com/page/purchase',
'depends': ['account'],
'data': [
'security/purchase_security.xml',
'security/ir.model.access.csv',
'data/digest_data.xml',
'views/assets.xml',
'views/account_move_views.xml',
'data/purchase_data.xml',
'data/ir_cron_data.xml',
'report/purchase_reports.xml',
'views/purchase_views.xml',
'views/res_config_settings_views.xml',
'views/product_views.xml',
'views/res_partner_views.xml',
'views/purchase_template.xml',
'report/purchase_bill_views.xml',
'report/purchase_report_views.xml',
'data/mail_template_data.xml',
'views/portal_templates.xml',
'report/purchase_order_templates.xml',
'report/purchase_quotation_templates.xml',
],
'qweb': [
"static/src/xml/purchase_dashboard.xml",
"static/src/xml/purchase_toaster_button.xml",
],
'demo': [
'data/purchase_demo.xml',
],
'installable': True,
'auto_install': False,
'application': True,
'license': 'LGPL-3',
}
|