@@ -39,17 +39,18 @@
{block name="script"}
-{include file="common/layui" base="base" extend="['rightpage']" callback="init" /}
+{include file="../../base/view/common/layui" base="base" extend="['rightpage']" callback="init" /}
{/block}
diff --git a/app/home/view/article/view.html b/app/article/view/index/view.html
similarity index 93%
rename from app/home/view/article/view.html
rename to app/article/view/index/view.html
index 87a02a0..d51f4b0 100644
--- a/app/home/view/article/view.html
+++ b/app/article/view/index/view.html
@@ -1,4 +1,4 @@
-{extend name="common/base"/}
+{extend name="../../base/view/common/base" /}
{block name="style"}
@@ -19,7 +19,7 @@
{$detail.title} |
文章分类 |
- {volist name=":set_recursion(get_article_cate())" id="v"}
+ {volist name=":set_recursion(article_cate())" id="v"}
{eq name="$detail.article_cate_id" value="$v.id" }{$v.title}{/eq}
{/volist}
|
@@ -79,6 +79,6 @@ function init(layui) {
}
-{include file="common/layui" base='base' extend="[]" callback="init" /}
+{include file="../../base/view/common/layui" base='base' extend="[]" callback="init" /}
{/block}
\ No newline at end of file
diff --git a/app/base/BaseController.php b/app/base/BaseController.php
index a1e2514..09abd31 100644
--- a/app/base/BaseController.php
+++ b/app/base/BaseController.php
@@ -91,7 +91,7 @@ abstract class BaseController
if ($this->controller !== 'index' && $this->controller !== 'api') {
$reg_pwd = Db::name('Admin')->where(['id' => $this->uid])->value('reg_pwd');
if($reg_pwd!==''){
- redirect('/home/api/edit_password.html')->send();
+ redirect('/api/index/edit_password.html')->send();
exit;
}
if (!$this->checkAuth()) {
diff --git a/app/home/view/common/base.html b/app/base/view/common/base.html
similarity index 100%
rename from app/home/view/common/base.html
rename to app/base/view/common/base.html
diff --git a/app/home/view/common/layui.html b/app/base/view/common/layui.html
similarity index 85%
rename from app/home/view/common/layui.html
rename to app/base/view/common/layui.html
index 17b198f..8ca64e8 100644
--- a/app/home/view/common/layui.html
+++ b/app/base/view/common/layui.html
@@ -1,6 +1,6 @@
-{include file="common/layui" base='base' extend="[]" callback="init" /}
+{include file="../../base/view/common/layui" base='base' extend="[]" callback="init" /}
{/block}
\ No newline at end of file
diff --git a/app/common.php b/app/common.php
index 9aae46f..9bcd068 100644
--- a/app/common.php
+++ b/app/common.php
@@ -7,6 +7,49 @@
// 应用公共文件,内置主要的数据处理方法
use think\facade\Config;
use think\facade\Request;
+use think\facade\Cache;
+use think\facade\Db;
+
+//设置缓存
+function set_cache($key, $value, $date = 86400)
+{
+ Cache::set($key, $value, $date);
+}
+
+//读取缓存
+function get_cache($key)
+{
+ return Cache::get($key);
+}
+
+//清空缓存
+function clear_cache($key)
+{
+ Cache::clear($key);
+}
+
+//读取系统配置
+function get_system_config($name, $key = '')
+{
+ $config = [];
+ if (get_cache('system_config' . $name)) {
+ $config = get_cache('system_config' . $name);
+ } else {
+ $conf = Db::name('config')->where('name', $name)->find();
+ if ($conf['content']) {
+ $config = unserialize($conf['content']);
+ }
+ set_cache('system_config' . $name, $config);
+ }
+ if ($key == '') {
+ return $config;
+ } else {
+ if ($config[$key]) {
+ return $config[$key];
+ }
+ }
+}
+
//读取文件配置
function get_config($key)
@@ -67,6 +110,320 @@ function set_password($pwd, $salt)
{
return md5(md5($pwd . $salt) . $salt);
}
+
+//获取指定管理员的信息
+function get_admin($id)
+{
+ $admin = Db::name('Admin')
+ ->alias('a')
+ ->field('a.*,d.title as department,p.title as position')
+ ->leftJoin ('Department d ','d.id= a.did')
+ ->leftJoin ('Position p ','p.id= a.position_id')
+ ->where(['a.id' => $id])
+ ->cache(true,60)
+ ->find();
+ $admin['last_login_time'] = empty($admin['last_login_time']) ? '-' : date('Y-m-d H:i', $admin['last_login_time']);
+ return $admin;
+}
+
+//获取当前登录用户的信息
+function get_login_admin($key = '')
+{
+ $session_admin = get_config('app.session_admin');
+ if (\think\facade\Session::has($session_admin)) {
+ $gougu_admin = \think\facade\Session::get($session_admin);
+ $admin = get_admin($gougu_admin['id']);
+ if (!empty($key)) {
+ if (isset($admin[$key])) {
+ return $admin[$key];
+ } else {
+ return '';
+ }
+ } else {
+ return $admin;
+ }
+ } else {
+ return '';
+ }
+}
+
+/**
+ * 节点权限判断
+ * @return bool
+ */
+function check_auth($rule, $uid)
+{
+ $auth_list = Cache::get('RulesSrc' . $uid);
+ if (!in_array($rule, $auth_list)) {
+ return false;
+ } else {
+ return true;
+ }
+}
+
+//读取部门列表
+function get_department()
+{
+ $department = Db::name('Department')->where(['status' => 1])->select()->toArray();
+ return $department;
+}
+
+//获取某部门的子部门id.$is_self时候包含自己
+function get_department_son($did = 0, $is_self = 1)
+{
+ $department = get_department();
+ $department_list = get_data_node($department, $did);
+ $department_array = array_column($department_list, 'id');
+ if ($is_self == 1) {
+ //包括自己在内
+ $department_array[] = $did;
+ }
+ return $department_array;
+}
+
+//读取员工所在部门的负责人
+function get_department_leader($uid=0,$pid=0)
+{
+ $did = get_admin($uid)['did'];
+ if($pid==0){
+ $leader = Db::name('Department')->where(['id' => $did])->value('leader_id');
+ }
+ else{
+ $pdid = Db::name('Department')->where(['id' => $did])->value('pid');
+ if($pdid == 0){
+ $leader = 0;
+ }
+ else{
+ $leader = Db::name('Department')->where(['id' => $pdid])->value('leader_id');
+ }
+ }
+ return $leader;
+}
+
+//读取职位
+function get_position()
+{
+ $position = Db::name('Position')->where(['status' => 1])->select()->toArray();
+ return $position;
+}
+
+//根据流程模块读取某部门某模块的审核流程
+function get_flows($type=1,$department=0)
+{
+ $map1 = [];
+ $map2 = [];
+ $map1[] = ['status', '=', 1];
+ $map1[] = ['flow_cate', '=', $type];
+ $map1[] = ['department_ids', '=', ''];
+
+ $map2[] = ['status', '=', 1];
+ $map2[] = ['flow_cate', '=', $type];
+ $map2[] = ['', 'exp', Db::raw("FIND_IN_SET('{$department}',department_ids)")];
+
+ $list = Db::name('Flow')
+ ->field('id,name,check_type')
+ ->whereOr([$map1,$map2])
+ ->order('id desc')->select()->toArray();
+ return $list;
+}
+
+//根据流程所属模块读取某部门某模块的审核流程
+function get_type_flows($module=6,$department=0)
+{
+ $map1 = [];
+ $map2 = [];
+ $map1[] = ['status', '=', 1];
+ $map1[] = ['type', '=', $module];
+ $map1[] = ['department_ids', '=', ''];
+
+ $map2[] = ['status', '=', 1];
+ $map2[] = ['type', '=', $module];
+ $map2[] = ['', 'exp', Db::raw("FIND_IN_SET('{$department}',department_ids)")];
+
+ $list = Db::name('Flow')
+ ->field('id,name,check_type')
+ ->whereOr([$map1,$map2])
+ ->order('id desc')->select()->toArray();
+ return $list;
+}
+
+/**
+ * 根据附件表的id返回url地址
+ * @param [type] $id [description]
+ */
+function get_file($id)
+{
+ if ($id) {
+ $geturl = Db::name("file")->where(['id' => $id])->find();
+ if ($geturl['status'] == 1) {
+ //审核通过
+ //获取签名的URL
+ $url = $geturl['filepath'];
+ return $url;
+ } elseif ($geturl['status'] == 0) {
+ //待审核
+ return '/static/home/images/none_pic.jpg';
+ } else {
+ //不通过
+ return '/static/home/images/none_pic.jpg';
+ }
+ }
+ return false;
+}
+
+/**
+ * 员工操作日志
+ * @param string $type 操作类型 login add edit view delete
+ * @param int $param_id 操作类型
+ * @param array $param 提交的参数
+ */
+function add_log($type, $param_id = '', $param = [])
+{
+ $action = '未知操作';
+ $type_action = get_config('log.type_action');
+ if($type_action[$type]){
+ $action = $type_action[$type];
+ }
+ if ($type == 'login') {
+ $login_admin = Db::name('Admin')->where(array('id' => $param_id))->find();
+ } else {
+ $session_admin = get_config('app.session_admin');
+ $login_admin = \think\facade\Session::get($session_admin);
+ }
+ $data = [];
+ $data['uid'] = $login_admin['id'];
+ $data['name'] = $login_admin['name'];
+ $data['type'] = $type;
+ $data['action'] = $action;
+ $data['param_id'] = $param_id;
+ $data['param'] = json_encode($param);
+ $data['module'] = strtolower(app('http')->getName());
+ $data['controller'] = strtolower(app('request')->controller());
+ $data['function'] = strtolower(app('request')->action());
+ $parameter = $data['module'] . '/' . $data['controller'] . '/' . $data['function'];
+ $rule_menu = Db::name('AdminRule')->where(array('src' => $parameter))->find();
+ if($rule_menu){
+ $data['title'] = $rule_menu['title'];
+ $data['subject'] = $rule_menu['name'];
+ }
+ else{
+ $data['title'] = '';
+ $data['subject'] ='系统';
+ }
+ $content = $login_admin['name'] . '在' . date('Y-m-d H:i:s') . $data['action'] . '了' . $data['subject'];
+ $data['content'] = $content;
+ $data['ip'] = app('request')->ip();
+ $data['create_time'] = time();
+ Db::name('AdminLog')->strict(false)->field(true)->insert($data);
+}
+
+/**
+ * 发送站内信
+ * @param $user_id 接收人user_id
+ * @param $data 操作内容
+ * @param $sysMessage 1为系统消息
+ * @param $template 消息模板
+ * @return
+ */
+function sendMessage($user_id, $template, $data=[])
+{
+ $content = get_config('message.template')[$template]['template'];
+ foreach ($data as $key => $val) {
+ $content = str_replace('{' . $key . '}', $val, $content);
+ }
+ if(isSet($data['from_uid'])){
+ $content = str_replace('{from_user}', get_admin($data['from_uid'])['name'], $content);
+ }
+ $content = str_replace('{date}', date('Y-m-d'), $content);
+
+ if (!$user_id) return false;
+ if (!$content) return false;
+ if (!is_array($user_id)) {
+ $users[] = $user_id;
+ } else {
+ $users = $user_id;
+ }
+ $users = array_unique(array_filter($users));
+ //组合要发的消息
+ $send_data = [];
+ foreach ($users as $key => $value) {
+ $send_data[] = array(
+ 'to_uid' => $value,//接收人
+ 'action_id' => $data['action_id'],
+ 'title' => $data['title'],
+ 'content' => $content,
+ 'template' => $template,
+ 'module_name' => strtolower(app('http')->getName()),
+ 'controller_name' => strtolower(app('request')->controller()),
+ 'action_name' => strtolower(app('request')->action()),
+ 'send_time' => time(),
+ 'create_time' => time()
+ );
+ }
+ $res = Db::name('Message')->strict(false)->field(true)->insertAll($send_data);
+ return $res;
+}
+
+/**
+ * 邮件发送
+ * @param $to 接收人
+ * @param string $subject 邮件标题
+ * @param string $content 邮件内容(html模板渲染后的内容)
+ * @throws Exception
+ * @throws phpmailerException
+ */
+function send_email($to, $subject = '', $content = '')
+{
+ $mail = new PHPMailer\PHPMailer\PHPMailer();
+ $email_config = Db::name('config')->where('name', 'email')->find();
+ $config = unserialize($email_config['content']);
+
+ $mail->CharSet = 'UTF-8'; //设定邮件编码,默认ISO-8859-1,如果发中文此项必须设置,否则乱码
+ $mail->isSMTP();
+ $mail->SMTPDebug = 0;
+
+ //调试输出格式
+ //$mail->Debugoutput = 'html';
+ //smtp服务器
+ $mail->Host = $config['smtp'];
+ //端口 - likely to be 25, 465 or 587
+ $mail->Port = $config['smtp_port'];
+ if ($mail->Port == '465') {
+ $mail->SMTPSecure = 'ssl'; // 使用安全协议
+ }
+ //Whether to use SMTP authentication
+ $mail->SMTPAuth = true;
+ //发送邮箱
+ $mail->Username = $config['smtp_user'];
+ //密码
+ $mail->Password = $config['smtp_pwd'];
+ //Set who the message is to be sent from
+ $mail->setFrom($config['email'], $config['from']);
+ //回复地址
+ //$mail->addReplyTo('replyto@example.com', 'First Last');
+ //接收邮件方
+ if (is_array($to)) {
+ foreach ($to as $v) {
+ $mail->addAddress($v);
+ }
+ } else {
+ $mail->addAddress($to);
+ }
+
+ $mail->isHTML(true); // send as HTML
+ //标题
+ $mail->Subject = $subject;
+ //HTML内容转换
+ $mail->msgHTML($content);
+ $status = $mail->send();
+ if ($status) {
+ return true;
+ } else {
+ // echo "Mailer Error: ".$mail->ErrorInfo;// 输出错误信息
+ // die;
+ return false;
+ }
+}
/**
* 截取文章摘要
* @return bool
@@ -87,6 +444,17 @@ function get_desc_content($content, $count)
}
return $res;
}
+
+/**
+ * PHP去除空格
+ * @param string $str 字符串
+ * @return string 字符串
+ */
+function trim_space($str=''){
+ $str = mb_ereg_replace('^( | )+', '', $str);
+ $str = mb_ereg_replace('( | )+$', '', $str);
+ return mb_ereg_replace(' ', "\n ", $str);
+}
/**
* PHP格式化字节大小
* @param number $size 字节数
@@ -251,6 +619,29 @@ function get_tree($data, $pId ,$open=0,$deep=0)
return array_values($tree);
}
+//递归返回树形菜单数据
+function get_select_tree($data, $pId ,$deep=0, $selected=[])
+{
+ $tree = [];
+ foreach($data as $k => $v)
+ {
+ $vv=[];
+ $vv['name']=$v['title'];
+ $vv['value']=$v['id'];
+ $vv['selected']='';
+ if(in_array($v['id'],$selected)){
+ $vv['selected'] = 'selected';
+ }
+ if($v['pid'] == $pId){
+ //父亲找到儿子
+ $deep++;
+ $vv['children'] = get_select_tree($data, $v['id'],$deep,$selected);
+ $tree[] = $vv;
+ }
+ }
+ return array_values($tree);
+}
+
/**
* 根据id递归返回子数据
* @param $data 数据
@@ -684,152 +1075,180 @@ function monthList($start, $end)
/**
* 等于(时间段)数据处理
*
- * @param $data
+ * @param $type
* @return array
* @since 2021-06-11
* @author fanqi
*/
-function advancedDate($data)
+function advancedDate($type)
{
// 本年度
- if ($data['value'][0] == 'year') {
+ if ($type == 'year') {
$arrTime = DataTime::year();
- $data['value'][0] = date('Y-m-d 00:00:00', $arrTime[0]);
- $data['value'][1] = date('Y-m-d 23:59:59', $arrTime[1]);
+ $start_time = date('Y-m-d 00:00:00', $arrTime[0]);
+ $end_time = date('Y-m-d 23:59:59', $arrTime[1]);
}
// 上一年度
- if ($data['value'][0] == 'lastYear') {
- $data['value'][0] = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-1 year'));
- $data['value'][1] = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 year'));
+ if ($type == 'lastYear') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-1 year'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 year'));
}
// 下一年度
- if ($data['value'][0] == 'nextYear') {
- $data['value'][0] = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 year'));
- $data['value'][1] = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+1 year'));
+ if ($type == 'nextYear') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 year'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+1 year'));
}
// 上半年
- if ($data['value'][0] == 'firstHalfYear') {
- $data['value'][0] = date('Y-01-01 00:00:00');
- $data['value'][1] = date('Y-06-30 23:59:59');
+ if ($type == 'firstHalfYear') {
+ $start_time = date('Y-01-01 00:00:00');
+ $end_time = date('Y-06-30 23:59:59');
}
// 下半年
- if ($data['value'][0] == 'nextHalfYear') {
- $data['value'][0] = date('Y-07-01 00:00:00');
- $data['value'][1] = date('Y-12-31 23:59:59');
+ if ($type == 'nextHalfYear') {
+ $start_time = date('Y-07-01 00:00:00');
+ $end_time = date('Y-12-31 23:59:59');
}
// 本季度
- if ($data['value'][0] == 'quarter') {
+ if ($type == 'quarter') {
$season = ceil((date('n')) / 3);
- $data['value'][0] = date('Y-m-d H:i:s', mktime(0, 0, 0, $season * 3 - 3 + 1, 1, date('Y')));
- $data['value'][1] = date('Y-m-d H:i:s', mktime(23, 59, 59, $season * 3, date('t', mktime(0, 0, 0, $season * 3, 1, date("Y"))), date('Y')));
+ $start_time = date('Y-m-d H:i:s', mktime(0, 0, 0, $season * 3 - 3 + 1, 1, date('Y')));
+ $end_time = date('Y-m-d H:i:s', mktime(23, 59, 59, $season * 3, date('t', mktime(0, 0, 0, $season * 3, 1, date("Y"))), date('Y')));
}
// 上一季度
- if ($data['value'][0] == 'lastQuarter') {
+ if ($type == 'lastQuarter') {
$season = ceil((date('n')) / 3) - 1;
- $data['value'][0] = date('Y-m-d H:i:s', mktime(0, 0, 0, $season * 3 - 3 + 1, 1, date('Y')));
- $data['value'][1] = date('Y-m-d H:i:s', mktime(23, 59, 59, $season * 3, date('t', mktime(0, 0, 0, $season * 3, 1, date("Y"))), date('Y')));
+ $start_time = date('Y-m-d H:i:s', mktime(0, 0, 0, $season * 3 - 3 + 1, 1, date('Y')));
+ $end_time = date('Y-m-d H:i:s', mktime(23, 59, 59, $season * 3, date('t', mktime(0, 0, 0, $season * 3, 1, date("Y"))), date('Y')));
}
// 下一季度
- if ($data['value'][0] == 'nextQuarter') {
+ if ($type == 'nextQuarter') {
$season = ceil((date('n')) / 3);
- $data['value'][0] = date('Y-m-d H:i:s', mktime(0, 0, 0, $season * 3 + 1, 1, date('Y')));
- $data['value'][1] = date('Y-m-d H:i:s', mktime(23, 59, 59, $season * 3 + 3, date('t', mktime(0, 0, 0, $season * 3, 1, date("Y"))), date('Y')));
+ $start_time = date('Y-m-d H:i:s', mktime(0, 0, 0, $season * 3 + 1, 1, date('Y')));
+ $end_time = date('Y-m-d H:i:s', mktime(23, 59, 59, $season * 3 + 3, date('t', mktime(0, 0, 0, $season * 3, 1, date("Y"))), date('Y')));
}
// 本月
- if ($data['value'][0] == 'month') {
- $data['value'][0] = date('Y-m-01 00:00:00');
- $data['value'][1] = date('Y-m-31 23:59:59');
+ if ($type == 'month') {
+ $start_time = date('Y-m-01 00:00:00');
+ $end_time = date('Y-m-31 23:59:59');
}
// 上月
- if ($data['value'][0] == 'lastMonth') {
- $data['value'][0] = date('Y-m-01 00:00:00', strtotime(date('Y-m-d') . '-1 month'));
- $data['value'][1] = date('Y-m-31 23:59:59', strtotime(date('Y-m-d') . '-1 month'));
+ if ($type == 'lastMonth') {
+ $start_time = date('Y-m-01 00:00:00', strtotime(date('Y-m-d') . '-1 month'));
+ $end_time = date('Y-m-31 23:59:59', strtotime(date('Y-m-d') . '-1 month'));
}
// 下月
- if ($data['value'][0] == 'nextMonth') {
- $data['value'][0] = date('Y-m-01 00:00:00', strtotime(date('Y-m-d') . '+1 month'));
- $data['value'][1] = date('Y-m-31 23:59:59', strtotime(date('Y-m-d') . '+1 month'));
+ if ($type == 'nextMonth') {
+ $start_time = date('Y-m-01 00:00:00', strtotime(date('Y-m-d') . '+1 month'));
+ $end_time = date('Y-m-31 23:59:59', strtotime(date('Y-m-d') . '+1 month'));
}
// 本周
- if ($data['value'][0] == 'week') {
- $data['value'][0] = date('Y-m-d 00:00:00', mktime(0, 0, 0, date('m'), date('d') - date('w') + 1, date('Y')));
- $data['value'][1] = date('Y-m-d 23:59:59', mktime(23, 59, 59, date('m'), date('d') - date('w') + 7, date('Y')));
+ if ($type == 'week') {
+ $start_time = date('Y-m-d 00:00:00', mktime(0, 0, 0, date('m'), date('d') - date('w') + 1, date('Y')));
+ $end_time = date('Y-m-d 23:59:59', mktime(23, 59, 59, date('m'), date('d') - date('w') + 7, date('Y')));
}
// 上周
- if ($data['value'][0] == 'lastWeek') {
+ if ($type == 'lastWeek') {
$date = date("Y-m-d");
$w = date("w", strtotime($date));
$d = $w ? $w - 1 : 6;
$start = date("Y-m-d", strtotime($date . " - " . $d . " days"));
- $data['value'][0] = date('Y-m-d', strtotime($start . " - 7 days"));
- $data['value'][1] = date('Y-m-d', strtotime($start . " - 1 days"));
+ $start_time = date('Y-m-d', strtotime($start . " - 7 days"));
+ $end_time = date('Y-m-d', strtotime($start . " - 1 days"));
}
// 下周
- if ($data['value'][0] == 'nextWeek') {
+ if ($type == 'nextWeek') {
$date = date("Y-m-d");
$w = date("w", strtotime($date));
$d = $w ? $w - 1 : 6;
$start = date("Y-m-d", strtotime($date . " - " . $d . " days"));
- $data['value'][0] = date('Y-m-d', strtotime($start . " + 7 days"));
- $data['value'][1] = date('Y-m-d', strtotime($start . " + 13 days"));
+ $start_time = date('Y-m-d', strtotime($start . " + 7 days"));
+ $end_time = date('Y-m-d', strtotime($start . " + 13 days"));
}
// 今天
- if ($data['value'][0] == 'today') {
- $data['value'][0] = date('Y-m-d 00:00:00');
- $data['value'][1] = date('Y-m-d 23:59:59');
+ if ($type == 'today') {
+ $start_time = date('Y-m-d 00:00:00');
+ $end_time = date('Y-m-d 23:59:59');
}
// 昨天
- if ($data['value'][0] == 'yesterday') {
- $data['value'][0] = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-1 day'));
- $data['value'][1] = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 day'));
+ if ($type == 'yesterday') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-1 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 day'));
}
// 明天
- if ($data['value'][0] == 'tomorrow') {
- $data['value'][0] = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 day'));
- $data['value'][1] = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+1 day'));
+ if ($type == 'tomorrow') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+1 day'));
+ }
+
+ // 过去3天
+ if ($type == 'previous3day') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-3 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 day'));
+ }
+
+ // 过去5天
+ if ($type == 'previous5day') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-5 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 day'));
}
// 过去7天
- if ($data['value'][0] == 'previous7day') {
- $data['value'][0] = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-7 day'));
- $data['value'][1] = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 day'));
+ if ($type == 'previous7day') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-7 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 day'));
+ }
+ // 过去10天
+ if ($type == 'previous10day') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-10 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 day'));
}
-
// 过去30天
- if ($data['value'][0] == 'previous30day') {
- $data['value'][0] = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-30 day'));
- $data['value'][1] = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 day'));
+ if ($type == 'previous30day') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '-30 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '-1 day'));
+ }
+ // 未来3天
+ if ($type == 'future3day') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+3 day'));
+ }
+ // 未来5天
+ if ($type == 'future5day') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+5 day'));
}
-
// 未来7天
- if ($data['value'][0] == 'future7day') {
- $data['value'][0] = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 day'));
- $data['value'][1] = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+7 day'));
+ if ($type == 'future7day') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+7 day'));
+ }
+ // 未来10天
+ if ($type == 'future10day') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+10 day'));
}
-
// 未来30天
- if ($data['value'][0] == 'future30day') {
- $data['value'][0] = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 day'));
- $data['value'][1] = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+30 day'));
+ if ($type == 'future30day') {
+ $start_time = date('Y-m-d 00:00:00', strtotime(date('Y-m-d') . '+1 day'));
+ $end_time = date('Y-m-d 23:59:59', strtotime(date('Y-m-d') . '+30 day'));
}
-
- return $data;
+ return [$start_time,$end_time];
}
/**
diff --git a/app/finance/common.php b/app/finance/common.php
new file mode 100644
index 0000000..22b1c80
--- /dev/null
+++ b/app/finance/common.php
@@ -0,0 +1,24 @@
+where(['status' => 1])->order('id desc')->select()->toArray();
+ return $subject;
+}
+
+//读取报销类型
+function finance_expense_cate()
+{
+ $cate = Db::name('ExpenseCate')->where(['status' => 1])->order('id desc')->select()->toArray();
+ return $cate;
+}
\ No newline at end of file
diff --git a/app/finance/controller/Expense.php b/app/finance/controller/Expense.php
new file mode 100644
index 0000000..5fe208e
--- /dev/null
+++ b/app/finance/controller/Expense.php
@@ -0,0 +1,636 @@
+order('id desc')
+ ->paginate($rows, false, ['query' => $param])
+ ->each(function ($item, $key) {
+ $item->income_month = empty($item->income_month) ? '-' : date('Y-m', $item->income_month);
+ $item->expense_time = empty($item->expense_time) ? '-' : date('Y-m-d', $item->expense_time);
+ $item->admin_name = Db::name('Admin')->where(['id' => $item->admin_id])->value('name');
+ $item->department = Db::name('Department')->where(['id' => $item->admin_id])->value('title');
+ $item->pay_name = Db::name('Admin')->where(['id' => $item->pay_admin_id])->value('name');
+ $item->pay_time = empty($item->pay_time) ? '-' : date('Y-m-d H:i', $item->pay_time);
+ $item->amount = Db::name('ExpenseInterfix')->where(['exid' => $item->id])->sum('amount');
+ $item['check_user'] = '-';
+ if($item['check_status']<2 && !empty($item['check_admin_ids'])){
+ $check_user = Db::name('Admin')->where('id','in',$item['check_admin_ids'])->column('name');
+ $item['check_user'] = implode(',',$check_user);
+ }
+ });
+ }
+ else{
+ $expense = ExpenseList::where($where)
+ ->order('id desc')
+ ->paginate($rows, false, ['query' => $param])
+ ->each(function ($item, $key) {
+ $item->income_month = empty($item->income_month) ? '-' : date('Y-m', $item->income_month);
+ $item->expense_time = empty($item->expense_time) ? '-' : date('Y-m-d', $item->expense_time);
+ $item->admin_name = Db::name('Admin')->where(['id' => $item->admin_id])->value('name');
+ $item->department = Db::name('Department')->where(['id' => $item->admin_id])->value('title');
+ $item->pay_name = Db::name('Admin')->where(['id' => $item->pay_admin_id])->value('name');
+ $item->pay_time = empty($item->pay_time) ? '-' : date('Y-m-d H:i', $item->pay_time);
+ $item->amount = Db::name('ExpenseInterfix')->where(['exid' => $item->id])->sum('amount');
+ $item['check_user'] = '-';
+ if($item['check_status']<2 && !empty($item['check_admin_ids'])){
+ $check_user = Db::name('Admin')->where('id','in',$item['check_admin_ids'])->column('name');
+ $item['check_user'] = implode(',',$check_user);
+ }
+ });
+ }
+ return $expense;
+ }
+
+ public function detail($id = 0)
+ {
+ $expense = Db::name('Expense')->where(['id' => $id])->find();
+ if ($expense) {
+ $expense['income_month'] = empty($expense['income_month']) ? '-' : date('Y-m', $expense['income_month']);
+ $expense['expense_time'] = empty($expense['expense_time']) ? '-' : date('Y-m-d', $expense['expense_time']);
+ $expense['create_user'] = Db::name('Admin')->where(['id' => $expense['admin_id']])->value('name');
+ $expense['department'] = Db::name('Department')->where(['id' => $expense['did']])->value('title');
+ $expense['amount'] = Db::name('ExpenseInterfix')->where(['exid' => $expense['id']])->sum('amount');
+ $expense['pay_admin'] = Db::name('Admin')->where(['id' => $expense['pay_admin_id']])->value('name');
+ if ($expense['pay_time'] > 0) {
+ $expense['pay_time'] = date('Y-m-d H:i:s', $expense['pay_time']);
+ }
+ else{
+ $expense['pay_time'] = '-';
+ }
+ $expense['list'] = Db::name('ExpenseInterfix')
+ ->field('a.*,c.title as cate_title')
+ ->alias('a')
+ ->join('ExpenseCate c', 'a.cate_id = c.id','LEFT')
+ ->where(['a.exid' => $expense['id']])
+ ->select();
+ }
+ return $expense;
+ }
+
+ public function index()
+ {
+ if (request()->isAjax()) {
+ $param = get_params();
+ $where = [];
+ //按时间检索
+ $start_time = !empty($param['start_time']) ? strtotime(urldecode($param['start_time'])) : 0;
+ $end_time = !empty($param['end_time']) ? strtotime(urldecode($param['end_time'])) : 0;
+ if ($start_time > 0 && $end_time > 0) {
+ $where[] = ['expense_time', 'between', [$start_time, $end_time]];
+ }
+
+ $where[] = ['admin_id','=',$this->uid];
+ if (!empty($param['check_status']) && $param['check_status']!='') {
+ $where[] = ['check_status', '=', $param['check_status']];
+ }
+ $expense = $this->get_list($where, $param);
+ return table_assign(0, '', $expense);
+ } else {
+ return view();
+ }
+ }
+
+ //待审批的报销
+ public function list()
+ {
+ if (request()->isAjax()) {
+ $param = get_params();
+ $status = isset($param['status'])?$param['status']:0;
+ $user_id = $this->uid;
+ //查询条件
+ $map1 = [];
+ $map2 = [];
+ $map1[] = ['', 'exp', Db::raw("FIND_IN_SET('{$user_id}',check_admin_ids)")];
+ $map2[] = ['', 'exp', Db::raw("FIND_IN_SET('{$user_id}',flow_admin_ids)")];
+
+ if($status == 0){
+ $list = $this->get_list([$map1,$map2],$param,'or');
+ }
+ if($status == 1){
+ $list = $this->get_list($map1,$param);
+ }
+ if($status == 2){
+ $list = $this->get_list($map2,$param);
+ }
+ return table_assign(0, '', $list);
+ } else {
+ return view();
+ }
+ }
+
+ //报销打款
+ public function checkedlist()
+ {
+ if (request()->isAjax()) {
+ $param = get_params();
+ $where = [];
+ if (!empty($param['check_status'])) {
+ $where[] = ['check_status','=',$param['check_status']];
+ }
+ else{
+ $where[] = ['check_status','in',[2,5]];
+ }
+ //按时间检索
+ $start_time = !empty($param['start_time']) ? strtotime(urldecode($param['start_time'])) : 0;
+ $end_time = !empty($param['end_time']) ? strtotime(urldecode($param['end_time'])) : 0;
+ if ($start_time > 0 && $end_time > 0) {
+ $where[] = ['expense_time', 'between', [$start_time, $end_time]];
+ }
+ $list = $this->get_list($where,$param);
+ return table_assign(0, '', $list);
+ } else {
+ return view();
+ }
+ }
+
+ //添加
+ public function add()
+ {
+ $param = get_params();
+ if (request()->isAjax()) {
+ $dbRes = false;
+ $admin_id = $this->uid;
+ $param['income_month'] = isset($param['income_month']) ? strtotime(urldecode($param['income_month'])) : 0;
+ $param['expense_time'] = isset($param['expense_time']) ? strtotime(urldecode($param['expense_time'])) : 0;
+ $param['check_status'] = 1;
+ $flow_list = Db::name('Flow')->where('id',$param['flow_id'])->value('flow_list');
+ $flow = unserialize($flow_list);
+ if (!empty($param['id']) && $param['id'] > 0) {
+ try {
+ validate(ExpenseCheck::class)->scene('edit')->check($param);
+ } catch (ValidateException $e) {
+ // 验证失败 输出错误信息
+ return to_assign(1, $e->getError());
+ }
+ $param['update_time'] = time();
+ Db::startTrans();
+ try {
+ //删除原来的审核流程和审核记录
+ Db::name('FlowStep')->where(['action_id'=>$param['id'],'type'=>2,'delete_time'=>0])->update(['delete_time'=>time()]);
+ Db::name('FlowRecord')->where(['action_id'=>$param['id'],'type'=>2,'delete_time'=>0])->update(['delete_time'=>time()]);
+ if (!isset($param['check_admin_ids'])) {
+ if($flow[0]['flow_type'] == 1){
+ //部门负责人
+ $leader = get_department_leader($this->uid);
+ if($leader == 0){
+ return to_assign(1,'审批流程设置有问题:当前部门负责人还未设置,请联系HR或者管理员');
+ }
+ else{
+ $param['check_admin_ids'] = $leader;
+ }
+ }
+ else if($flow[0]['flow_type'] == 2){
+ //上级部门负责人
+ $leader = get_department_leader($this->uid,1);
+ if($leader == 0){
+ return to_assign(1,'审批流程设置有问题:上级部门负责人还未设置,请联系HR或者管理员');
+ }
+ else{
+ $param['check_admin_ids'] = $leader;
+ }
+ }
+ else{
+ $param['check_admin_ids'] = $flow[0]['flow_uids'];
+ }
+ foreach ($flow as $key => &$value){
+ $value['action_id'] = $param['id'];
+ $value['sort'] = $key;
+ $value['type'] = 2;
+ $value['create_time'] = time();
+ }
+ //增加审核流程
+ Db::name('FlowStep')->strict(false)->field(true)->insertAll($flow);
+ }
+ else{
+ $flow_step = array(
+ 'action_id' => $param['id'],
+ 'type' => 2,
+ 'flow_uids' => $param['check_admin_ids'],
+ 'create_time' => time()
+ );
+ //增加审核流程
+ Db::name('FlowStep')->strict(false)->field(true)->insertGetId($flow_step);
+ }
+
+ $res = ExpenseList::where('id', $param['id'])->strict(false)->field(true)->update($param);
+ if ($res !== false) {
+ $exid = $param['id'];
+ //相关内容多个数组;
+ $amountData = isset($param['amount']) ? $param['amount'] : '';
+ $remarksData = isset($param['remarks']) ? $param['remarks'] : '';
+ $cateData = isset($param['cate_id']) ? $param['cate_id'] : '';
+ $idData = isset($param['expense_id']) ? $param['expense_id'] : 0;
+ if ($amountData) {
+ foreach ($amountData as $key => $value) {
+ if (!$value) {
+ continue;
+ }
+ $data = [];
+ $data['id'] = $idData[$key];
+ $data['exid'] = $exid;
+ $data['admin_id'] = $admin_id;
+ $data['amount'] = $amountData[$key];
+ $data['cate_id'] = $cateData[$key];
+ $data['remarks'] = $remarksData[$key];
+ if ($data['amount'] == 0) {
+ Db::rollback();
+ return to_assign(1, '第' . ($key + 1) . '条报销金额不能为零');
+ }
+ if ($data['id'] > 0) {
+ $data['update_time'] = time();
+ $resa = Db::name('ExpenseInterfix')->strict(false)->field(true)->update($data);
+ } else {
+ $data['create_time'] = time();
+ $eid = Db::name('ExpenseInterfix')->strict(false)->field(true)->insertGetId($data);
+ }
+ }
+ }
+
+ add_log('edit', $exid, $param);
+ Db::commit();
+ $dbRes = true;
+ } else {
+ Db::rollback();
+ }
+ } catch (\Exception $e) { ##这里参数不能删除($e:错误信息)
+ Db::rollback();
+ return to_assign(1, $e->getMessage());
+ }
+ } else {
+ try {
+ validate(ExpenseCheck::class)->scene('add')->check($param);
+ } catch (ValidateException $e) {
+ // 验证失败 输出错误信息
+ return to_assign(1, $e->getError());
+ }
+ $param['create_time'] = time();
+ $param['admin_id'] = $admin_id;
+ $param['did'] = get_login_admin('did');
+ Db::startTrans();
+ try {
+ if (!isset($param['check_admin_ids'])) {
+ if($flow[0]['flow_type'] == 1){
+ //部门负责人
+ $leader = get_department_leader($this->uid);
+ if($leader == 0){
+ return to_assign(1,'审批流程设置有问题:当前部门负责人还未设置,请联系HR或者管理员');
+ }
+ else{
+ $param['check_admin_ids'] = $leader;
+ }
+ }
+ else if($flow[0]['flow_type'] == 2){
+ //上级部门负责人
+ $leader = get_department_leader($this->uid,1);
+ if($leader == 0){
+ return to_assign(1,'审批流程设置有问题:上级部门负责人还未设置,请联系HR或者管理员');
+ }
+ else{
+ $param['check_admin_ids'] = $leader;
+ }
+ }
+ else{
+ $param['check_admin_ids'] = $flow[0]['flow_uids'];
+ }
+ $exid = ExpenseList::strict(false)->field(true)->insertGetId($param);
+ foreach ($flow as $key => &$value){
+ $value['action_id'] = $exid;
+ $value['sort'] = $key;
+ $value['type'] = 2;
+ $value['create_time'] = time();
+ }
+ //增加审核流程
+ Db::name('FlowStep')->strict(false)->field(true)->insertAll($flow);
+ }
+ else{
+ $exid = ExpenseList::strict(false)->field(true)->insertGetId($param);
+ $flow_step = array(
+ 'action_id' => $exid,
+ 'type' => 2,
+ 'flow_uids' => $param['check_admin_ids'],
+ 'create_time' => time()
+ );
+ //增加审核流程
+ Db::name('FlowStep')->strict(false)->field(true)->insertGetId($flow_step);
+ }
+
+ if ($exid) {
+ //相关内容多个数组;
+ $amountData = isset($param['amount']) ? $param['amount'] : '';
+ $remarksData = isset($param['remarks']) ? $param['remarks'] : '';
+ $cateData = isset($param['cate_id']) ? $param['cate_id'] : '';
+ if ($amountData) {
+ foreach ($amountData as $key => $value) {
+ if (!$value) {
+ continue;
+ }
+ $data = [];
+ $data['exid'] = $exid;
+ $data['admin_id'] = $admin_id;
+ $data['amount'] = $amountData[$key];
+ $data['cate_id'] = $cateData[$key];
+ $data['remarks'] = $remarksData[$key];
+ $data['create_time'] = time();
+ if ($data['amount'] == 0) {
+ Db::rollback();
+ return to_assign(1, '第' . ($key + 1) . '条报销金额不能为零');
+ }
+ $eid = Db::name('ExpenseInterfix')->strict(false)->field(true)->insertGetId($data);
+ }
+ }
+ add_log('add', $exid, $param);
+ Db::commit();
+ $dbRes = true;
+ } else {
+ Db::rollback();
+ }
+ } catch (\Exception $e) { ##这里参数不能删除($e:错误信息)
+ Db::rollback();
+ return to_assign(1, $e->getMessage());
+ }
+ }
+ if ($dbRes == true) {
+ return to_assign();
+ } else {
+ return to_assign(1, '保存失败');
+ }
+ }
+ else{
+ $id = isset($param['id']) ? $param['id'] : 0;
+ if ($id > 0) {
+ $expense = $this->detail($id);
+ View::assign('expense', $expense);
+ }
+ $department = get_login_admin('did');
+ //获取报销审批流程
+ $flows = get_type_flows(6,$department);
+ $expense_cate = Db::name('ExpenseCate')->where(['status' => 1])->select()->toArray();
+ View::assign('user', get_admin($this->uid));
+ View::assign('expense_cate', $expense_cate);
+ View::assign('flows', $flows);
+ View::assign('id', $id);
+ return view();
+ }
+ }
+
+ //查看
+ public function view()
+ {
+ $id = empty(get_params('id')) ? 0 : get_params('id');
+ $detail = $this->detail($id);
+ $flows = Db::name('FlowStep')->where(['action_id'=>$detail['id'],'type'=>2,'sort'=>$detail['check_step_sort'],'delete_time'=>0])->find();
+ $detail['check_user'] = '-';
+ $check_user_ids = [];
+ if($detail['check_status']<2){
+ if($flows['flow_type']==1){
+ $detail['check_user'] = '部门负责人';
+ $check_user_ids[]=get_department_leader($detail['admin_id']);
+ }
+ else if($flows['flow_type']==2){
+ $detail['check_user'] = '上级部门负责人';
+ $check_user_ids[]=get_department_leader($detail['admin_id'],1);
+ }
+ else{
+ $check_user_ids = explode(',',$flows['flow_uids']);
+ $check_user = Db::name('Admin')->where('id','in',$flows['flow_uids'])->column('name');
+ $detail['check_user'] = implode(',',$check_user);
+ }
+ }
+
+ $is_check_admin = 0;
+ $is_create_admin = 0;
+ if($detail['admin_id'] == $this->uid){
+ $is_create_admin = 1;
+ }
+ if(in_array($this->uid,$check_user_ids)){
+ $is_check_admin = 1;
+ //当前审核节点详情
+ $step = Db::name('FlowStep')->where(['action_id'=>$detail['id'],'type'=>2,'sort'=>$detail['check_step_sort'],'delete_time'=>0])->find();
+ if($step['flow_type'] == 4){
+ $check_count = Db::name('FlowRecord')->where(['action_id'=>$detail['id'],'type'=>2,'step_id'=>$step['id'],'check_user_id'=>$this->uid])->count();
+ if($check_count>0){
+ $is_check_admin = 0;
+ }
+ }
+ }
+ View::assign('is_create_admin', $is_create_admin);
+ View::assign('is_check_admin', $is_check_admin);
+ View::assign('detail', $detail);
+ View::assign('flows', $flows);
+ View::assign('uid', $this->uid);
+ return view();
+ }
+
+ //删除
+ public function delete()
+ {
+ $id = get_params("id");
+ $expense = $this->detail($id);
+ if ($expense['check_status'] == 2) {
+ return to_assign(1, "已审核的报销记录不能删除");
+ }
+ if ($expense['check_status'] == 3) {
+ return to_assign(1, "已打款的报销记录不能删除");
+ }
+ $data['status'] = '-1';
+ $data['id'] = $id;
+ $data['update_time'] = time();
+ if (Db::name('expense')->update($data) !== false) {
+ add_log('delete', $id);
+ return to_assign(0, "删除成功");
+ } else {
+ return to_assign(1, "删除失败");
+ }
+ }
+
+
+ //审核
+ public function check()
+ {
+ $param = get_params();
+ $detail = Db::name('Expense')->where(['id' => $param['id']])->find();
+ //当前审核节点详情
+ $step = Db::name('FlowStep')->where(['action_id'=>$detail['id'],'type'=>2,'sort'=>$detail['check_step_sort'],'delete_time'=>0])->find();
+ //审核通过
+ if($param['status'] == 1){
+ //多人会签审批
+ if($step['flow_type'] == 4){
+ //查询当前会签记录数
+ $check_count = Db::name('FlowRecord')->where(['action_id'=>$detail['id'],'type'=>2,'step_id'=>$step['id']])->count();
+ //当前会签记应有记录数
+ $flow_count = explode(',', $step['flow_uids']);
+ if(($check_count+1) >=count($flow_count)){
+ $next_step = Db::name('FlowStep')->where(['action_id'=>$detail['id'],'type'=>2,'sort'=>($detail['check_step_sort']+1),'delete_time'=>0])->find();
+ if($next_step){
+ //存在下一步审核
+ $param['check_step_sort'] = $detail['check_step_sort']+1;
+ $param['check_status'] = 1;
+ }
+ else{
+ //不存在下一步审核,审核结束
+ $param['check_status'] = 2;
+ }
+ }
+ }
+ else if($step['flow_type'] == 0){
+ //自由人审批
+ if($param['check_node'] == 2){
+ $next_step = $detail['check_step_sort']+1;
+ $flow_step = array(
+ 'action_id' => $detail['id'],
+ 'sort' => $next_step,
+ 'type' => 2,
+ 'flow_uids' => $param['check_admin_ids'],
+ 'create_time' => time()
+ );
+ $fid = Db::name('FlowStep')->strict(false)->field(true)->insertGetId($flow_step);
+ //下一步审核步骤
+ $param['check_admin_ids'] = $param['check_admin_ids'];
+ $param['check_step_sort'] = $next_step;
+ $param['check_status'] = 1;
+ }
+ else{
+ //不存在下一步审核,审核结束
+ $param['check_status'] = 2;
+ $param['check_admin_ids'] ='';
+ }
+ }
+ else{
+ $next_step = Db::name('FlowStep')->where(['action_id'=>$detail['id'],'type'=>2,'sort'=>($detail['check_step_sort']+1),'delete_time'=>0])->find();
+ if($next_step){
+ //存在下一步审核
+ if($next_step['flow_type'] == 1){
+ $param['check_admin_ids'] = get_department_leader($this->uid);
+ }
+ else if($next_step['flow_type'] == 2){
+ $param['check_admin_ids'] = get_department_leader($this->uid,1);
+ }
+ else{
+ $param['check_admin_ids'] = $next_step['flow_uids'];
+ }
+ $param['check_step_sort'] = $detail['check_step_sort']+1;
+ $param['check_status'] = 1;
+ }
+ else{
+ //不存在下一步审核,审核结束
+ $param['check_status'] = 2;
+ $param['check_admin_ids'] ='';
+ }
+ }
+ //审核通过数据操作
+ $param['last_admin_id'] = $this->uid;
+ $param['flow_admin_ids'] = $detail['flow_admin_ids'].$this->uid.',';
+ $res = Db::name('Expense')->strict(false)->field('check_step_sort,check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($param);
+ if($res!==false){
+ $checkData=array(
+ 'action_id' => $detail['id'],
+ 'step_id' => $step['id'],
+ 'check_user_id' => $this->uid,
+ 'type' => 2,
+ 'check_time' => time(),
+ 'status' => $param['status'],
+ 'content' => $param['content'],
+ 'create_time' => time()
+ );
+ $aid = Db::name('FlowRecord')->strict(false)->field(true)->insertGetId($checkData);
+ add_log('check', $param['id'], $param);
+ return to_assign();
+ }
+ else{
+ return to_assign(1,'操作失败');
+ }
+ }
+ else if($param['status'] == 2){
+ //拒绝审核,数据操作
+ $param['check_status'] = 3;
+ $param['last_admin_id'] = $this->uid;
+ $param['flow_admin_ids'] = $detail['flow_admin_ids'].$this->uid.',';
+ $param['check_admin_ids'] ='';
+ $res = Db::name('Expense')->strict(false)->field('check_step_sort,check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($param);
+ if($res!==false){
+ $checkData=array(
+ 'action_id' => $detail['id'],
+ 'step_id' => $step['id'],
+ 'check_user_id' => $this->uid,
+ 'type' => 2,
+ 'check_time' => time(),
+ 'status' => $param['status'],
+ 'content' => $param['content'],
+ 'create_time' => time()
+ );
+ $aid = Db::name('FlowRecord')->strict(false)->field(true)->insertGetId($checkData);
+ add_log('refue', $param['id'], $param);
+ return to_assign();
+ }
+ else{
+ return to_assign(1,'操作失败');
+ }
+ }
+ else if($param['status'] == 3){
+ if($detail['admin_id'] != $this->uid){
+ return to_assign(1,'你没权限操作');
+ }
+ //撤销审核,数据操作
+ $param['check_status'] = 4;
+ $param['check_admin_ids'] ='';
+ $param['check_step_sort'] =0;
+ $res = Db::name('Expense')->strict(false)->field('check_step_sort,check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($param);
+ if($res!==false){
+ $checkData=array(
+ 'action_id' => $detail['id'],
+ 'step_id' => 0,
+ 'check_user_id' => $this->uid,
+ 'type' => 2,
+ 'check_time' => time(),
+ 'status' => $param['status'],
+ 'content' => $param['content'],
+ 'create_time' => time()
+ );
+ $aid = Db::name('FlowRecord')->strict(false)->field(true)->insertGetId($checkData);
+ add_log('back', $param['id'], $param);
+ return to_assign();
+ }else{
+ return to_assign(1,'操作失败');
+ }
+ }
+ }
+
+ //设置为已打款
+ public function topay()
+ {
+ $param = get_params();
+ if (request()->isAjax()) {
+ $param['check_status'] = 5;
+ $param['pay_admin_id'] = $this->uid;
+ $param['pay_time'] = time();
+ $res = ExpenseList::where('id', $param['id'])->strict(false)->field(true)->update($param);
+ if ($res !== false) {
+ return to_assign();
+ } else {
+ return to_assign(1, "操作失败");
+ }
+ }
+ }
+
+}
diff --git a/app/home/controller/Income.php b/app/finance/controller/Income.php
similarity index 98%
rename from app/home/controller/Income.php
rename to app/finance/controller/Income.php
index cd60f7d..176f632 100644
--- a/app/home/controller/Income.php
+++ b/app/finance/controller/Income.php
@@ -7,11 +7,10 @@
declare (strict_types = 1);
-namespace app\home\controller;
+namespace app\finance\controller;
use app\base\BaseController;
-use app\home\model\Invoice as InvoiceList;
-use app\home\validate\InvoiceCheck;
+use app\finance\model\Invoice as InvoiceList;
use think\exception\ValidateException;
use think\facade\Db;
use think\facade\View;
@@ -71,7 +70,7 @@ class Income extends BaseController
$param = get_params();
$where = [];
$where[] = ['status', '=', 1];
- $where[] = ['invoice_status', '=', 3];
+ $where[] = ['check_status', '=', 5];
//按时间检索
$start_time = isset($param['start_time']) ? strtotime(urldecode($param['start_time'])) : 0;
$end_time = isset($param['end_time']) ? strtotime(urldecode($param['end_time'])) : 0;
diff --git a/app/finance/controller/Invoice.php b/app/finance/controller/Invoice.php
new file mode 100644
index 0000000..afa0e5b
--- /dev/null
+++ b/app/finance/controller/Invoice.php
@@ -0,0 +1,617 @@
+field('i.*,a.name,d.title as department_name')
+ ->alias('i')
+ ->join('Admin a', 'a.id = i.admin_id', 'left')
+ ->join('Department d', 'd.id = i.did', 'left')
+ ->whereOr($where)
+ ->order('i.id desc')
+ ->group('i.id')
+ ->paginate(['list_rows' => $rows, 'query' => $param])
+ ->each(function($item, $key){
+ $item['create_time'] = date('Y-m-d H:i', $item['create_time']);
+ if ($item['open_time'] > 0) {
+ $item['open_time'] = empty($item['open_time']) ? '0' : date('Y-m-d', $item['open_time']);
+ $item['open_name'] = Db::name('Admin')->where('id',$item['open_admin_id'])->value('name');
+ }
+ else{
+ $item['open_time'] = '';
+ $item['open_name'] = '-';
+ }
+ $item['check_user'] = '-';
+ if($item['check_status']<2 && !empty($item['check_admin_ids'])){
+ $check_user = Db::name('Admin')->where('id','in',$item['check_admin_ids'])->column('name');
+ $item['check_user'] = implode(',',$check_user);
+ }
+ return $item;
+ });
+ }
+ else{
+ $list = Db::name('Invoice')
+ ->field('i.*,a.name,d.title as department_name')
+ ->alias('i')
+ ->join('Admin a', 'a.id = i.admin_id', 'left')
+ ->join('Department d', 'd.id = i.did', 'left')
+ ->where($where)
+ ->order('i.id desc')
+ ->paginate(['list_rows' => $rows, 'query' => $param])
+ ->each(function($item, $key){
+ $item['create_time'] = date('Y-m-d H:i', $item['create_time']);
+ $item['check_user'] = '-';
+ if ($item['open_time'] > 0) {
+ $item['open_time'] = empty($item['open_time']) ? '0' : date('Y-m-d', $item['open_time']);
+ $item['open_name'] = Db::name('Admin')->where('id',$item['open_admin_id'])->value('name');
+ }
+ else{
+ $item['open_time'] = '';
+ $item['open_name'] = '-';
+ }
+ if($item['check_status']<2 && !empty($item['check_admin_ids'])){
+ $check_user = Db::name('Admin')->where('id','in',$item['check_admin_ids'])->column('name');
+ $item['check_user'] = implode(',',$check_user);
+ }
+ return $item;
+ });
+ }
+ return $list;
+ }
+
+ //发票详情
+ public function detail($id = 0)
+ {
+ $invoice = Db::name('Invoice')->where(['id' => $id])->find();
+ if ($invoice) {
+ $invoice['create_user'] = Db::name('Admin')->where(['id' => $invoice['admin_id']])->value('name');
+ $invoice['department'] = Db::name('Department')->where(['id' => $invoice['did']])->value('title');
+ $invoice['check_admin'] = Db::name('Admin')->where(['id' => $invoice['check_admin_id']])->value('name');
+ $invoice['open_admin'] = Db::name('Admin')->where(['id' => $invoice['open_admin_id']])->value('name');
+ if ($invoice['check_time'] > 0) {
+ $invoice['check_time'] = empty($invoice['check_time']) ? '0' : date('Y-m-d H:i', $invoice['check_time']);
+ }
+ if ($invoice['open_time'] > 0) {
+ $invoice['open_time'] = empty($invoice['open_time']) ? '0' : date('Y-m-d', $invoice['open_time']);
+ }
+ else{
+ $invoice['open_time'] = '-';
+ }
+ }
+ return $invoice;
+ }
+
+ //我申请的发票
+ public function index()
+ {
+ if (request()->isAjax()) {
+ $param = get_params();
+ $where = [];
+ if (!empty($param['check_status'])) {
+ $where[] = ['i.check_status','=',$param['check_status']];
+ }
+ //按时间检索
+ $start_time = isset($param['start_time']) ? strtotime(urldecode($param['start_time'])) : 0;
+ $end_time = isset($param['end_time']) ? strtotime(urldecode($param['end_time'])) : 0;
+ if ($start_time > 0 && $end_time > 0) {
+ $where[] = ['i.create_time', 'between', [$start_time, $end_time]];
+ }
+ $where[] = ['i.admin_id','=',$this->uid];
+ $list = $this->get_list($where,$param);
+ return table_assign(0, '', $list);
+ } else {
+ return view();
+ }
+ }
+
+ //待审批的发票
+ public function list()
+ {
+ if (request()->isAjax()) {
+ $param = get_params();
+ $status = isset($param['status'])?$param['status']:0;
+ $user_id = $this->uid;
+ //查询条件
+ $map1 = [];
+ $map2 = [];
+ $map1[] = ['', 'exp', Db::raw("FIND_IN_SET('{$user_id}',i.check_admin_ids)")];
+ $map2[] = ['', 'exp', Db::raw("FIND_IN_SET('{$user_id}',i.flow_admin_ids)")];
+
+ if($status == 0){
+ $list = $this->get_list([$map1,$map2],$param,'or');
+ }
+ if($status == 1){
+ $list = $this->get_list($map1,$param);
+ }
+ if($status == 2){
+ $list = $this->get_list($map2,$param);
+ }
+ return table_assign(0, '', $list);
+ } else {
+ return view();
+ }
+ }
+
+ //发票开具
+ public function checkedlist()
+ {
+ if (request()->isAjax()) {
+ $param = get_params();
+ $where = [];
+ if (!empty($param['check_status'])) {
+ $where[] = ['i.check_status','=',$param['check_status']];
+ }
+ else{
+ $where[] = ['i.check_status','in',[2,5,10]];
+ }
+ //按时间检索
+ $start_time = !empty($param['start_time']) ? strtotime(urldecode($param['start_time'])) : 0;
+ $end_time = !empty($param['end_time']) ? strtotime(urldecode($param['end_time'])) : 0;
+ if ($start_time > 0 && $end_time > 0) {
+ $where[] = ['i.create_time', 'between', [$start_time, $end_time]];
+ }
+ $list = $this->get_list($where,$param);
+ return table_assign(0, '', $list);
+ } else {
+ return view();
+ }
+ }
+
+ //添加&编辑
+ public function add()
+ {
+ $param = get_params();
+ if (request()->isAjax()) {
+ $param['check_status'] = 1;
+ $flow_list = Db::name('Flow')->where('id',$param['flow_id'])->value('flow_list');
+ $flow = unserialize($flow_list);
+ if ($param['type'] == 1) {
+ if (!$param['invoice_tax']) {
+ return to_assign(1, '纳税人识别号不能为空');
+ }
+ if (!$param['invoice_bank']) {
+ return to_assign(1, '开户银行不能为空');
+ }
+ if (!$param['invoice_account']) {
+ return to_assign(1, '银行账号不能为空');
+ }
+ if (!$param['invoice_banking']) {
+ return to_assign(1, '银行营业网点不能为空');
+ }
+ if (!$param['invoice_address']) {
+ return to_assign(1, '银地址不能为空');
+ }
+ }
+ if (!empty($param['id']) && $param['id'] > 0) {
+ try {
+ validate(InvoiceCheck::class)->scene('edit')->check($param);
+ } catch (ValidateException $e) {
+ // 验证失败 输出错误信息
+ return to_assign(1, $e->getError());
+ }
+ $param['update_time'] = time();
+
+ //删除原来的审核流程和审核记录
+ Db::name('FlowStep')->where(['action_id'=>$param['id'],'type'=>3,'delete_time'=>0])->update(['delete_time'=>time()]);
+ Db::name('FlowRecord')->where(['action_id'=>$param['id'],'type'=>3,'delete_time'=>0])->update(['delete_time'=>time()]);
+ if (!isset($param['check_admin_ids'])) {
+ if($flow[0]['flow_type'] == 1){
+ //部门负责人
+ $leader = get_department_leader($this->uid);
+ if($leader == 0){
+ return to_assign(1,'审批流程设置有问题:当前部门负责人还未设置,请联系HR或者管理员');
+ }
+ else{
+ $param['check_admin_ids'] = $leader;
+ }
+ }
+ else if($flow[0]['flow_type'] == 2){
+ //上级部门负责人
+ $leader = get_department_leader($this->uid,1);
+ if($leader == 0){
+ return to_assign(1,'审批流程设置有问题:上级部门负责人还未设置,请联系HR或者管理员');
+ }
+ else{
+ $param['check_admin_ids'] = $leader;
+ }
+ }
+ else{
+ $param['check_admin_ids'] = $flow[0]['flow_uids'];
+ }
+ foreach ($flow as $key => &$value){
+ $value['action_id'] = $param['id'];
+ $value['sort'] = $key;
+ $value['type'] = 3;
+ $value['create_time'] = time();
+ }
+ //增加审核流程
+ Db::name('FlowStep')->strict(false)->field(true)->insertAll($flow);
+ }
+ else{
+ $flow_step = array(
+ 'action_id' => $param['id'],
+ 'type' => 3,
+ 'flow_uids' => $param['check_admin_ids'],
+ 'create_time' => time()
+ );
+ //增加审核流程
+ Db::name('FlowStep')->strict(false)->field(true)->insertGetId($flow_step);
+ }
+
+ $res = InvoiceList::where('id', $param['id'])->strict(false)->field(true)->update($param);
+ if ($res !== false) {
+ add_log('edit', $param['id'], $param);
+ return to_assign();
+ } else {
+ return to_assign(1, '操作失败');
+ }
+ } else {
+ try {
+ validate(InvoiceCheck::class)->scene('add')->check($param);
+ } catch (ValidateException $e) {
+ // 验证失败 输出错误信息
+ return to_assign(1, $e->getError());
+ }
+ $admin_id = $this->uid;
+ $param['admin_id'] = $admin_id;
+ $param['did'] = get_login_admin('did');
+ $param['create_time'] = time();
+
+ if (!isset($param['check_admin_ids'])) {
+ if($flow[0]['flow_type'] == 1){
+ //部门负责人
+ $leader = get_department_leader($this->uid);
+ if($leader == 0){
+ return to_assign(1,'审批流程设置有问题:当前部门负责人还未设置,请联系HR或者管理员');
+ }
+ else{
+ $param['check_admin_ids'] = $leader;
+ }
+ }
+ else if($flow[0]['flow_type'] == 2){
+ //上级部门负责人
+ $leader = get_department_leader($this->uid,1);
+ if($leader == 0){
+ return to_assign(1,'审批流程设置有问题:上级部门负责人还未设置,请联系HR或者管理员');
+ }
+ else{
+ $param['check_admin_ids'] = $leader;
+ }
+ }
+ else{
+ $param['check_admin_ids'] = $flow[0]['flow_uids'];
+ }
+ $exid = InvoiceList::strict(false)->field(true)->insertGetId($param);
+ foreach ($flow as $key => &$value){
+ $value['action_id'] = $exid;
+ $value['sort'] = $key;
+ $value['type'] = 3;
+ $value['create_time'] = time();
+ }
+ //增加审核流程
+ Db::name('FlowStep')->strict(false)->field(true)->insertAll($flow);
+ }
+ else{
+ $exid = InvoiceList::strict(false)->field(true)->insertGetId($param);
+ $flow_step = array(
+ 'action_id' => $exid,
+ 'type' => 3,
+ 'flow_uids' => $param['check_admin_ids'],
+ 'create_time' => time()
+ );
+ //增加审核流程
+ Db::name('FlowStep')->strict(false)->field(true)->insertGetId($flow_step);
+ }
+
+
+ if ($exid) {
+ add_log('apply', $exid, $param);
+ return to_assign();
+ } else {
+ return to_assign(1, '操作失败');
+ }
+ }
+ } else {
+ $id = isset($param['id']) ? $param['id'] : 0;
+ if ($id > 0) {
+ $detail = $this->detail($id);
+ View::assign('detail', $detail);
+ }
+ $department = get_login_admin('did');
+ //获取发票审批流程
+ $flows = get_type_flows(7,$department);
+ View::assign('user', get_admin($this->uid));
+ View::assign('id', $id);
+ View::assign('flows', $flows);
+ return view();
+ }
+ }
+
+ //查看
+ public function view()
+ {
+ $id = empty(get_params('id')) ? 0 : get_params('id');
+ $detail = $this->detail($id);
+ $flows = Db::name('FlowStep')->where(['action_id'=>$detail['id'],'type'=>3,'sort'=>$detail['check_step_sort'],'delete_time'=>0])->find();
+ $detail['check_user'] = '-';
+ $check_user_ids = [];
+ if($detail['check_status']<2){
+ if($flows['flow_type']==1){
+ $detail['check_user'] = '部门负责人';
+ $check_user_ids[]=get_department_leader($detail['admin_id']);
+ }
+ else if($flows['flow_type']==2){
+ $detail['check_user'] = '上级部门负责人';
+ $check_user_ids[]=get_department_leader($detail['admin_id'],1);
+ }
+ else{
+ $check_user_ids = explode(',',$flows['flow_uids']);
+ $check_user = Db::name('Admin')->where('id','in',$flows['flow_uids'])->column('name');
+ $detail['check_user'] = implode(',',$check_user);
+ }
+ }
+
+ $is_check_admin = 0;
+ $is_create_admin = 0;
+ if($detail['admin_id'] == $this->uid){
+ $is_create_admin = 1;
+ }
+ if(in_array($this->uid,$check_user_ids)){
+ $is_check_admin = 1;
+ //当前审核节点详情
+ $step = Db::name('FlowStep')->where(['action_id'=>$detail['id'],'type'=>3,'sort'=>$detail['check_step_sort'],'delete_time'=>0])->find();
+ if($step['flow_type'] == 4){
+ $check_count = Db::name('FlowRecord')->where(['action_id'=>$detail['id'],'type'=>3,'step_id'=>$step['id'],'check_user_id'=>$this->uid])->count();
+ if($check_count>0){
+ $is_check_admin = 0;
+ }
+ }
+ }
+ View::assign('is_create_admin', $is_create_admin);
+ View::assign('is_check_admin', $is_check_admin);
+ View::assign('detail', $detail);
+ View::assign('flows', $flows);
+ View::assign('uid', $this->uid);
+ return view();
+ }
+
+ //删除
+ public function delete()
+ {
+ $id = get_params("id");
+ $detail = $this->detail($id);
+ if ($detail['invoice_status'] == 2) {
+ return to_assign(1, "已审核的发票不能删除");
+ }
+ if ($detail['invoice_status'] == 3) {
+ return to_assign(1, "已开具的发票不能删除");
+ }
+ $data['status'] = '-1';
+ $data['id'] = $id;
+ $data['update_time'] = time();
+ if (Db::name('Invoice')->update($data) !== false) {
+ add_log('delete', $id);
+ return to_assign(0, "删除成功");
+ } else {
+ return to_assign(1, "删除失败");
+ }
+ }
+
+ //审核
+ public function check()
+ {
+ $param = get_params();
+ $detail = Db::name('Invoice')->where(['id' => $param['id']])->find();
+ //当前审核节点详情
+ $step = Db::name('FlowStep')->where(['action_id'=>$detail['id'],'type'=>3,'sort'=>$detail['check_step_sort'],'delete_time'=>0])->find();
+ //审核通过
+ if($param['status'] == 1){
+ //多人会签审批
+ if($step['flow_type'] == 4){
+ //查询当前会签记录数
+ $check_count = Db::name('FlowRecord')->where(['action_id'=>$detail['id'],'type'=>3,'step_id'=>$step['id']])->count();
+ //当前会签记应有记录数
+ $flow_count = explode(',', $step['flow_uids']);
+ if(($check_count+1) >=count($flow_count)){
+ $next_step = Db::name('FlowStep')->where(['action_id'=>$detail['id'],'type'=>3,'sort'=>($detail['check_step_sort']+1),'delete_time'=>0])->find();
+ if($next_step){
+ //存在下一步审核
+ $param['check_step_sort'] = $detail['check_step_sort']+1;
+ $param['check_status'] = 1;
+ }
+ else{
+ //不存在下一步审核,审核结束
+ $param['check_status'] = 2;
+ }
+ }
+ }
+ else if($step['flow_type'] == 0){
+ //自由人审批
+ if($param['check_node'] == 2){
+ $next_step = $detail['check_step_sort']+1;
+ $flow_step = array(
+ 'action_id' => $detail['id'],
+ 'sort' => $next_step,
+ 'type' => 3,
+ 'flow_uids' => $param['check_admin_ids'],
+ 'create_time' => time()
+ );
+ $fid = Db::name('FlowStep')->strict(false)->field(true)->insertGetId($flow_step);
+ //下一步审核步骤
+ $param['check_admin_ids'] = $param['check_admin_ids'];
+ $param['check_step_sort'] = $next_step;
+ $param['check_status'] = 1;
+ }
+ else{
+ //不存在下一步审核,审核结束
+ $param['check_status'] = 2;
+ $param['check_admin_ids'] ='';
+ }
+ }
+ else{
+ $next_step = Db::name('FlowStep')->where(['action_id'=>$detail['id'],'type'=>3,'sort'=>($detail['check_step_sort']+1),'delete_time'=>0])->find();
+ if($next_step){
+ //存在下一步审核
+ if($next_step['flow_type'] == 1){
+ $param['check_admin_ids'] = get_department_leader($this->uid);
+ }
+ else if($next_step['flow_type'] == 2){
+ $param['check_admin_ids'] = get_department_leader($this->uid,1);
+ }
+ else{
+ $param['check_admin_ids'] = $next_step['flow_uids'];
+ }
+ $param['check_step_sort'] = $detail['check_step_sort']+1;
+ $param['check_status'] = 1;
+ }
+ else{
+ //不存在下一步审核,审核结束
+ $param['check_status'] = 2;
+ $param['check_admin_ids'] ='';
+ }
+ }
+ //审核通过数据操作
+ $param['last_admin_id'] = $this->uid;
+ $param['flow_admin_ids'] = $detail['flow_admin_ids'].$this->uid.',';
+ $res = Db::name('Invoice')->strict(false)->field('check_step_sort,check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($param);
+ if($res!==false){
+ $checkData=array(
+ 'action_id' => $detail['id'],
+ 'step_id' => $step['id'],
+ 'check_user_id' => $this->uid,
+ 'type' => 3,
+ 'check_time' => time(),
+ 'status' => $param['status'],
+ 'content' => $param['content'],
+ 'create_time' => time()
+ );
+ $aid = Db::name('FlowRecord')->strict(false)->field(true)->insertGetId($checkData);
+ add_log('check', $param['id'], $param);
+ return to_assign();
+ }
+ else{
+ return to_assign(1,'操作失败');
+ }
+ }
+ else if($param['status'] == 2){
+ //拒绝审核,数据操作
+ $param['check_status'] = 3;
+ $param['last_admin_id'] = $this->uid;
+ $param['flow_admin_ids'] = $detail['flow_admin_ids'].$this->uid.',';
+ $param['check_admin_ids'] ='';
+ $res = Db::name('Invoice')->strict(false)->field('check_step_sort,check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($param);
+ if($res!==false){
+ $checkData=array(
+ 'action_id' => $detail['id'],
+ 'step_id' => $step['id'],
+ 'check_user_id' => $this->uid,
+ 'type' => 3,
+ 'check_time' => time(),
+ 'status' => $param['status'],
+ 'content' => $param['content'],
+ 'create_time' => time()
+ );
+ $aid = Db::name('FlowRecord')->strict(false)->field(true)->insertGetId($checkData);
+ add_log('refue', $param['id'], $param);
+ return to_assign();
+ }
+ else{
+ return to_assign(1,'操作失败');
+ }
+ }
+ else if($param['status'] == 3){
+ if($detail['admin_id'] != $this->uid){
+ return to_assign(1,'你没权限操作');
+ }
+ //撤销审核,数据操作
+ $param['check_status'] = 4;
+ $param['check_admin_ids'] ='';
+ $param['check_step_sort'] =0;
+ $res = Db::name('Invoice')->strict(false)->field('check_step_sort,check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($param);
+ if($res!==false){
+ $checkData=array(
+ 'action_id' => $detail['id'],
+ 'step_id' => 0,
+ 'check_user_id' => $this->uid,
+ 'type' => 3,
+ 'check_time' => time(),
+ 'status' => $param['status'],
+ 'content' => $param['content'],
+ 'create_time' => time()
+ );
+ $aid = Db::name('FlowRecord')->strict(false)->field(true)->insertGetId($checkData);
+ add_log('back', $param['id'], $param);
+ return to_assign();
+ }else{
+ return to_assign(1,'操作失败');
+ }
+ }
+ }
+
+
+ //作废
+ public function tovoid()
+ {
+ $param = get_params();
+ if (request()->isAjax()) {
+ if ($param['check_status'] == 10) {
+ $count = Db::name('InvoiceIncome')->where(['inid'=>$param['id'],'status'=>1])->count();
+ if($count>0){
+ return to_assign(1, "发票已经新增有到账记录,请先反到账后再作废发票");
+ }
+ else{
+ $param['update_time'] = time();
+ add_log('tovoid', $param['id'],$param);
+ }
+ }
+ $res = InvoiceList::where('id', $param['id'])->strict(false)->field('check_status')->update($param);
+ if ($res !== false) {
+ return to_assign();
+ } else {
+ return to_assign(1, "操作失败");
+ }
+ }
+ }
+
+ //开具发票
+ public function open()
+ {
+ $param = get_params();
+ if (request()->isAjax()) {
+ $detail = Db::name('Invoice')->where(['id' => $param['id']])->find();
+ if ($detail['check_status'] == 2) {
+ $param['check_status'] = 5;
+ $param['open_admin_id'] = $this->uid;
+ }
+ $param['open_time'] = isset($param['open_time']) ? strtotime(urldecode($param['open_time'])) : 0;
+ $res = InvoiceList::where('id', $param['id'])->strict(false)->field('code,check_status,open_time,open_admin_id,delivery')->update($param);
+ if ($res !== false) {
+ add_log('open', $param['id'],$param);
+ return to_assign();
+ } else {
+ return to_assign(1, "操作失败");
+ }
+ }
+ }
+}
diff --git a/app/finance/event.php b/app/finance/event.php
new file mode 100644
index 0000000..4eff890
--- /dev/null
+++ b/app/finance/event.php
@@ -0,0 +1,5 @@
+
+
-
-
{/block}
{block name="body"}
-