history fix; v1.0.01
This commit is contained in:
parent
274fd7a9a4
commit
6f70fcaac7
@ -282,6 +282,8 @@ class ICrmOrderActions
|
||||
public static function orderHistory() {
|
||||
global $USER;
|
||||
|
||||
$GLOBALS['INTARO_CRM_FROM_HISTORY'] = true;
|
||||
|
||||
if(isset($_SESSION["SESS_AUTH"]["USER_ID"]) && $_SESSION["SESS_AUTH"]["USER_ID"]) {
|
||||
$realUser = $USER->GetID();
|
||||
$USER->Logout();
|
||||
@ -368,9 +370,9 @@ class ICrmOrderActions
|
||||
$dateStart = $dateStart->format('Y-m-d H:i:s');
|
||||
}
|
||||
|
||||
$orderHistory = $api->orderHistory($dateStart);
|
||||
$dateFinish = new \DateTime();
|
||||
|
||||
$dateStart = new \DateTime($dateStart);
|
||||
$orderHistory = $api->orderHistory($dateStart);
|
||||
|
||||
// pushing existing orders
|
||||
foreach ($orderHistory as $order) {
|
||||
@ -847,8 +849,6 @@ class ICrmOrderActions
|
||||
'COMMENTS' => $order['managerComment']
|
||||
));
|
||||
|
||||
$GLOBALS['INTARO_CRM_FROM_HISTORY'] = true;
|
||||
|
||||
CSaleOrder::Update($order['externalId'], $arFields);
|
||||
|
||||
// set STATUS_ID
|
||||
@ -866,13 +866,11 @@ class ICrmOrderActions
|
||||
// set PAYED
|
||||
if($optionsPayment[$order['paymentStatus']])
|
||||
CSaleOrder::PayOrder($order['externalId'], $optionsPayment[$order['paymentStatus']]);
|
||||
|
||||
$dateStart = new \DateTime();
|
||||
}
|
||||
}
|
||||
|
||||
if(count($orderHistory))
|
||||
COption::SetOptionString(self::$MODULE_ID, self::$CRM_ORDER_HISTORY_DATE, $dateStart->format('Y-m-d H:i:s'));
|
||||
COption::SetOptionString(self::$MODULE_ID, self::$CRM_ORDER_HISTORY_DATE, $dateFinish->format('Y-m-d H:i:s'));
|
||||
|
||||
$USER->Logout();
|
||||
if($realUser) $USER->Authorize($realUser);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?
|
||||
$arModuleVersion = array(
|
||||
"VERSION" => "0.5.3",
|
||||
"VERSION_DATE" => "2014-01-28 12:55:00",
|
||||
"VERSION" => "1.0.1",
|
||||
"VERSION_DATE" => "2014-03-13 11:57:00",
|
||||
);
|
Loading…
Reference in New Issue
Block a user