|
...
|
...
|
@@ -556,7 +556,7 @@ class InquiryForwardLogic extends BaseLogic |
|
|
|
|
|
|
|
//周统计
|
|
|
|
$last_week_day = date('Y-m-d', strtotime('-1 week'));
|
|
|
|
$week_manage_ids = ForwardCount::select('manage_id')->where('created_at', '>', $last_week_day . ' +1 day')->where('count', '>', 0)->orderBy('manage_id', 'asc')->distinct()->pluck('manage_id')->toArray();
|
|
|
|
$week_manage_ids = ForwardCount::select('manage_id')->where('created_at', '>', date('Y-m-d', strtotime($last_week_day . ' +1 day')))->where('count', '>', 0)->orderBy('manage_id', 'asc')->distinct()->pluck('manage_id')->toArray();
|
|
|
|
|
|
|
|
$data_week = [];
|
|
|
|
$data_week_total = [];
|
...
|
...
|
|