diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/base_import/__manifest__.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/base_import/__manifest__.py')
| -rw-r--r-- | addons/base_import/__manifest__.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/addons/base_import/__manifest__.py b/addons/base_import/__manifest__.py new file mode 100644 index 00000000..e172a61e --- /dev/null +++ b/addons/base_import/__manifest__.py @@ -0,0 +1,34 @@ +{ + 'name': 'Base import', + 'description': """ +New extensible file import for Odoo +====================================== + +Re-implement Odoo's file import system: + +* Server side, the previous system forces most of the logic into the + client which duplicates the effort (between clients), makes the + import system much harder to use without a client (direct RPC or + other forms of automation) and makes knowledge about the + import/export system much harder to gather as it is spread over + 3+ different projects. + +* In a more extensible manner, so users and partners can build their + own front-end to import from other file formats (e.g. OpenDocument + files) which may be simpler to handle in their work flow or from + their data production sources. + +* In a module, so that administrators and users of Odoo who do not + need or want an online import can avoid it being available to users. +""", + 'depends': ['web'], + 'category': 'Hidden/Tools', + 'installable': True, + 'auto_install': True, + 'data': [ + 'security/ir.model.access.csv', + 'views/base_import_templates.xml', + ], + 'qweb': ['static/src/xml/base_import.xml'], + 'license': 'LGPL-3', +} |
