1
0
mirror of synced 2024-11-25 06:26:04 +03:00
This commit is contained in:
dkorol 2016-05-30 12:52:04 +03:00
parent 8cfd2e0777
commit 8b5b1a0155

View File

@ -24,10 +24,13 @@ if (file_exists($lockFile)) {
file_put_contents($lockFile, strtotime('+5 minutes')); file_put_contents($lockFile, strtotime('+5 minutes'));
if (file_exists(__DIR__ . "/logs/sync.log")) { if (file_exists(__DIR__ . "/logs/sync.log")) {
$config['date_from'] = file_get_contents(__DIR__ . "/logs/sync.log"); $lastSyncTime = file_get_contents(__DIR__ . "/logs/sync.log");
$lastSyncTime = new DateTime($lastSyncTime);
$lastSyncTime->sub(new DateInterval('PT1M'));
$config['date_from'] = $lastSyncTime->format('Y-m-d H:i:s');
} }
$apiHelper = new ApiHelper($сonfig); $apiHelper = new ApiHelper($config);
if ($apiHelper->processXMLOrders()) { if ($apiHelper->processXMLOrders()) {
unlink($lockFile); unlink($lockFile);