创建版本
This commit is contained in:
@@ -0,0 +1,76 @@
|
||||
<?php namespace Gdoo\Workflow\Controllers;
|
||||
|
||||
use DB;
|
||||
use Auth;
|
||||
use Request;
|
||||
|
||||
use Gdoo\Index\Controllers\DefaultController;
|
||||
|
||||
use Gdoo\User\Models\User;
|
||||
|
||||
class WidgetController extends DefaultController
|
||||
{
|
||||
public $permission = ['index'];
|
||||
|
||||
public function indexAction()
|
||||
{
|
||||
if (Request::method() == 'POST') {
|
||||
$rows = [];
|
||||
$json['total'] = sizeof($rows);
|
||||
$json['data'] = $rows;
|
||||
return response()->json($json);
|
||||
}
|
||||
return $this->render();
|
||||
}
|
||||
|
||||
public function efficiencyAction()
|
||||
{
|
||||
if (Request::method() == 'POST') {
|
||||
$model = DB::table('work_process')->LeftJoin('work_process_data', 'work_process.id', '=', 'work_process_data.process_id')
|
||||
->LeftJoin('work', 'work.id', '=', 'work_process.work_id')
|
||||
->LeftJoin('user', 'user.id', '=', 'work_process_data.user_id')
|
||||
->where('work_process.end_time', 0)
|
||||
->where('work_process.state', 1)
|
||||
->where('work_process_data.flag', 1)
|
||||
->where('work.state', 1)
|
||||
->where('user.status', 1);
|
||||
|
||||
// 权限列表
|
||||
$users = User::authoriseAccess();
|
||||
if ($users) {
|
||||
$model->whereIn('work_process_data.user_id', $users);
|
||||
}
|
||||
|
||||
$res = $model->get(['work_process_data.*', 'user.name']);
|
||||
|
||||
$sets = [];
|
||||
foreach ($res as $row) {
|
||||
$time = time() - $row['add_time'];
|
||||
|
||||
// 大于三十天
|
||||
if ($time > 2592000) {
|
||||
$sets[$row['user_id']]['c'] ++;
|
||||
$sets[$row['user_id']]['count'] ++;
|
||||
// 大于三天
|
||||
} elseif ($time > 259200) {
|
||||
$sets[$row['user_id']]['b'] ++;
|
||||
$sets[$row['user_id']]['count'] ++;
|
||||
// 大于一天
|
||||
} elseif ($time > 86400) {
|
||||
//$sets[$row['user_id']]['a'] ++;
|
||||
}
|
||||
$sets[$row['user_id']]['user'] = $row['name'];
|
||||
}
|
||||
$rows = [];
|
||||
foreach ($sets as $set) {
|
||||
if($set['count']) {
|
||||
$rows[] = $set;
|
||||
}
|
||||
}
|
||||
$json['total'] = sizeof($rows);
|
||||
$json['data'] = $rows;
|
||||
return $this->json($rows, true);
|
||||
}
|
||||
return $this->render();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user