OpenCart integration plugin
Go to file
ellynoize c5916fc8f2
Fix constant (#268)
Co-authored-by: ellynoize <a.kolesnikov@retailcrm.ru>
2024-11-14 12:10:15 +03:00
.docker ref #90088 fix test 2023-06-05 17:18:10 +03:00
.github/workflows ref #92633 Display module version (#263) 2023-11-23 11:10:52 +03:00
doc ref #92633 Display module version (#263) 2023-11-23 11:10:52 +03:00
src/upload Fix constant (#268) 2024-11-14 12:10:15 +03:00
tests ref #90809 Changed the logic of customer subscriptions to promotional newsletters (#259) 2023-07-24 10:43:13 +03:00
.env-dist update CI matrix (#239) 2021-09-02 11:19:20 +03:00
.gitignore Fix bug with option name (#179) 2020-04-02 16:35:35 +03:00
CHANGELOG.md Fix constant (#268) 2024-11-14 12:10:15 +03:00
composer.json update CI matrix (#239) 2021-09-02 11:19:20 +03:00
docker-compose.yml Corporate clients support & ability to change customer 2020-08-07 12:39:59 +03:00
LICENSE Payment, discount & weight calculation improvements 2021-03-24 15:26:09 +03:00
Makefile Minor improvements 2022-04-01 13:14:34 +03:00
phpunit.xml.dist Corporate clients support & ability to change customer 2020-08-07 12:39:59 +03:00
README.md Update readme 2021-05-18 12:11:19 +03:00
VERSION Fix constant (#268) 2024-11-14 12:10:15 +03:00

Build Status Coverage GitHub release PHP version

Opencart module

This module allows to integrate CMS Opencart >= 2.3 with RetailCRM.

Previous versions:

v1.x

v2.x (2.0, 2.1, 2.2)

Features:

  • Export orders to RetailCRM & receive changes from RetailCRM.
  • Export product catalog to the ICML format.

Install

Note: /path/to/your/site is just a placeholder. You should replace it with the actual path to your site root in the examples below. The module won't work if you'll use those examples without changing the path placeholder.

Copy module files to the site root (replace /path/to/your/site with the actual path to your site):

unzip master.zip
cp -r opencart-module/src/* /path/to/your/site

Setup

  • Go to Admin -> Extensions -> Modules -> RetailCRM
  • Fill you API URL & API key
  • Specify directories matching

Migrating to 4.* from early modules versions

It's necessary to remove the /path/to/your/site/system/library/retailcrm before copying current module into your site.

Getting changes in orders

Add to cron (replace /path/to/your/site with the actual path to your site):

*/5 * * * * /usr/bin/php /path/to/your/site/system/library/retailcrm/cron/history.php >> /path/to/your/site/system/storage/logs/cronjob_history.log 2>&1

Setting product catalog export

Add to cron (replace /path/to/your/site with the actual path to your site):

* */4 * * * /usr/bin/php /path/to/your/site/system/library/retailcrm/cron/icml.php >> /path/to/your/site/system/storage/logs/cronjob_icml.log 2>&1

Your export file should be available by following url:

http://youropencartsite.com/retailcrm.xml

Replace youropencartsite.com with your site domain and http with your site scheme.

Export existing orders and customers

Run this command (replace /path/to/your/site with the actual path to your site):

/usr/bin/php /path/to/your/site/system/library/retailcrm/cron/export.php

You should run this command only once.