Skip to content

Commit

Permalink
Merge ea4883f into 77c6ceb
Browse files Browse the repository at this point in the history
  • Loading branch information
simahawk committed Sep 4, 2018
2 parents 77c6ceb + ea4883f commit d6d21d6
Show file tree
Hide file tree
Showing 57 changed files with 4,141 additions and 0 deletions.
9 changes: 9 additions & 0 deletions connector_importer/README.rst
@@ -0,0 +1,9 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

==================
Connector importer
==================

TODO
3 changes: 3 additions & 0 deletions connector_importer/__init__.py
@@ -0,0 +1,3 @@
from . import models
from . import components
from . import controllers
30 changes: 30 additions & 0 deletions connector_importer/__manifest__.py
@@ -0,0 +1,30 @@
# Author: Simone Orsi
# Copyright 2018 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
'name': 'Connector Importer',
'summary': """This module takes care of import sessions.""",
'version': '11.0.1.0.0',
'depends': [
'connector',
'queue_job',
],
'author': 'Camptocamp, Odoo Community Association (OCA)',
'license': 'AGPL-3',
'category': 'Connector',
'website': 'https://github.com/OCA/connector-interfaces',
'data': [
'data/ir_cron.xml',
'security/security.xml',
'security/ir.model.access.csv',
'views/backend_views.xml',
'views/recordset_views.xml',
'views/source_views.xml',
'views/report_template.xml',
'views/docs_template.xml',
'views/source_config_template.xml',
'menuitems.xml',
],
'external_dependencies': {'python': ['chardet']},
}
5 changes: 5 additions & 0 deletions connector_importer/components/__init__.py
@@ -0,0 +1,5 @@
from . import base
from . import tracker
from . import odoorecord
from . import importer
from . import mapper
12 changes: 12 additions & 0 deletions connector_importer/components/base.py
@@ -0,0 +1,12 @@
# Author: Simone Orsi
# Copyright 2018 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from odoo.addons.component.core import AbstractComponent


class ImporterComponent(AbstractComponent):

_name = 'importer.base.component'
_inherit = 'base.connector'
_collection = 'import.backend'

0 comments on commit d6d21d6

Please sign in to comment.