订单在magento中自动取消

时间:2016-02-09 06:32:58

标签: php magento magento-1.9 magento-1.8

我的网站有问题。我们的订单会自动取消。可能有时间设置在某个地方,但我无法找到。我检查cron模块,但我认为这不是这个问题的责任。

enter image description here

   $now = time();
        $timeAhead = $now + $scheduleAheadFor;
        $schedule->setJobCode($jobCode)
            ->setCronExpr($cronExpr)
            ->setStatus(Mage_Cron_Model_Schedule::STATUS_PENDING);

        for ($time = $now; $time < $timeAhead; $time += 60) {
            $ts = strftime('%Y-%m-%d %H:%M:00', $time);
            if (!empty($exists[$jobCode.'/'.$ts])) {
                // already scheduled
                continue;
            }
            if (!$schedule->trySchedule($time)) {
                // time does not match cron expression
                continue;
            }
            $schedule->unsScheduleId()->save();
        }

请告诉我在哪里更改时间或完全禁用此自动取消功能。

0 个答案:

没有答案