-
Notifications
You must be signed in to change notification settings - Fork 77
/
__openerp__.py
50 lines (47 loc) · 1.19 KB
/
__openerp__.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
# -*- encoding: utf-8 -*-
{
'name': 'Magento Integration',
'author': 'Openlabs Technologies & Consulting Pvt Ltd.',
'version': '2.0dev',
'depends': [
'base',
'sale',
'mrp',
'delivery',
],
'category': 'Specific Industry Applications',
'summary': 'Magento Integration',
'description': """
This module integrates OpenERP with magento.
============================================
This will import the following:
* Product categories
* Products
* Customers
* Addresses
* Orders
""",
'data': [
'wizard/test_connection.xml',
'wizard/import_websites.xml',
'wizard/import_catalog.xml',
'wizard/update_catalog.xml',
'wizard/import_orders.xml',
'wizard/export_orders.xml',
'wizard/import_carriers.xml',
'wizard/export_inventory.xml',
'wizard/export_tier_prices.xml',
'wizard/export_shipment_status.xml',
'wizard/export_catalog.xml',
'product.xml',
'magento.xml',
'sale.xml',
'account.xml',
'security/ir.model.access.csv',
],
'css': [],
'images': [],
'demo': [],
'installable': True,
'application': True,
}