~mikel-martin/openobject-addons/extra-5.0_esale_osc_enhancement

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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# -*- encoding: utf-8 -*-
##############################################################################
#
#    OpenERP, Open Source Management Solution
#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
#    $Id$
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
    'name': 'ETL system',
    'version': '1.0',
    'category': 'Generic Modules/Others',
    'description': """
	ETL system- Extract Transfer Load system
	    """,
    'author': 'Tiny',
    'website': 'http://openerp.com',
    'depends': ['base'],
    'init_xml': [
         'etl_connector/etl_connector_data.xml',
         'etl_component/control/control_data.xml',
         'etl_component/input/input_data.xml',
         'etl_component/output/output_data.xml',
         'etl_component/transform/transform_data.xml'
     ],
    'update_xml': [
         'etl_interface_sequence.xml',
         'etl_interface_view.xml',
         'etl_interface_workflow.xml',
        
         'etl_connector/etl_connector_view.xml',
         'etl_connector/localfile_view.xml',
         'etl_connector/openobject_connector_view.xml',
         'etl_connector/sql_connector_view.xml',
         'etl_connector/facebook_connector_view.xml',
         'etl_connector/sugarcrm_connector_view.xml',
         
         'etl_component/etl_component_view.xml',
         'etl_component/control/data_count_view.xml',
         'etl_component/control/sleep_view.xml',
         
         'etl_component/input/csv_in_view.xml',
         'etl_component/input/vcard_in_view.xml',
         'etl_component/input/facebook_in_view.xml',
         'etl_component/input/sql_in_view.xml',
         'etl_component/input/excel_in_view.xml',
         'etl_component/input/xml_in_view.xml',
         'etl_component/input/openobject_in_view.xml',
         'etl_component/input/xmlrpc_in_view.xml',
	     'etl_component/input/gmail_in_view.xml',
         'etl_component/input/sugarcrm_in_view.xml',
         
	     'etl_component/output/csv_out_view.xml',
         'etl_component/output/sql_out_view.xml',
         'etl_component/output/openobject_out_view.xml',
         'etl_component/output/excel_out_view.xml',
         'etl_component/output/xml_out_view.xml',
         'etl_component/output/vcard_out_view.xml',
         'etl_component/output/xmlrpc_out_view.xml',

         'etl_component/transform/data_filter_view.xml',
         'etl_component/transform/sort_view.xml',
         'etl_component/transform/map_view.xml',
         'etl_component/transform/logger_view.xml',
         'etl_component/transform/logger_bloc_view.xml',
         'etl_component/transform/merge_view.xml',
         'etl_component/transform/schema_validator_view.xml',
         'etl_component/transform/unique_view.xml',

         ],
     'demo_xml': ['etl_interface_demo.xml'],
    'installable': True,
    'active': False,
}