|
...
|
...
|
@@ -15,6 +15,7 @@ use App\Models\Project\Project; |
|
|
|
use App\Services\ProjectServer;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
use App\Models\HomeCount\MonthCount AS MonthCountModel;
|
|
|
|
|
|
|
|
class MonthCount extends Command
|
|
|
|
{
|
|
...
|
...
|
@@ -102,7 +103,7 @@ class MonthCount extends Command |
|
|
|
->groupBy('month')->get()->toArray();
|
|
|
|
foreach ($list as $k=>$v){
|
|
|
|
$v = (array)$v;
|
|
|
|
$monthCountModel = new MonthCount();
|
|
|
|
$monthCountModel = new MonthCountModel();
|
|
|
|
$info = $monthCountModel->read(['month'=>$v['month'],'project_id'=>$project_id]);
|
|
|
|
// 获取当月开始时间
|
|
|
|
$start = date('Y-m-01', strtotime($v['month']));
|
...
|
...
|
|