Files
suite/connector_opencart/__manifest__.py
Jared Kipe 6c45c0380c [FIX] connector_opencart: find orders by modified date instead of ID
Opencart will not always generate a new order id, and may update the date_added but not actually be ready for import.  To mitigate, we're now looking for orders modified after a set datetime.

Additionally, offer mechanisms to conver datetime to/from Opencart's timezone. This is used during the above import behavior, as well as the `date_order` field in Odoo.
2021-08-18 13:29:09 -07: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.3.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,
}