Files
suite/connector_opencart/__manifest__.py
Jared Kipe cfaa06d2ca IMP connector_opencart Add field opencart_sku on product.template to let you pre-make products and link them up.
Improved partner matching and added some logging for the testing phase.
Added menu item Connectors->Opencart-Products to find and fix mapping easily.
Allow deleting `product.template` even with bindings so that you could re-make the binding.
2020-03-06 11:20:27 -08:00

30 lines
753 B
Python

# © 2019 Hibou Corp.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Opencart Connector',
'version': '12.0.1.0.0',
'category': 'Connector',
'depends': [
'account',
'product',
'delivery',
'sale_stock',
'connector_ecommerce',
'base_technical_user',
],
'author': 'Hibou Corp.',
'license': 'AGPL-3',
'website': 'https://hibou.io',
'data': [
'data/connector_opencart_data.xml',
'security/ir.model.access.csv',
'views/delivery_views.xml',
'views/opencart_backend_views.xml',
'views/opencart_product_views.xml',
'views/product_views.xml',
],
'installable': True,
'application': False,
}