2014-04-30 03:51:52 +04:00
|
|
|
|
Prestashop module
|
|
|
|
|
=============
|
|
|
|
|
|
|
|
|
|
Prestashop module for interaction with [IntaroCRM](http://www.intarocrm.com) through [REST API](http://docs.intarocrm.ru/rest-api/).
|
|
|
|
|
|
|
|
|
|
Module allows:
|
|
|
|
|
|
|
|
|
|
* Send to IntaroCRM new orders
|
|
|
|
|
* Configure relations between dictionaries of IntaroCRM and Bitrix (statuses, payments, delivery types and etc)
|
|
|
|
|
* Generate [ICML](http://docs.intarocrm.ru/index.php?n=Пользователи.ФорматICML) (IntaroCRM Markup Language) for catalog loading by IntaroCRM
|
|
|
|
|
|
|
|
|
|
Installation
|
|
|
|
|
-------------
|
|
|
|
|
|
2014-04-30 03:53:29 +04:00
|
|
|
|
### 1. Manual installation
|
2014-04-30 03:51:52 +04:00
|
|
|
|
|
|
|
|
|
|
2014-04-30 03:55:37 +04:00
|
|
|
|
##### Clone module.
|
2014-04-30 03:51:52 +04:00
|
|
|
|
```
|
2014-04-30 03:53:50 +04:00
|
|
|
|
git clone git@github.com:/intarocrm/prestashop-module.git
|
2014-04-30 03:51:52 +04:00
|
|
|
|
```
|
|
|
|
|
|
2014-04-30 03:55:37 +04:00
|
|
|
|
##### Install Rest API Client.
|
2014-04-30 03:51:52 +04:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
cd prestashop-module
|
|
|
|
|
composer update
|
|
|
|
|
```
|
|
|
|
|
|
2014-04-30 03:55:37 +04:00
|
|
|
|
##### Create .zip file.
|
2014-04-30 03:51:52 +04:00
|
|
|
|
```
|
|
|
|
|
zip -r intarocrm.zip intarocrm
|
|
|
|
|
```
|
2014-04-30 03:54:17 +04:00
|
|
|
|
|
2014-04-30 03:55:37 +04:00
|
|
|
|
##### Install module via Admin interface.
|
|
|
|
|
|
2014-04-30 03:51:52 +04:00
|
|
|
|
|
2014-04-30 03:55:37 +04:00
|
|
|
|
Go to Admin -> Modules -> Add module. After that upload your .zip archive and activate module.
|