You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
3.7 KiB
172 lines
3.7 KiB
<?php
|
|
namespace app\massage\model;
|
|
|
|
use app\BaseModel;
|
|
use think\facade\Db;
|
|
|
|
class ActionLog extends BaseModel
|
|
{
|
|
//定义表名
|
|
protected $name = 'massage_action_log';
|
|
|
|
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2020-09-29 11:04
|
|
* @功能说明:添加
|
|
*/
|
|
public function dataAdd($data){
|
|
|
|
$data['create_time'] = time();
|
|
|
|
$res = $this->insert($data);
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2020-09-29 11:05
|
|
* @功能说明:编辑
|
|
*/
|
|
public function dataUpdate($dis,$data){
|
|
|
|
$res = $this->where($dis)->update($data);
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2020-09-29 11:06
|
|
* @功能说明:列表
|
|
*/
|
|
public function dataList($dis,$page){
|
|
|
|
$data = $this->where($dis)->order('status desc,id desc')->paginate($page)->toArray();
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2020-09-29 11:43
|
|
* @功能说明:
|
|
*/
|
|
public function dataInfo($dis){
|
|
|
|
$data = $this->where($dis)->find();
|
|
|
|
return !empty($data)?$data->toArray():[];
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2021-03-19 16:08
|
|
* @功能说明:开启默认
|
|
*/
|
|
public function updateOne($id){
|
|
|
|
$user_id = $this->where(['id'=>$id])->value('user_id');
|
|
|
|
$res = $this->where(['user_id'=>$user_id])->where('id','<>',$id)->update(['status'=>0]);
|
|
|
|
return $res;
|
|
}
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2023-03-20 18:48
|
|
* @功能说明:
|
|
*/
|
|
public function logList($dis,$limit=10){
|
|
|
|
$datas = $this->alias('a')
|
|
->join('shequshop_school_admin b','a.user_id = b.id','left')
|
|
->where($dis)
|
|
->field('a.*,b.agent_name as user_name')
|
|
->group('a.id')
|
|
->order('id desc')
|
|
->paginate($limit)
|
|
->toArray();
|
|
|
|
$dataPath = APP_PATH . 'massage/info/LogSetting.php';
|
|
|
|
$actionPath = APP_PATH . 'massage/info/LogAction.php';
|
|
|
|
$log = include $dataPath ;
|
|
|
|
$action = include $actionPath;
|
|
|
|
$coach_name = getConfigSetting(666,'attendant_name');
|
|
|
|
if(!empty($datas['data'])){
|
|
|
|
foreach ($datas['data'] as &$v){
|
|
|
|
$v['create_time'] = date('Y-m-d H:i:s',$v['create_time']);
|
|
|
|
$vs = $log[$v['model']];
|
|
|
|
foreach ($vs as $value){
|
|
|
|
if($v['method']==$value['method']&&$v['action_type']==$value['action_type']&&$v['code_action']==$value['code_action']){
|
|
|
|
$action_data = $action[$v['action']];
|
|
|
|
$boj_unit = $boj_name = '';
|
|
|
|
if(isset($value['title'])){
|
|
|
|
$boj_name = Db::name($value['table'])->where(['id'=>$v['obj_id']])->find();
|
|
|
|
$boj_name = isset($boj_name[$value['title']])?$boj_name[$value['title']]:'';
|
|
|
|
if(in_array($value['title'],['code','order_code'])){
|
|
|
|
$boj_unit = '单号:';
|
|
|
|
}elseif (in_array($value['title'],['id'])){
|
|
|
|
$boj_unit = 'ID:';
|
|
|
|
}else{
|
|
|
|
$boj_unit = $value['text'].':';
|
|
}
|
|
}
|
|
|
|
$boj_unit = !empty($boj_unit)?'-'.$boj_unit:'';
|
|
|
|
$v['text'] = '操作'.$value['name'].'-'.$action_data.$boj_unit.$boj_name;
|
|
|
|
$v['text'] = str_replace('技师',$coach_name,$v['text']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $datas;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} |