-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__manifest__.py
26 lines (26 loc) · 869 Bytes
/
__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
{
'name': 'Import Shopee To Sale Order',
'version': '18.0',
'category': 'Sales',
'summary': 'Import and export CSV for sale module with extended fields',
'description': """
This module allows to import and export CSV files for the sale module with extended fields.
It handles existing data and creates new records only when necessary.
""",
'author': 'Laksamana Morison',
'website': 'https://stevencodelab.github.io/',
'depends': ['sale'],
'data': [
'security/ir.model.access.csv',
'views/sale_import_views.xml',
'views/inherit_sale_order.xml',
'wizard/sale_import_wizard.xml',
'wizard/sale_export_wizard.xml',
],
'external_dependencies': {
'python': ['xlrd', 'openpyxl'],
},
'installable': True,
'application': True,
'auto_install': False,
}