闫增涛
2025-04-14 729e47e5aa77d73914de4353e95f56350611f820
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/**
+-----------------------------------------------------------------------------------------------
* GouGuOPEN [ 左手研发,右手开源,未来可期!]
+-----------------------------------------------------------------------------------------------
* @Copyright (c) 2021~2024 http://www.gouguoa.com All rights reserved.
+-----------------------------------------------------------------------------------------------
* @Licensed 勾股OA,开源且可免费使用,但并不是自由软件,未经授权许可不能去除勾股OA的相关版权信息
+-----------------------------------------------------------------------------------------------
* @Author 勾股工作室 <hdm58@qq.com>
+-----------------------------------------------------------------------------------------------
*/
declare (strict_types = 1);
namespace app\oa\controller;
 
use app\api\BaseController;
use app\oa\model\Schedule;
use think\facade\Db;
use think\facade\View;
 
class Api extends BaseController
{
    //获取工作日志列表
    public function get_schedule()
    {
        $param = get_params();
        $project_id = isset($param['project_id']) ? $param['project_id'] : 0;
        $task_id = isset($param['task_id']) ? $param['task_id'] : 0;
        if ($project_id>0) {
            $task_ids = Db::name('ProjectTask')->where(['delete_time' => 0, 'project_id' => $project_id])->column('id');
            $where[] = ['a.tid', 'in', $task_ids];
        }
        if ($task_id>0) {
            $where[] = ['a.tid', '=', $task_id];
        }
        $where[] = ['a.delete_time', '=', 0];
        $model = new Schedule();
        $list = $model->datalist($param,$where);
        return table_assign(0, '', $list);
    }
    
    //调整工时
    public function update_schedule()
    {
        $param = get_params();
        $is_leader = isLeader($this->uid);
        $role_auth = isAuth($this->uid,'office_admin','conf_1');
        $hour_auth = valueAuth('office_admin','conf_2');
        $edit_role = false;        
        if($hour_auth==4 && $role_auth > 0){
            $edit_role = true;    
        }
        if($hour_auth==3 && $is_leader > 0){
            $edit_role = true;
        }
        if($hour_auth==2){
            $admin_id = Db::name('Schedule')->where('id',$param['id'])->value('admin_id');
            if($admin_id == $this->uid){
                $edit_role = true;
            }                
        }
        if($edit_role == false){
            return to_assign(1, "您无权限编辑");
        }
        
        if (isset($param['start_time_a'])) {
            $param['start_time'] = strtotime($param['start_time_a'] . '' . $param['start_time_b']);
        }
        if (isset($param['end_time_a'])) {
            $param['end_time'] = strtotime($param['end_time_a'] . '' . $param['end_time_b']);
        }
        if($param['start_time']>time()){
            return to_assign(1, "开始时间不能大于当前时间");        
        }
        if ($param['end_time'] <= $param['start_time']) {
            return to_assign(1, "结束时间需要大于开始时间");
        }
        $where1[] = ['delete_time', '=', 0];
        $where1[] = ['id', '<>', $param['id']];
        $where1[] = ['admin_id', '=', $param['admin_id']];
        $where1[] = ['start_time', 'between', [$param['start_time'], $param['end_time'] - 1]];
 
        $where2[] = ['delete_time', '=', 0];
        $where2[] = ['id', '<>', $param['id']];
        $where2[] = ['admin_id', '=', $param['admin_id']];
        $where2[] = ['start_time', '<=', $param['start_time']];
        $where2[] = ['start_time', '>=', $param['end_time']];
 
        $where3[] = ['delete_time', '=', 0];
        $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, "操作失败");
        }
    }
}