Initial commit of connector_walmart for Odoo 11.0 (using beta version of connector_ecommerce)

This commit is contained in:
Jared Kipe
2018-07-07 12:43:35 -07:00
parent b7096b5187
commit cfd25c425b
34 changed files with 2518 additions and 2 deletions

View File

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