1
0
mirror of synced 2025-02-11 17:59:26 +03:00

fix catalog formation (#25)

This commit is contained in:
Sergey 2017-09-04 11:41:12 +03:00 committed by Alex Lushpai
parent 7bb2b4101f
commit e9e405781d

View File

@ -281,11 +281,13 @@ class MoySkladICMLParser
} else { } else {
$url = ''; $url = '';
} }
if ($url != '') { if (!empty($this->options['imgur'])) {
$image = $this->requestImage($url); if ($url != '') {
$image = $this->requestImage($url);
}
} }
$products[$assortiment['id']] = array( $products[$assortiment['id']] = array(
'id' => !empty($assortiment['product']['externalCode']) ? 'id' => !empty($assortiment['product']['externalCode']) ?
($assortiment['product']['externalCode'] . '#' . $assortiment['externalCode']) : ($assortiment['product']['externalCode'] . '#' . $assortiment['externalCode']) :
@ -559,6 +561,7 @@ class MoySkladICMLParser
curl_setopt($curlHandler, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curlHandler, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curlHandler, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($curlHandler, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curlHandler, CURLOPT_RETURNTRANSFER, true); curl_setopt($curlHandler, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curlHandler, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curlHandler, CURLOPT_TIMEOUT, self::TIMEOUT); curl_setopt($curlHandler, CURLOPT_TIMEOUT, self::TIMEOUT);
curl_setopt($curlHandler, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($curlHandler, CURLOPT_CONNECTTIMEOUT, 60);
curl_setopt($curlHandler, CURLOPT_HTTPHEADER, array( curl_setopt($curlHandler, CURLOPT_HTTPHEADER, array(