mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
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.
30 lines
753 B
Python
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,
|
|
}
|