305 lines
12 KiB
PHP
305 lines
12 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 勾股工作室
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.gougucms.com
|
|
*/
|
|
|
|
declare (strict_types = 1);
|
|
|
|
namespace app\home\controller;
|
|
|
|
use app\home\BaseController;
|
|
use app\home\model\Schedule as ScheduleList;
|
|
use app\home\validate\ScheduleCheck;
|
|
use think\exception\ValidateException;
|
|
use schedule\Schedule as ScheduleIndex;
|
|
use think\facade\Db;
|
|
use think\facade\View;
|
|
|
|
class Schedule extends BaseController
|
|
{
|
|
public function index()
|
|
{
|
|
if (request()->isAjax()) {
|
|
$param=get_params();
|
|
$uid=$this->uid;
|
|
if (!empty($param['uid'])) {
|
|
$uid = $param['uid'];
|
|
}
|
|
$where=[];
|
|
$where[]=['start_time','>=',strtotime($param['start'])];
|
|
$where[]=['end_time','<=',strtotime($param['end'])];
|
|
$where[] =['admin_id','=',$uid];
|
|
$where[] = ['status','=', 1];
|
|
$schedule = Db::name('Schedule')->where($where)->field('id,name,labor_time,start_time,end_time')->select()->toArray();
|
|
$events = [];
|
|
$countEvents=[];
|
|
foreach ($schedule as $k => $v) {
|
|
$v['backgroundColor']='#009688';
|
|
$v['borderColor']='#009688';
|
|
$v['title']='['.$v['labor_time'].'工时] '.$v['name'];
|
|
$v['start']=date('Y-m-d H:i', $v['start_time']);
|
|
$v['end']=date('Y-m-d H:i', $v['end_time']);
|
|
$temData=date('Y-m-d', $v['start_time']);
|
|
if(array_key_exists($temData, $countEvents)){
|
|
$countEvents[$temData]['times']+=$v['labor_time'];
|
|
}
|
|
else{
|
|
$countEvents[$temData]['times']=$v['labor_time'];
|
|
$countEvents[$temData]['start']=date('Y-m-d', $v['start_time']);
|
|
}
|
|
unset($v['name']);
|
|
unset($v['start_time']);
|
|
unset($v['end_time']);
|
|
$events[] = $v;
|
|
}
|
|
foreach ($countEvents as $kk => $vv) {
|
|
$vv['backgroundColor']='#FF5722';
|
|
$vv['borderColor']='#FF5722';
|
|
$vv['title']='【当天总工时:'.$vv['times'].'】';
|
|
$vv['end']=$vv['start'];
|
|
$vv['id']=0;
|
|
unset($vv['times']);
|
|
$events[] = $vv;
|
|
}
|
|
$input_arrays = $events;
|
|
$range_start = parseDateTime($param['start']);
|
|
$range_end = parseDateTime($param['end']);
|
|
$timeZone = null;
|
|
if (isset($_GET['timeZone'])) {
|
|
$timeZone = new DateTimeZone($_GET['timeZone']);
|
|
}
|
|
|
|
// Accumulate an output array of event data arrays.
|
|
$output_arrays = array();
|
|
foreach ($input_arrays as $array) {
|
|
// Convert the input array into a useful Event object
|
|
$event = new ScheduleIndex($array, $timeZone);
|
|
// If the event is in-bounds, add it to the output
|
|
if ($event->isWithinDayRange($range_start, $range_end)) {
|
|
$output_arrays[] = $event->toArray();
|
|
}
|
|
}
|
|
return json($output_arrays);
|
|
} else {
|
|
return view();
|
|
}
|
|
}
|
|
|
|
public function list()
|
|
{
|
|
if (request()->isAjax()) {
|
|
$param = get_params();
|
|
//按时间检索
|
|
$start_time = isset($param['start_time']) ? strtotime($param['start_time']) : 0;
|
|
$end_time = isset($param['end_time']) ? strtotime($param['end_time']) : 0;
|
|
$where=[];
|
|
if ($start_time > 0 && $end_time > 0) {
|
|
$where[]=['a.start_time','between', [$start_time,$end_time]];
|
|
}
|
|
if (!empty($param['keywords'])) {
|
|
$where[] = ['a.name','like', '%' . trim($param['keywords']) . '%'];
|
|
}
|
|
if (!empty($param['uid'])) {
|
|
$where[] =['a.admin_id','=',$param['uid']];
|
|
}
|
|
else{
|
|
$where[] =['a.admin_id','=',$this->uid];
|
|
}
|
|
$where[] = ['a.status','=', 1];
|
|
$rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit'];
|
|
$schedule = ScheduleList::where($where)
|
|
->field('a.*,u.name as create_admin')
|
|
->alias('a')
|
|
->join('admin u', 'u.id = a.admin_id', 'LEFT')
|
|
->order('a.id desc')
|
|
->paginate($rows, false)
|
|
->each(function ($item, $key) {
|
|
$item->start_time = empty($item->start_time) ? '': date('Y-m-d H:i', $item->start_time);
|
|
//$item->end_time = empty($item->end_time) ? '': date('Y-m-d H:i', $item->end_time);
|
|
$item->end_time = empty($item->end_time) ? '': date('H:i', $item->end_time);
|
|
});
|
|
return table_assign(0, '', $schedule);
|
|
} else {
|
|
return view();
|
|
}
|
|
}
|
|
|
|
//保存日志数据
|
|
public function save()
|
|
{
|
|
$param = get_params();
|
|
$admin_id=$this->uid;
|
|
if($param['id']==0){
|
|
if(isset($param['start_time'])){
|
|
$param['start_time'] = strtotime($param['start_time'].''.$param['start_time_1']);
|
|
}
|
|
if(isset($param['end_time'])){
|
|
$param['end_time'] = strtotime($param['end_time'].''.$param['end_time_1']);
|
|
}
|
|
if( $param['end_time'] <= $param['start_time']){
|
|
return to_assign(1, "结束时间需要大于开始时间");
|
|
}
|
|
$where1[]=['status','=',1];
|
|
$where1[]=['admin_id','=',$admin_id];
|
|
$where1[]=['start_time','between', [$param['start_time'],$param['end_time']-1]];
|
|
|
|
$where2[]=['status','=',1];
|
|
$where2[]=['admin_id','=',$admin_id];
|
|
$where2[]=['start_time','<=',$param['start_time']];
|
|
$where2[]=['start_time','>=',$param['end_time']];
|
|
|
|
$where3[]=['status','=',1];
|
|
$where3[]=['admin_id','=',$admin_id];
|
|
$where3[]=['end_time','between', [$param['start_time']+1,$param['end_time']]];
|
|
|
|
$record = Db::name('Schedule')
|
|
->where(function ($query) use ($where1) {
|
|
$query->where($where1);
|
|
})
|
|
->whereOr(function ($query) use ($where2) {
|
|
$query->where($where2);
|
|
})
|
|
->whereOr(function ($query) use ($where3) {
|
|
$query->where($where3);
|
|
})
|
|
->count();
|
|
if($record>0){
|
|
return to_assign(1, "您所选的时间区间已有工作记录,请重新选时间");
|
|
}
|
|
$param['labor_time'] = ($param['end_time'] - $param['start_time']) / 3600;
|
|
$param['admin_id'] = $admin_id;
|
|
$param['did'] = get_admin($admin_id)['did'];
|
|
$param['create_time']=time();
|
|
$addid = Db::name('Schedule')->strict(false)->field(true)->insertGetId($param);
|
|
if($addid>0){
|
|
add_log('add', $addid, $param);
|
|
return to_assign(0,'操作成功');
|
|
}else{
|
|
return to_assign(0,'操作失败');
|
|
}
|
|
}else{
|
|
$param['update_time'] = time();
|
|
$res = Db::name('Schedule')->strict(false)->field(true)->update($param);
|
|
if ($res!==false) {
|
|
add_log('edit', $addid, $param);
|
|
return to_assign(0,'操作成功');
|
|
}else{
|
|
return to_assign(0,'操作失败');
|
|
}
|
|
}
|
|
}
|
|
|
|
//更改工时
|
|
public function update_labor_time()
|
|
{
|
|
$param = get_params();
|
|
if(isset($param['start_time'])){
|
|
$param['start_time'] = strtotime($param['start_time'].''.$param['start_time_1']);
|
|
}
|
|
if(isset($param['end_time'])){
|
|
$param['end_time'] = strtotime($param['end_time'].''.$param['end_time_1']);
|
|
}
|
|
if( $param['end_time'] <= $param['start_time']){
|
|
return to_assign(1, "结束时间需要大于开始时间");
|
|
}
|
|
$where1[]=['status','=',1];
|
|
$where1[]=['id','<>',$param['id']];
|
|
$where1[]=['admin_id','=',$param['admin_id']];
|
|
$where1[]=['start_time','between', [$param['start_time'],$param['end_time']-1]];
|
|
|
|
$where2[]=['status','=',1];
|
|
$where2[]=['id','<>',$param['id']];
|
|
$where2[]=['admin_id','=',$param['admin_id']];
|
|
$where2[]=['start_time','<=',$param['start_time']];
|
|
$where2[]=['start_time','>=',$param['end_time']];
|
|
|
|
$where3[]=['status','=',1];
|
|
$where3[]=['id','<>',$param['id']];
|
|
$where3[]=['admin_id','=',$param['admin_id']];
|
|
$where3[]=['end_time','between', [$param['start_time']+1,$param['end_time']]];
|
|
|
|
$record = Db::name('Schedule')
|
|
->where(function ($query) use ($where1) {
|
|
$query->where($where1);
|
|
})
|
|
->whereOr(function ($query) use ($where2) {
|
|
$query->where($where2);
|
|
})
|
|
->whereOr(function ($query) use ($where3) {
|
|
$query->where($where3);
|
|
})
|
|
->count();
|
|
if($record>0){
|
|
return to_assign(1, "您所选的时间区间已有工作记录,请重新选时间");
|
|
}
|
|
$param['labor_time'] = ($param['end_time'] - $param['start_time']) / 3600;
|
|
$res = Db::name('Schedule')->strict(false)->field(true)->update($param);
|
|
if ($res!==false) {
|
|
return to_assign(0, "操作成功");
|
|
add_log('edit', $param['id'], $param);
|
|
} else {
|
|
return to_assign(1, "操作失败");
|
|
}
|
|
}
|
|
|
|
//删除工作记录
|
|
public function delete()
|
|
{
|
|
$id = get_params("id");
|
|
$data['status'] = '-1';
|
|
$data['id'] = $id;
|
|
$data['update_time'] = time();
|
|
if (Db::name('schedule')->update($data) !== false) {
|
|
add_log('delete', $data['id'], $data);
|
|
return to_assign(0, "删除成功");
|
|
} else {
|
|
return to_assign(1, "删除失败");
|
|
}
|
|
}
|
|
|
|
public function detail($id)
|
|
{
|
|
$id=get_params('id');
|
|
$schedule = Db::name('Schedule')->where(['id'=>$id])->find();
|
|
if (!empty($schedule)) {
|
|
$schedule['start_time_1'] = date('H:i', $schedule['start_time']);
|
|
$schedule['end_time_1'] = date('H:i', $schedule['end_time']);
|
|
$schedule['start_time'] = date('Y-m-d', $schedule['start_time']);
|
|
$schedule['end_time'] = date('Y-m-d', $schedule['end_time']);
|
|
$schedule['create_time'] = date('Y-m-d H:i:s', $schedule['create_time']);
|
|
$schedule['user'] = Db::name('Admin')->where(['id'=>$schedule['admin_id']])->value('name');
|
|
}
|
|
if (request()->isAjax()) {
|
|
return to_assign(0, "", $schedule);
|
|
}
|
|
else{
|
|
return $schedule;
|
|
}
|
|
}
|
|
|
|
//读取日程弹层详情
|
|
public function view()
|
|
{
|
|
$id=get_params('id');
|
|
$schedule=$this->detail($id);
|
|
if($schedule){
|
|
View::assign('schedule', $schedule);
|
|
return view();
|
|
}
|
|
else{
|
|
echo '该工作记录不存在';
|
|
}
|
|
}
|
|
|
|
//个人年度工作情况
|
|
public function user()
|
|
{
|
|
$this_year = date("Y");
|
|
$admin_did = \think\Session::get('vae_admin');
|
|
return view('', ['this_year' => $this_year, 'this_uid' => $admin_did['id'],'username'=>$admin_did['nickname']]);
|
|
}
|
|
|
|
}
|