mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-03 19:53:19 +03:00
* history additional functional * fixed orders upload when customers data is empty and delivery data is empty * orders update history * product offers * fix 5.3 compability * retailcrm api v4
13 lines
387 B
PHP
13 lines
387 B
PHP
<?php
|
|
$_SERVER['HTTPS'] = 1;
|
|
|
|
require(dirname(__FILE__) . '/../../../config/config.inc.php');
|
|
require(dirname(__FILE__) . '/../../../init.php');
|
|
require(dirname(__FILE__) . '/../bootstrap.php');
|
|
|
|
$job = new RetailcrmCatalog();
|
|
$data = $job->getData();
|
|
|
|
$icml = new RetailcrmIcml(Configuration::get('PS_SHOP_NAME'), _PS_ROOT_DIR_ . '/retailcrm.xml');
|
|
$icml->generate($data[0], $data[1]);
|