Initial WIP commit of connector_opencart for Odoo 12.0

This commit is contained in:
Jared Kipe
2019-05-19 11:41:56 -07:00
parent 0e9bfab0de
commit 27e5cf4f72
28 changed files with 1906 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# © 2019 Hibou Corp.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.addons.component.core import AbstractComponent
class OpencartImportMapper(AbstractComponent):
_name = 'opencart.import.mapper'
_inherit = ['base.opencart.connector', 'base.import.mapper']
_usage = 'import.mapper'
class OpencartExportMapper(AbstractComponent):
_name = 'opencart.export.mapper'
_inherit = ['base.opencart.connector', 'base.export.mapper']
_usage = 'export.mapper'