|
@@ -9,7 +9,7 @@ class ordersendlistControl extends SystemControl
|
|
|
private $mTimeouts;
|
|
|
public function __construct()
|
|
|
{
|
|
|
- $this->mTimeouts = [3 => 180, 4 => 300, 5 => 600, 6 => 900, 7 => 7200, 8 => 5400, 9 => 9000, 10 => 10800, 11 => 12600, 12 => 14400];
|
|
|
+ $this->mTimeouts = [3 => 180, 4 => 300, 5 => 600, 6 => 900, 7 => 7200];
|
|
|
parent::__construct();
|
|
|
}
|
|
|
|
|
@@ -53,7 +53,7 @@ class ordersendlistControl extends SystemControl
|
|
|
$time_cond['vr_order.add_time'] = ['between', [$start_day, $cur_time]];
|
|
|
}
|
|
|
}
|
|
|
- elseif (in_array($timeout_type, [3, 4, 5, 6, 7, 8, 9, 10, 11, 12])) {
|
|
|
+ elseif (in_array($timeout_type, [3, 4, 5, 6, 7])) {
|
|
|
$time_out = $this->mTimeouts[$timeout_type];
|
|
|
$mchids = $mchid_filter($time_out);
|
|
|
|