闫增涛
2025-04-14 4a0006c0b8df5befabf7403c0702f4429cf244e3
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
118
<?php
/**
+-----------------------------------------------------------------------------------------------
* GouGuOPEN [ 左手研发,右手开源,未来可期!]
+-----------------------------------------------------------------------------------------------
* @Copyright (c) 2021~2024 http://www.gouguoa.com All rights reserved.
+-----------------------------------------------------------------------------------------------
* @Licensed 勾股OA,开源且可免费使用,但并不是自由软件,未经授权许可不能去除勾股OA的相关版权信息
+-----------------------------------------------------------------------------------------------
* @Author 勾股工作室 <hdm58@qq.com>
+-----------------------------------------------------------------------------------------------
*/
namespace app\home\model;
use think\model;
use think\facade\Db;
class Outs extends Model
{
    /**
    * 获取分页列表
    * @param $where
    * @param $param
    */
    public function datalist($where, $param)
    {
        $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit'];
        $order = empty($param['order']) ? 'id desc' : $param['order'];
        try {
            $list = self::where($where)
            ->order($order)
            ->paginate(['list_rows'=> $rows])
            ->each(function ($item, $key){
                //$item->admin_name = Db::name('Admin')->where('id',$item->admin_id)->value('name');
            });
            return $list;
        } catch(\Exception $e) {
            return ['code' => 1, 'data' => [], 'msg' => $e->getMessage()];
        }
    }
 
    /**
    * 添加数据
    * @param $param
    */
    public function add($param)
    {
        $insertId = 0;
        try {
            $param['create_time'] = time();
            $insertId = self::strict(false)->field(true)->insertGetId($param);
            add_log('add', $insertId, $param,'外出申请');
        } catch(\Exception $e) {
            return to_assign(1, '操作失败,原因:'.$e->getMessage());
        }
        return to_assign(0,'操作成功',['return_id'=>$insertId]);
    }
 
    /**
    * 编辑信息
    * @param $param
    */
    public function edit($param)
    {
        try {
            $param['update_time'] = time();
            self::where('id', $param['id'])->strict(false)->field(true)->update($param);
            add_log('edit', $param['id'], $param,'外出申请');
        } catch(\Exception $e) {
            return to_assign(1, '操作失败,原因:'.$e->getMessage());
        }
        return to_assign(0,'操作成功',['return_id'=>$param['id']]);
    }
    
    /**
    * 根据id获取信息
    * @param $id
    */
    public function getById($id)
    {
        $info = self::find($id);
        $info['start_date'] = date('Y-m-d H:i',$info['start_date']);
        $info['end_date'] = date('Y-m-d H:i',$info['end_date']);
        if(!empty($info['file_ids'])){
            $file_array = Db::name('File')->where('id','in',$info['file_ids'])->select();
            $info['file_array'] = $file_array;
        }
        return $info;
    }
 
    /**
    * 删除信息
    * @param $id
    * @param $type
    * @return array
    */
    public function delById($id,$type=0)
    {
        if($type==0){
            //逻辑删除
            try {
                $param['delete_time'] = time();
                self::where('id', $id)->update(['delete_time'=>time()]);
                add_log('delete', $id);
            } catch(\Exception $e) {
                return to_assign(1, '操作失败,原因:'.$e->getMessage());
            }
        }
        else{
            //物理删除
            try {
                self::destroy($id);
                add_log('delete', $id);
            } catch(\Exception $e) {
                return to_assign(1, '操作失败,原因:'.$e->getMessage());
            }
        }
        return to_assign();
    }
}