LogController.php
2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
namespace App\Http\Controllers;
use App\Http\Controllers\Filter\LogFilter;
use App\Http\Controllers\Filter\SupplierLogFilter;
use App\Http\Services\LogService;
use App\Model\ApplyExamineUserModel;
use App\Model\ApplyModel;
use App\Model\DingTalk;
use App\Model\LogModel;
use App\Model\SupplierLogModel;
use App\Model\UserInfoModel;
use Common\Model\RedisModel;
use Illuminate\Http\Request;
use DB;
class LogController extends Controller
{
public function Entrance(Request $request, $id = 'index')
{
if ($request->path() == '/') {
$path = 'web/index';
} else {
$path = $request->path();
}
$this->data = [
'menus' => $request->menus,
'header' => $request->user->header,
'username' => $request->user->email,
'user_email' => $request->user->email,
'uri' => '/' . $path,
'id' => $id
];
return $this->$id($request);
}
public function __call($method, $parameters)
{
return $this->errhtml('Not', '没有这个页面');
}
public function SupplierLog($request)
{
$supplierId = $request->get('supplier_id', 1);
$logService = new LogService();
$logs = $logService->getLogs($supplierId);
$updateLogs = $logService->getLogs($supplierId, LogModel::UPDATE_OPERATE);
$viewLogs = $logService->getLogs($supplierId, LogModel::VIEW_OPERATE);
$supplierLogFilter = new SupplierLogFilter();
$query = $supplierLogFilter->listFilter(new SupplierLogModel());
$supplierLogs = $query->where('supplier_id', $supplierId)->get();
foreach ($supplierLogs as &$supplierLog) {
$supplierLog['desc'] = array_get(config('fixed.SupplierLogType'), $supplierLog['type']) . ' : ' . $supplierLog['desc'];
$supplierLog['add_time'] = date('Y-m-d H:i:s', $supplierLog['add_time']);
}
unset($supplierLog);
$this->data['logs'] = $logs;
$this->data['supplierId'] = $supplierId;
$this->data['updateLogs'] = $updateLogs;
$this->data['viewLogs'] = $viewLogs;
$this->data['supplierLogs'] = $supplierLogs;
return $this->view('供应商日志');
}
}