1
0
mirror of synced 2024-11-21 20:46:04 +03:00

fix run.php and ApiHelper.php

This commit is contained in:
gluschenko 2017-03-13 10:26:10 +03:00
parent 233071dd51
commit 1dccc60f9e
2 changed files with 5 additions and 3 deletions

View File

@ -98,8 +98,10 @@ class ApiHelper {
try {
$request = $this->crmClient->customersFixExternalIds(
array(
'id' => $customers['customers'][0]['id'],
'externalId' => $order['externalId']
array(
'id' => $customers['customers'][0]['id'],
'externalId' => $order['externalId']
)
)
);

View File

@ -25,7 +25,7 @@ if (file_exists(__DIR__ . "/logs/sync.log")) {
$config['date_from'] = file_get_contents(__DIR__ . "/logs/sync.log");
}
$apiHelper = new ApiHelper($сonfig);
$apiHelper = new ApiHelper($config);
if ($apiHelper->processXMLOrders()) {
unlink($lockFile);