~elbati/enapps-csv-import-tool/fix-get_related_id

« back to all changes in this revision

Viewing changes to ea_import_examples/__openerp__.py

  • Committer: Enapps Ltd.
  • Date: 2012-05-30 15:32:13 UTC
  • Revision ID: openerp@enapps.co.uk-20120530153213-92lw2i3u1v18vxz1
added examples module

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (C) 2011 Enapps LTD (<http://www.enapps.co.uk>).
 
5
#
 
6
#    This program is free software: you can redistribute it and/or modify
 
7
#    it under the terms of the GNU Affero General Public License as
 
8
#    published by the Free Software Foundation, either version 3 of the
 
9
#    License, or (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU Affero General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU Affero General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##############################################################################
 
20
 
 
21
{
 
22
    "name" : "ea_import - examples",
 
23
    "version" : "1.0",
 
24
    "depends" : ['base','ea_import','sale',],
 
25
    "author" : "Enapps Ltd.",
 
26
    "description": """
 
27
    Examples for partner import and sales order import
 
28
    """,
 
29
    "license": "AGPL-3",
 
30
    "category" : "Tools",
 
31
    'website': 'http://www.enapps.co.uk/',
 
32
    'init_xml': [
 
33
        ],
 
34
    'update_xml': [
 
35
        'data1.xml',
 
36
        'data/ea_import.template.csv',
 
37
        'data/ea_import.template.line.csv',
 
38
        'data/ea_import.chain.csv',
 
39
        'data/ea_import.chain.link.csv',
 
40
        'data2.xml',
 
41
        ],
 
42
    'demo_xml': [
 
43
        ],
 
44
    'installable': True,
 
45
    'active': False,
 
46
    'images': ['images/template_list.png','images/chain_form.png'],
 
47
}