assign('breadcrumb1','积分管理');
$this->assign('breadcrumb2','打卡记录');
}
/**
* 列表页
*
* */
public function index(Model $Model,Custom $Custom,CustomScore $CustomScore,WeiBanFollow $WeiBanFollow,City $City){
// 接受参数
$code = request('custom_code','');
$phone = request('phone','');
$username = request('username','');
$activeName = request('active_name','');
$cityId = request('city_id',0);
$status = request('status');
$startTime = request('start_time','');
// 编码转ID
$uid = $Custom->codeToId($code);
// 查询条件
$map = [];
// 编码ID
if( $uid ) $map[] = ['custom.uid','=',$uid];
if( $phone ) $map[] = ['custom.phone','=',$phone];
if( $username ) $map[] = ['custom.username','=',$username];
if( $cityId ) $map[] = ['custom.city_id','=',$cityId];
if( $activeName ) $map[] = ['score_clockin_active.name','=',$activeName];
if( $startTime ) $map[] = ['custom_clockin_record.insert_time','>=',Carbon::createFromFormat('Y-m-d',$startTime)->startOfDay()->getTimestamp()];
if( $startTime ) $map[] = ['custom_clockin_record.nsert_time','<=',Carbon::createFromFormat('Y-m-d',$startTime)->endOfDay()->getTimestamp()];
if( !is_null($status) ) $map[] = ['custom_clockin_record.status','=',$status];
// 查询数据
$list = $Model->query()
->leftJoin('custom','custom.uid','=','custom_clockin_record.custom_uid')
->leftJoin('score_clockin_active','score_clockin_active.id','=','custom_clockin_record.active_id')
->where($map)
->select(['custom.*','score_clockin_active.name as active_name','custom_clockin_record.*'])
->orderByDesc('custom_clockin_record.id')
->paginate(config('page_num',10))
->appends(request()->all());
// 循环处理数据
foreach ($list as $key => $value) {
// 城市名
$value['city_name'] = $value['city_id'] ? $City->getOne($value['city_id'],'name') : '';
// id转编号
$value['custom_code'] = $Custom->idToCode($value['uid']);
// 如果不存在微伴ID
if( !$value['weiban_extid'] ) {
// 通过手机号查询注册的账号
$value['weiban_extid'] = (string) $WeiBanFollow->query()->where([['phone_number','=',$value['phone']]])->value('weiban_extid');
// 如果存在的话,修正
if( $value['weiban_extid'] ) $Model->edit($value['uid'],['weiban_extid'=>$value['weiban_extid']]);
}
// 重组
$list[$key] = $value;
}
// 获取列表
$cityList = $City->getCityList();
// 分配数据
$this->assign('cityList',$cityList);
// 分配数据
$this->assign('empty', '
~~暂无数据 |
');
$this->assign('list',$list);
// 加载模板
return $this->fetch();
}
/**
* 添加
*
* */
public function add(Request $request,Model $Model){
if( request()->isMethod('post') ){
// 验证参数
$request->scene('add')->validate();
// 接收数据
// 接收数据
$data['username'] = request('username','');
$data['phone'] = request('phone','');
// 写入数据表
$uid = $Model->add($data);
// 如果操作失败
if( !$uid ) return json_send(['code'=>'error','msg'=>'新增失败']);
// 记录行为
$this->addAdminHistory(admin('uid'),$Model->getTable(),$uid,1,[],$data);
// 告知结果
return json_send(['code'=>'success','msg'=>'新增成功','action'=>'add']);
}
// 分配数据
$this->assign('crumbs','新增');
// 加载模板
return $this->fetch();
}
/**
* 修改
*
* */
public function edit(Request $request,Model $Model,City $City){
// 接收参数
$uid = request('uid',0);
// 查询用户
$oldData = $Model->where(['uid'=>$uid])->first();
// 修改
if(request()->isMethod('post')){
// 验证参数
$request->scene('edit')->validate();
// 如果用户不存在
if( !$oldData ) return json_send(['code'=>'error','msg'=>'用户不存在']);
// 转数组
$oldData = $oldData->toArray();
// 接收数据
$data['username'] = request('username','');
$data['phone'] = request('phone','');
$data['city_id'] = request('city_id',0);
$data['weiban_extid'] = request('weiban_extid','');
// 写入数据表
$result = $Model->edit($uid,$data);
// 如果操作失败
if( !$result ) return json_send(['code'=>'error','msg'=>'新增失败']);
// 记录行为
$this->addAdminHistory(admin('uid'),$Model->getTable(),$uid,2,$oldData,$data);
// 告知结果
return json_send(['code'=>'success','msg'=>'修改成功','action'=>'edit']);
}
// 错误告知
if( !$oldData ) return $this->error('查无数据');
// 获取列表
$cityList = $City->getCityList();
// 分配数据
$this->assign('cityList',$cityList);
$this->assign('oldData',$oldData);
$this->assign('crumbs','修改');
// 加载模板
return $this->fetch();
}
/**
* 修改状态
*
* */
public function set_status(Request $request,Model $Model){
// 验证参数
$request->scene('set_status')->validate();
// 设置状态
$uid = request('uid',0);
$status = request('status',0);
// 查询用户
$oldData = $Model->where(['uid'=>$uid])->first();
// 如果用户不存在
if( !$oldData ) return json_send(['code'=>'error','msg'=>'用户不存在']);
// 执行修改
$result = $Model->edit($uid,['status'=>$status]);
// 提示新增失败
if( !$result ) return json_send(['code'=>'error','msg'=>'设置失败']);
// 记录行为
$this->addAdminHistory(admin('uid'),$Model->getTable(),$uid,2,$oldData,['status'=>$status]);
// 告知结果
return json_send(['code'=>'success','msg'=>'设置成功','path'=>'']);
}
/**
* 导出表格
*
* */
public function down_excel(Model $Model,Custom $Custom,CustomScore $CustomScore,WeiBanFollow $WeiBanFollow,City $City){
// 接受参数
$code = request('custom_code','');
$phone = request('phone','');
$username = request('username','');
$activeName = request('active_name','');
$cityId = request('city_id',0);
$status = request('status');
$startTime = request('start_time','');
// 编码转ID
$uid = $Custom->codeToId($code);
// 查询条件
$map = [];
// 编码ID
if( $uid ) $map[] = ['custom.uid','=',$uid];
if( $phone ) $map[] = ['custom.phone','=',$phone];
if( $username ) $map[] = ['custom.username','=',$username];
if( $cityId ) $map[] = ['custom.city_id','=',$cityId];
if( $activeName ) $map[] = ['score_clockin_active.name','=',$activeName];
if( $startTime ) $map[] = ['custom_clockin_record.insert_time','>=',Carbon::createFromFormat('Y-m-d',$startTime)->startOfDay()->getTimestamp()];
if( $startTime ) $map[] = ['custom_clockin_record.nsert_time','<=',Carbon::createFromFormat('Y-m-d',$startTime)->endOfDay()->getTimestamp()];
if( !is_null($status) ) $map[] = ['custom_clockin_record.status','=',$status];
// 查询数据
$list = $Model->query()
->leftJoin('custom','custom.uid','=','custom_clockin_record.custom_uid')
->leftJoin('score_clockin_active','score_clockin_active.id','=','custom_clockin_record.active_id')
->where($map)
->select(['custom.*','score_clockin_active.name as active_name','custom_clockin_record.*'])
->orderByDesc('custom_clockin_record.id')
->get()
->toArray();
// 循环处理数据
foreach ($list as $key => $value) {
// 城市名
$value['city_name'] = $value['city_id'] ? $City->getOne($value['city_id'],'name') : '';
// id转编号
$value['custom_code'] = $Custom->idToCode($value['uid']);
// 如果不存在微伴ID
if( !$value['weiban_extid'] ) {
// 通过手机号查询注册的账号
$value['weiban_extid'] = (string) $WeiBanFollow->query()->where([['phone_number','=',$value['phone']]])->value('weiban_extid');
// 如果存在的话,修正
if( $value['weiban_extid'] ) $Model->edit($value['uid'],['weiban_extid'=>$value['weiban_extid']]);
}
// 重组
$list[$key] = $value;
}
try {
// 去下载
$this->toDown($list);
} catch (\Throwable $th) {
echo $th->getMessage();
}
}
/**
* 去下载
*/
private function toDown($data){
// 创建新的电子表格对象
$spreadsheet = new Spreadsheet();
// 设置合并单元格的行和列,例如合并A1到B2的单元格
$sheet = $this->setStyle($spreadsheet);
// 从第二行写入
$row = 2;
// 循环写入
foreach ($data as $key => $value) {
// 单元格内容写入
$sheet->setCellValue('A'.$row, $value['id']);
$sheet->setCellValue('B'.$row, $value['custom_code']);
$sheet->setCellValue('C'.$row, $value['username']);
$sheet->setCellValue('D'.$row, $value['active_name']);
$sheet->setCellValue('E'.$row, $value['phone']);
$sheet->setCellValue('F'.$row, $value['weiban_extid']);
$sheet->setCellValue('G'.$row, $value['city_name']);
$sheet->setCellValue('H'.$row, date('Y-m-d H:i:s',$value['clockin_time']));
$sheet->setCellValue('I'.$row, $value['clockin_day']);
$row++;
}
//
// 创建内容
$writer = IOFactory::createWriter($spreadsheet, 'Xlsx');
header('Pragma: public');
header('Content-type:application/vnd.ms-excel');
header('Content-Disposition: inline;filename=下载打卡记录.xlsx');
// 输出数据流
return $writer->save('php://output');
}
/**
* 设置表格样式
*
*/
private function setStyle(Spreadsheet $spreadsheet){
// 选择当前活动的工作表
$sheet = $spreadsheet->getActiveSheet();
// 宽
$sheet->getColumnDimension('A')->setWidth(15);
$sheet->getColumnDimension('B')->setWidth(15);
$sheet->getColumnDimension('C')->setWidth(15);
$sheet->getColumnDimension('D')->setWidth(15);
$sheet->getColumnDimension('E')->setWidth(15);
$sheet->getColumnDimension('F')->setWidth(15);
$sheet->getColumnDimension('G')->setWidth(15);
$sheet->getColumnDimension('H')->setWidth(15);
$sheet->getColumnDimension('I')->setWidth(15);
$sheet->getColumnDimension('J')->setWidth(15);
// 默认高度
$sheet->getDefaultRowDimension()->setRowHeight(18);
// 加粗第一行
$sheet->getStyle('A:S')->getAlignment()->setHorizontal(Alignment::HORIZONTAL_CENTER)->setVertical(Alignment::VERTICAL_CENTER);
$sheet->getStyle('A1:S1')->getFont()->setBold(true);
$sheet->getStyle('A1:S1')->getFill()->setFillType(Fill::FILL_SOLID)->getStartColor()->setARGB('FF00FF00'); // ARGB颜色代码,例如绿色
// 设置表格标题
$sheet
->setCellValue('A1', '记录ID')
->setCellValue('B1', '客户编码')
->setCellValue('C1', '客户昵称')
->setCellValue('D1', '活动名称')
->setCellValue('E1', '联系方式')
->setCellValue('F1', '微伴ID')
->setCellValue('G1', '客户城市')
->setCellValue('H1', '打卡时间')
->setCellValue('I1', '连续打卡天数');
// 返回结果
return $sheet;
}
}