1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609 |
- <?php
- declare (strict_types=1);
- namespace app\admin\controller\project;
- use app\admin\BaseController;
- use app\admin\model\CostProject as CostProjectModel;
- use app\admin\model\ProjectAudit;
- use app\admin\model\Admin;
- use app\admin\model\ProjectFile;
- use app\admin\validate\project\CostProjectValidate;
- use think\App;
- use think\exception\ValidateException;
- use think\facade\Db;
- use think\facade\Session;
- use think\facade\View;
- use app\admin\controller\field\Fieldcompany;
- use app\admin\controller\Pushmessage;
- class CostCompany extends BaseController
- {
- /**
- * 构造函数
- */
- public function __construct(App $app)
- {
- parent::__construct($app);
- $this->Field = new Fieldcompany($this->app);
- $this->model = new CostProjectModel();
- $this->Adminmodel = new Admin();
- $this->uid = get_login_admin('id');
- $this->filemodel = new ProjectFile();
- $this->Pushmessage = new Pushmessage();
- $this->isPay = Db::name("department")->where("id",get_login_admin("unit_name"))->value("is_pay");
- }
- private array $field_name=[
- "engineering_type" => "工程类型",
- "engineering_category" => "工程类别",
- "province" => "省",
- "city" => "市" ,
- "area" => "县" ,
- "project_scale" => "项目规模",
- "fiscal_nature" => "财政性质" ,
- "sent_review_cost" => "送审服务费" ,
- "sent_review_amount" => "送审金额",
- "authorize_amount" => "审定金额" ,
- "review_add_reduce_amount" => "审增减额",
- "review_add_reduce_rate" => "审增减率" ,
- "charge_standard" => "收费标准" ,
- ];
- /**
- * 数据列表
- */
- public function datalist()
- {
- if (request()->isAjax()) {
- $inarr = array();
- $review_unit = $this->model->where("review_unit", get_login_admin("unit_name"))->field('id,review_head,operate_head,operate_team')->select()->toArray();
- for ($i = 0; $i < count($review_unit); $i++) {
- $a = $review_unit[$i];
- $ids = $a["review_head"] . ',' . $a["operate_head"] . ',' . $a["operate_team"];
- $ids = explode(",", $ids);
- $c = in_array($this->uid, $ids);
- if ($c) {
- $inarr[] = $a["id"];
- }
- }
- //$inarr没去重,应该不要紧
- $param = get_params();
- if (isset($param["project_start_time"])) {
- $param["project_start_time"] = $param["project_start_time"] ? strtotime($param["project_start_time"]) : 0;
- }
- if (isset($param["project_end_time"])) {
- $param["project_end_time"] = $param["project_end_time"] ? strtotime($param["project_end_time"]) : 0;
- }
- $where3 = array();
- if (!empty($param['project_status'])) {
- $where3[] = ['project_status', '=', $param['project_status']];
- }
- if (!empty($param['province'])) {
- $where3[] = ['province', '=', $param['province']];
- }
- if (!empty($param['city'])) {
- $where3[] = ['city', '=', $param['city']];
- }
- if (!empty($param['area'])) {
- $where3[] = ['area', '=', $param['area']];
- }
- if (!empty($param['project_end_time'])) {
- $where3[] = ['project_end_time', '<', $param['project_end_time']];
- }
- if (!empty($param['project_start_time'])) {
- $where3[] = ['project_start_time', '>', $param['project_start_time']];
- }
- if (!empty($param['entrust_unit_name'])) {
- $where3[] = ['entrust_unit_name', 'like', '%' . $param['entrust_unit_name']. '%'];
- }
- if (!empty($param['sent_review_unit_name'])) {
- $where3[] = ['sent_review_unit_name', 'like', '%' . $param['sent_review_unit_name']. '%'];
- }
- if (!empty($param['keyword'])) {
- $keyword = $param['keyword'];
- $where3[] = ['project_num|project_name|entrust_maker_name', 'like', '%' . $keyword . '%'];
- }
- $where = [
- ["cp_cost_project.delete_time", "=", 0],
- ["project_status", ">", 3],
- ["review_unit","=",get_login_admin("unit_name")]
- ];
- if($this->isPay==0){
- $where[] = ["project_status","<",8];
- }
- $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit'];
- $order = empty($param['order']) ? 'project_receive_time desc,id desc' : $param['order'];
- $field = $this->Field->get_field_rules_New($this->uid);
- $see_auth = isset($field["see_auth"])?$field["see_auth"]:3;
- $this->see_auth = $see_auth;
- if($see_auth==3){
- $list = $this->model
- ->where($where)->whereIn("id", $inarr)->where($where3)
- ->order($order)->paginate($rows, false, ['query' => $param])
- ->each(function ($item) {
- $item->creator = Db::name("admin")->where("id",$item->creator)->value("nickname");
-
- $red = Db::name("new_msg")->where([["project_id", "=", $item->id], ["uid", "=", $this->uid]])->find();
- if ($red) {
- if ($red["detail"] || $red["comment"] || $red["report"] || $red["record"] || $red["user"] || $red["contact"]) {
- $item->red = 1;
- }
- } else {
- $item->red = 0;
- }
-
- $entrust_head_id = Db::name('department')->where(['id' => $item->entrust_unit])->value('leader_id');
- if (!($item->entrust_head_phone)) {
- $item->entrust_head_phone = Db::name('admin')->where("id", $entrust_head_id)->value("mobile");
- }
- if ( ($item->province&&$item->city&&$item->area)) {
- $item->project_region = $item->province . '-' . $item->city . '-' . $item->area;
- }
- $item->self_id = $this->see_auth;
- //作业人
- $item->operate_name = Db::name("admin")->where("id", $item->operate_head)->value("nickname");
- $operate_team_names = null;
- // halt($item->operate_team);
- //只有一个人会报错
- // dump($item->operate_team);
- $aaa = empty($item->operate_team) ? $item->operate_team : "0";
- // dump($aaa);
- // $aaa = isset($param['id']) ? $param['id'] : 0;
- $operate_team_names_ids = explode(",", $aaa);
- for ($i = 0; $i < count($operate_team_names_ids); $i++) {
- $name = Db::name("admin")->where("id", $operate_team_names_ids[$i])->value("nickname");
- if (!($i == 0)) {
- $name = "," . $name;
- }
- $operate_team_names = $operate_team_names . $name;
- }
- $item->operate_team_names = $operate_team_names;
- });
-
- }elseif ($see_auth==0){
- $list = $this->model
- ->where($where)->whereIn("id", $inarr)->where($where3)
- ->order($order)->paginate($rows, false, ['query' => $param])
- ->each(function ($item) {
- $item->creator = Db::name("admin")->where("id",$item->creator)->value("nickname");
- $red = Db::name("new_msg")->where([["project_id", "=", $item->id], ["uid", "=", $this->uid]])->find();
- if ($red) {
- if ($red["detail"] || $red["comment"] || $red["report"] || $red["record"] || $red["user"] || $red["contact"]) {
- $item->red = 1;
- }
- } else {
- $item->red = 0;
- }
- $entrust_head_id = Db::name('department')->where(['id' => $item->entrust_unit])->value('leader_id');
- if (!($item->entrust_head_phone)) {
- $item->entrust_head_phone = Db::name('admin')->where("id", $entrust_head_id)->value("mobile");
- }
- if ( ($item->province&&$item->city&&$item->area)) {
- $item->project_region = $item->province . '-' . $item->city . '-' . $item->area;
- }
- //作业人
- $item->operate_name = Db::name("admin")->where("id", $item->operate_head)->value("nickname");
- $operate_team_names = null;
- // halt($item->operate_team);
- //只有一个人会报错
- // dump($item->operate_team);
- $aaa = isset($item->operate_team) ? $item->operate_team : "0";
- // dump($aaa);
- // $aaa = isset($param['id']) ? $param['id'] : 0;
- $operate_team_names_ids = explode(",", $aaa);
- for ($i = 0; $i < count($operate_team_names_ids); $i++) {
- $name = Db::name("admin")->where("id", $operate_team_names_ids[$i])->value("nickname");
- if (!($i == 0)) {
- $name = "," . $name;
- }
- $operate_team_names = $operate_team_names . $name;
- }
- $item->operate_team_names = $operate_team_names;
- });
- }else{
- $list = $this->model
- ->where($where)->where($where3)
- ->order($order)->paginate($rows, false, ['query' => $param])
- ->each(function ($item) {
- $item->creator = Db::name("admin")->where("id",$item->creator)->value("nickname");
-
- $red = Db::name("new_msg")->where([["project_id", "=", $item->id], ["uid", "=", $this->uid]])->find();
- if ($red) {
- if ($red["detail"] || $red["comment"] || $red["report"] || $red["record"] || $red["user"] || $red["contact"]) {
- $item->red = 1;
- }
- } else {
- $item->red = 0;
- }
- $entrust_head_id = Db::name('department')->where(['id' => $item->entrust_unit])->value('leader_id');
- if (!($item->entrust_head_phone)) {
- $item->entrust_head_phone = Db::name('admin')->where("id", $entrust_head_id)->value("mobile");
- }
- if ( ($item->province&&$item->city&&$item->area)) {
- $item->project_region = $item->province . '-' . $item->city . '-' . $item->area;
- }
- $item->self_id = $this->see_auth;
- //作业人
- $item->operate_name = Db::name("admin")->where("id", $item->operate_head)->value("nickname");
- $operate_team_names = null;
- // halt($item->operate_team);
- //只有一个人会报错
- // dump($item->operate_team);
- $aaa = isset($item->operate_team) ? $item->operate_team : "0";
-
- // dump($aaa);
- // $aaa = isset($param['id']) ? $param['id'] : 0;
- $operate_team_names_ids = explode(",", $aaa);
- for ($i = 0; $i < count($operate_team_names_ids); $i++) {
- $name = Db::name("admin")->where("id", $operate_team_names_ids[$i])->value("nickname");
- if (!($i == 0)) {
- $name = "," . $name;
- }
- $operate_team_names = $operate_team_names . $name;
- }
- $item->operate_team_names = $operate_team_names;
- });
- }
- return table_assign(0, '', $list);
- } else {
- $field = $this->Field->get_field_rules_New($this->uid);
- $fields = [];
- foreach ($field as $k=>$v){
- if($v!=1){
- $fields[$k] = true;
- }else{
- $fields[$k] = false;
- }
- }
- // halt( json_encode($fields));
- View::assign('field', $fields);
- return view();
- }
- }
- /**
- * 首页临期数据列表
- */
- public function list1(){
- $param = get_params();
- $inarr = array();
- $review_unit = $this->model->where("review_unit", get_login_admin("unit_name"))->field('id,review_head,operate_head,operate_team')->select()->toArray();
- for ($i = 0; $i < count($review_unit); $i++) {
- $a = $review_unit[$i];
- $ids = $a["review_head"] . ',' . $a["operate_head"] . ',' . $a["operate_team"];
- $ids = explode(",", $ids);
- $c = in_array($this->uid, $ids);
- if ($c) {
- $inarr[] = $a["id"];
- }
- }
- $where = [
- ["cp_cost_project.delete_time", "=", 0],
- ["project_status", ">", 4],
- ["project_status", "<", 7],
- ['project_end_time', '<', strtotime('15 days')],
- ['project_end_time', '>', time()],
- ];
- $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit'];
- $order = empty($param['order']) ? 'id desc' : $param['order'];
- $list = $this->model
- ->where($where)->whereIn("id", $inarr)->order($order)
- ->paginate(9999, false, ['query' => $param])
- ->each(function ($item) {
- });
- return table_assign(0, '', $list);
- }
- /**
- * 首页逾期数据列表
- */
- public function list2(){
- $param = get_params();
- $inarr = array();
- $review_unit = $this->model->where("review_unit", get_login_admin("unit_name"))->field('id,review_head,operate_head,operate_team')->select()->toArray();
- for ($i = 0; $i < count($review_unit); $i++) {
- $a = $review_unit[$i];
- $ids = $a["review_head"] . ',' . $a["operate_head"] . ',' . $a["operate_team"];
- $ids = explode(",", $ids);
- $c = in_array($this->uid, $ids);
- if ($c) {
- $inarr[] = $a["id"];
- }
- }
- $where = [
- ["cp_cost_project.delete_time", "=", 0],
- ["project_status", ">=", 4],
- ["project_status", "<=", 7],
- ['project_end_time', '<', time()],
- ];
- $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit'];
- $order = empty($param['order']) ? 'id desc' : $param['order'];
- $list = $this->model
- ->where($where)->whereIn("id", $inarr)
- ->order($order)
- ->paginate(9999, false, ['query' => $param])
- ->each(function ($item) {
- });;
- return table_assign(0, '', $list);
- }
- /**
- * 公司建立项目
- */
- public function add(){
- if (request()->isAjax()) {
- $param = get_params();
- if (isset($param["project_start_time"])) {
- $param["project_start_time"] = $param["project_start_time"] ? strtotime($param["project_start_time"]) : 0;
- }
- if (isset($param["project_end_time"])) {
- $param["project_end_time"] = $param["project_end_time"] ? strtotime($param["project_end_time"]) : 0;
- }
- $param["review_unit"] = get_login_admin("unit_name");
- $param["review_unit_name"] = Db::name("department")->where("id", get_login_admin("unit_name"))->value("title");
- $param["review_head"] = $this->uid;
- $param["review_head_name"] = get_login_admin("nickname");
- $param["review_head_phone"] = get_login_admin("mobile");
- $param["project_status"] = 4;
- $param["maker_type"] = 2;
- $param["creator"] = $this->uid;
- $file_ids = isset($param["file_ids"]) ? $param["file_ids"] : 0;
- unset($param["file_ids"]);
- $file_id = [];
- $insertId = 0;
- try {
- $param['create_time'] = time();
- $insertId = $this->model->strict(false)->field(true)->insertGetId($param);
- if ($file_ids) {
- for ($a = 0; $a < count($file_ids); $a++) {
- $file_id[] = ["id" => $file_ids[$a], "topic_id" => $insertId];
- }
- $this->filemodel->saveAll($file_id);
- }
- add_log('add', $insertId, $param);
- add_project_log("创建项目", $insertId, "创建项目");
- add_user($param["review_head"], $insertId);
- } catch (\Exception $e) {
- return to_assign(1, '操作失败,原因:' . $e->getMessage());
- }
- return to_assign(0, '操作成功', ['aid' => $insertId]);
- }else{
- return view();
- }
- }
- public function save()
- {
- if (request()->isAjax()) {
- $param = get_params();
- // 检验完整性
- try {
- validate(CostProjectValidate::class)->check($param);
- } catch (ValidateException $e) {
- // 验证失败 输出错误信息
- return to_assign(1, $e->getError());
- }
- if (isset($param["plan_time"])) {
- $param["plan_time"] = $param["plan_time"] ? strtotime($param["plan_time"]) : 0;
- }
- if (isset($param["due_time"])) {
- $param["due_time"] = $param["due_time"] ? strtotime($param["due_time"]) : 0;
- }
- $param = array_merge($param, ["status" => 6]);
- // halt($param);
- $this->model->editCostProject($param);
- }
- }
- /**
- * 编辑
- */
- public function edit()
- {
- $param = get_params();
- $param["type"] = isset($param["type"]) ? $param["type"] : 0;
-
- if (request()->isAjax()) {
- // 检验完整性
- // try {
- // validate(CostProjectValidate::class)->check($param);
- // } catch (ValidateException $e) {
- // // 验证失败 输出错误信息
- // return to_assign(1, $e->getError());
- // }
- if (isset($param["project_start_time"])) {
- $param["project_start_time"] = $param["project_start_time"] ? strtotime($param["project_start_time"]) : 0;
- }
- if (isset($param["project_end_time"])) {
- $param["project_end_time"] = $param["project_end_time"] ? strtotime($param["project_end_time"]) : 0;
- }
- if ($param["type"] == 2) {
- $id = isset($param['id']) ? $param['id'] : 0;
- $project_status = $this->model->where("id", $id)->value("project_status");
- //判断当前状态是否是可编辑状态
-
- $detail = $this->model->getCostProjectById($id);
- $file_array = Db::name('ProjectFile')
- ->field('mf.id,mf.topic_id,mf.admin_id,f.name,f.filesize,f.filepath,f.fileext,f.create_time,f.admin_id,a.nickname as admin_name')
- ->alias('mf')
- ->join('File f', 'mf.file_id = f.id', 'LEFT')
- ->join('Admin a', 'mf.admin_id = a.id', 'LEFT')
- ->order('mf.create_time desc')
- ->where(array('mf.topic_id' => $id, 'mf.module' => 'project'))
- ->select()->toArray();
- $comment_type = isset($param["comment_type"])?$param['comment_type'] : 0;
- $comment = Db::name("project_comment")->where("type",$comment_type)
- ->where("project_id", $id)->order('create_time', 'asc')->select();
- $project_log = self::project_log($id);
- // halt($project_log);
- View::assign('project_log', $project_log);
- $field = $this->Field->get_field_rules_new($this->uid);
- $field_edit = $this->Field->get_field_rules_edit_new($this->uid);
- //剩余时间
- $c = $detail['project_end_time']-time();
- if($c>0){
- $advent_time = floor($c / 86400)."天";
- }else{
- $c = -$c;
- $advent_time = floor($c / 86400)."天";
- }
- if (!empty($detail)) {
- View::assign('advent_time', $advent_time);
- View::assign('detail', $detail);
- View::assign('file_array', $file_array);
- View::assign('comment', $comment);
- View::assign('field', $field);
- View::assign('field_edit', $field_edit);
- View::assign('project_five', self::getProjectFive());
- return view();
- } else {
- throw new \think\exception\HttpException(404, '找不到页面');
- }
-
- }
- $field_name = array_keys($this->field_name);
- $ab= $this->model->where("id",$param["id"])->field($field_name)->find()->toArray();
- $c = array_intersect_key($param,$ab);
- $maker_name = get_login_admin("nickname");
- $content = '';
- // $a = [];
- foreach ($c as $key => $value) {
- if($c[$key]!==$ab[$key]){
- // $a[]=$c[$key];
- // $a[]=$ab[$key];
- $ab[$key] = !empty($ab[$key])?$ab[$key]:"无";
- $value = !empty($value)?$value:"无";
-
- $content = $content . $this->field_name[$key]."从".$ab[$key]."修改为".$value.",";
- }
- }
- // halt($a);
- $content =rtrim($content ,",");
- if(!empty($content)){
- $content = $maker_name."将".$content;
- }else{
- $content = "无修改";
- }
- add_project_log('编辑项目', $param['id'],$content,1);
- $this->model->editCostProject($param);
- } else {
- $id = isset($param['id']) ? $param['id'] : 0;
- $project_status = $this->model->where("id", $id)->value("project_status");
- //判断当前状态是否是可编辑状态
- // if ($project_status == 5) {
- $detail = $this->model->getCostProjectById($id);
- $file_array = Db::name('ProjectFile')
- ->field('mf.id,mf.topic_id,mf.admin_id,f.name,f.filesize,f.filepath,f.fileext,f.create_time,f.admin_id,a.nickname as admin_name')
- ->alias('mf')
- ->join('File f', 'mf.file_id = f.id', 'LEFT')
- ->join('Admin a', 'mf.admin_id = a.id', 'LEFT')
- ->order('mf.create_time desc')
- ->where(array('mf.topic_id' => $id, 'mf.module' => 'project'))
- ->select()->toArray();
- $comment_type = isset($param["comment_type"])?$param['comment_type'] : 0;
- $comment = Db::name("project_comment")->where("type",$comment_type)
- ->where("project_id", $id)->order('create_time', 'asc')->select();
- $project_log = self::project_log($id);
- // halt($file_array);
- View::assign('project_log', $project_log);
- $field = $this->Field->get_field_rules_new($this->uid);
- $field_edit = $this->Field->get_field_rules_edit_new($this->uid);
- //剩余时间
- $c = $detail['project_end_time']-time();
- if($c>0){
- $advent_time = floor($c / 86400)."天";
- }else{
- $c = -$c;
- $advent_time = floor($c / 86400)."天";
- }
- $red = Db::name("new_msg")->where([["uid",'=',$this->uid],["project_id","=",$id]])->field('detail,comment,record,report,user,contact')->find();
- if(empty($red)){
- $red = ["detail"=>0,"comment"=>0,"record"=>0,"report"=>0,"user"=>0,"contact"=>0];
- }
- if (!empty($detail)) {
- View::assign('advent_time', $advent_time);
- View::assign('red', $red);
- View::assign('detail', $detail);
- View::assign('file_array', $file_array);
- View::assign('comment', $comment);
- View::assign('project_five', self::getProjectFive());
- View::assign('field', $field);
- View::assign('field_edit', $field_edit);
- return view();
- } else {
- throw new \think\exception\HttpException(404, '找不到页面');
- }
- }
- }
- /**
- * 归档
- */
- public function finish()
- {
- $param = get_params();
- $handle = $this->Pushmessage->handleParam($param);
- $param = $handle['param'];
- $id = isset($param['id']) ? $param['id'] : 0;
- $approver_name = $this->model->where("id", $id)->value("entrust_maker");
- $auditData = [
- "project_id" => $param["id"],
- "project_name" => $this->model->where("id", $id)->value('project_name'),
- "project_type" => "造价项目",
- "audit_name" => "申请归档审核",
- "audit_type" => 1,
- "sponsor" => Db::name('admin')->where("id", $this->uid)->value("nickname"),
- "sponsor_id" => $this->uid,
- "sponsor_unit" => Db::name("department")->where("id", get_login_admin("unit_name"))->value("title"),
- "approver" => $approver_name,
- "approver_name" => Db::name('admin')->where("id", $approver_name)->value("nickname"),
- "remark" => $param["finish_reason"],
- "create_time" => time()
- ];
- ProjectAudit::create($auditData);
- $this->model->where("id", $id)->update(["project_status" => 6]);
- if(empty($handle['financial'])){
- $handle['financial'] = (array)$approver_name;
- }else{
- $handle['financial'] = array_merge($handle['financial'],(array)$approver_name);
- }
- add_project_log("归档审批", $id,"归档审批");
- $this->Pushmessage->pushMessage($id, $handle['financial'], $handle['company']);
- return to_assign(0, "操作成功");
- }
- /**
- * 退审
- */
- public function dismissal()
- {
- $param = get_params();
- $handle = $this->Pushmessage->handleParam($param);
- $param = $handle['param'];
- $id = isset($param['id']) ? $param['id'] : 0;
- if (empty($param["dismissal_reason"])) {
- return to_assign(0, "退审原因不能为空");
- } else {
- $approver_name = $this->model->where("id", $id)->value("entrust_maker");
- $auditData = [
- "project_id" => $param["id"],
- "project_name" => $this->model->where("id", $id)->value('project_name'),
- "project_type" => "造价项目",
- "audit_name" => "申请退审审核",
- "audit_type" => 1,
- "sponsor" => Db::name('admin')->where("id", $this->uid)->value("nickname"),
- "sponsor_id" => $this->uid,
- "sponsor_unit" => Db::name("department")->where("id", get_login_admin("unit_name"))->value("title"),
- "approver" => $approver_name,
- "approver_name" => Db::name('admin')->where("id", $approver_name)->value("nickname"),
- "remark" => $param["dismissal_reason"],
- "create_time" => time()
- ];
- // halt($auditData);
- ProjectAudit::create($auditData);
- $this->model->where("id", $id)->update(["project_status" => 7]);
- add_project_log("退审审批", $id,"退审审批");
- if(empty($handle['financial'])){
- $handle['financial'] = (array)$approver_name;
- }else{
- $handle['financial'] = array_merge($handle['financial'],(array)$approver_name);
- }
- $this->Pushmessage->pushMessage($id, $handle['financial'], $handle['company']);
- return to_assign(0, "操作成功");
- }
- }
- /**
- * 查看信息
- */
- public function read()
- {
- $param = get_params();
- $id = isset($param['id']) ? $param['id'] : 0;
- $detail = $this->model->getCostProjectById($id);
- $comment_type = isset($param["comment_type"])?$param['comment_type'] : 0;
- $comment = Db::name("project_comment")->where("type",$comment_type)
- ->where("project_id", $id)->order('create_time', 'asc')->select();
- $file_array = Db::name('ProjectFile')
- ->field('mf.id,mf.topic_id,mf.admin_id,f.name,f.filesize,f.filepath,f.fileext,f.create_time,f.admin_id,a.nickname as admin_name')
- ->alias('mf')
- ->join('File f', 'mf.file_id = f.id', 'LEFT')
- ->join('Admin a', 'mf.admin_id = a.id', 'LEFT')
- ->order('mf.create_time desc')
- ->where(array('mf.topic_id' => $id, 'mf.module' => 'project'))
- ->select()->toArray();
- $report = Db::name("project_report")->where([["project_id", "=", $id], ["r.status", "=", 1]])->alias("r")->join("admin a", "r.maker_id = a.id")->field("r.*,a.nickname")->select();
- $uid = Db::name("relation")->where("uuid",$id)->column("uid");
- $contract = Db::name("contract")->whereIn("id",$uid)
- ->where("subject_id",get_login_admin("unit_name"))->column("id,name,type,sign_time,sign_name");
- $project_log = self::project_log($id);
- View::assign('project_log', $project_log);
- $field = $this->Field->get_field_rules_new($this->uid);
- $red = Db::name("new_msg")->where([["uid",'=',$this->uid],["project_id","=",$id]])->field('detail,comment,record,report,user,contact')->find();
- if(empty($red)){
- $red = ["detail"=>0,"comment"=>0,"record"=>0,"report"=>0,"user"=>0,"contact"=>0];
- }
- //剩余时间
- $c = $detail['project_end_time']-time();
- if($c>0){
- $advent_time = floor($c / 86400)."天";
- }else{
- $c = -$c;
- $advent_time = floor($c / 86400)."天";
- }
- // dump($field);
- if (!empty($detail)) {
-
- View::assign('advent_time', $advent_time);
- View::assign('detail', $detail);
- View::assign('project_id', $id);
- View::assign('comment', $comment);
- View::assign('contract', $contract);
- View::assign('file_array', $file_array);
- View::assign('report', $report);
- View::assign('field', $field);
- View::assign('red', $red);
- View::assign('project_five', self::getProjectFive());
- return view();
- } else {
- throw new \think\exception\HttpException(404, '找不到页面');
- }
- }
- //获取客户列表
- public function get_customer()
- {
- $param = get_params();
- $where = array();
- if (!empty($param['keywords'])) {
- $where[] = ['id|name', 'like', '%' . $param['keywords'] . '%'];
- }
- $where[] = ['delete_time', '=', 0];
- $where[] = ['status', '=', 1];
- $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit'];
- $list = Db::name('institution')->where('institution_type', 1)->field('id,institution,address')->order('id asc')->where($where)->paginate($rows, false);
- table_assign(0, '', $list);
- }
- //添加附件
- public function add_file()
- {
- $param = get_params();
- $param['create_time'] = time();
- $param['admin_id'] = $this->uid;
- $fid = Db::name('project_file')->strict(false)->field(true)->insertGetId($param);
- }
- //删除
- public function delete_file()
- {
- if (request()->isDelete()) {
- $id = get_params("id");
- $detail = Db::name('ProjectFile')->where('id', $id)->find();
- if (Db::name('ProjectFile')->where('id', $id)->delete() !== false) {
- return to_assign(0, "删除成功");
- } else {
- return to_assign(0, "删除失败");
- }
- } else {
- return to_assign(1, "错误的请求");
- }
- }
- public function project_log($project_id)
- {
- // $project_id = 24;
- $login_admin = get_login_admin();
- $where = array();
- if ($login_admin['user_type'] == 2) {
- $where = [
- ['project_status', '>=', 3],
- ['unit_name', '=', $login_admin['unit_name']],
- ];
- } else {
- if ($login_admin['permission'] != 1) {
- $where = [
- ['unit_name', '=', $login_admin['unit_name']],
- ];
- }
- }
- // dump($where);
- $project_log = Db::name('ProjectLog')->where($where)
- ->where('project_id', $project_id)
- ->order('create_time', 'desc')
- ->select()->toArray();
- // foreach ($project_log as $key => $value) {
- // $project_log[$key]['create_time'] = date("Y-m-d H:i:s", $value['create_time']);
- // if($login_admin['user_type'] != 0){
- // if(str($project_log[$key]['content'], '送审单位承担审核费')){
- // unset($project_log[$key]);
- // }
- // if(str($project_log[$key]['content'], '施工单位负责核减超5%评审费部分')){
- // unset($project_log[$key]);
- // }
- // }
- // }
- // dump($project_log);
- // View::assign('project_log', $project_log);
- // return View();
- return $project_log;
- }
- public function project_user()
- {
- $param = get_params();
- $ids = $this->model->where("id", $param["project_id"])->field("entrust_maker,review_head,operate_head,operate_team")->find()->toArray();
- $idarr = $ids["operate_team"] . ',' . $ids["operate_head"] . ',' . $ids["review_head"] . ',' . $ids["entrust_maker"];
- $idarr = explode(",", $idarr);
- $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit'];
- $list = $this->Adminmodel->whereIn("id", $idarr)->field("id,nickname,unit_name,mobile")->paginate($rows, false, ['query' => $param])
- ->each(function ($item) {
- //获取单位的邮箱,单位信息页没做
- $item->email = Db::name('department')->where(['id' => $item->unit_name])->value('email');
- $type = Db::name('department')->where(['id' => $item->unit_name])->value('type');
- $item->unit_name = Db::name('department')->where(['id' => $item->unit_name])->value('title');
- // dump($type);
- if ($type == 0) {
- $item->unit_type = "委托单位";
- } elseif ($type == 1) {
- $item->unit_type = "送审单位";
- } elseif ($type == 2) {
- $item->unit_type = "评审机构";
- }
- })->toArray();
- $list = $list["data"];
- $shigong = $this->model->where('id', $param["project_id"])->find();
- $time_id_sent = time()-200;
- if ($shigong["sent_review_unit"] !== null ||
- $shigong["sent_review_head"] !== null ||
- $shigong["sent_review_phone"] !== null ||
- $shigong["sent_review_head_email"] !== null
- ) {
- $sent_review_data["id"] = $time_id_sent;
- $sent_review_data["nickname"] = $shigong["sent_review_head_name"];
- $sent_review_data["unit_name"] = $shigong["sent_review_unit_name"];
- $sent_review_data["email"] = $shigong["sent_review_head_email"];
- $sent_review_data["mobile"] = $shigong["sent_review_phone"];
- $sent_review_data["unit_type"] = "送审单位";
- array_push($list, $sent_review_data);
- }
- if(empty($ids['operate_team'])){
- $operate_team[] = '0';
- }else{
- $operate_team = explode(',', $ids['operate_team']);
- }
- for ($i = 0; $i < count($list); $i++) {
- if ($list[$i]['id'] == $ids['entrust_maker']) {
- // dump($list[$i]['id'],$ids['entrust_maker']);
- $list[$i]["type"] = 1;
- } elseif ($list[$i]['id'] == $ids['review_head']) {
- $list[$i]["type"] = 2;
- } elseif ($list[$i]['id'] == $ids['operate_head']) {
- $list[$i]["type"] = 3;
- } elseif (in_array($list[$i]['id'], $operate_team)) {
- $list[$i]["type"] = 4;
- } elseif ($list[$i]['id'] !== time() - 1000) {
- $list[$i]["type"] = 6;
- }
- }
- $type = array_column($list, 'type');
- array_multisort($type, SORT_ASC, $list);
- $lists["total"] = count($list);
- $lists["data"] = $list;
- return table_assign(0, '', $lists);
- }
- // 财政局接口
- public function remove_user()
- {
- $param = get_params();
- if ($param["type"] == 3) {
- $this->model->where("id", $param["project_id"])->update(["operate_head" => 0]);
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- add_project_log("移除项目负责人",$param["project_id"],$name,5);
- remove_user($param["id"]);
- return to_assign(0, '操作成功');
- }
- if ($param["type"] == 4) {
- $idarr = $this->model->where("id", $param["project_id"])->value("operate_team");
- $idarr = explode(",", $idarr);
- $key = array_search($param["id"], $idarr);
- unset($idarr[$key]);
- $str = implode(',', $idarr);
- $this->model->where("id", $param["project_id"])->update(["operate_team" => $str]);
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- remove_user($param["id"]);
- add_project_log("移除项目成员",$param["project_id"],$name,5);
- return to_assign(0, '操作成功');
- }
- return to_assign(0, '操作失败');
- }
- // 公司接口
- public function remove_user_company()
- {
- $param = get_params();
- if ($param["type"] == 3) {
- $this->model->where("id", $param["project_id"])->update(["operate_head" => 0,"operate_head_name"=>null]);
- $operate_team = $this->model->where("id", $param["project_id"])->value("operate_team");
- if(empty($operate_team)){
- $this->model->where("id", $param["project_id"])->update(["project_status" => 4]);
- }
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- $content = get_login_admin("nickname")."移除了作业负责人".$name;
- add_project_log("移除项目负责人",$param["project_id"],$content,5);
- remove_user($param["id"]);
- return to_assign(0, '操作成功');
- }
- if ($param["type"] == 4) {
- $idarr = $this->model->where("id", $param["project_id"])->value("operate_team");
- $idarr = explode(",", $idarr);
- $key = array_search($param["id"], $idarr);
- unset($idarr[$key]);
- $str = implode(',', $idarr);
- $this->model->where("id", $param["project_id"])->update(["operate_team" => $str]);
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- $operate_head = $this->model->where("id", $param["project_id"])->value("operate_head");
- if($operate_head==0&&empty($str)){
- $this->model->where("id", $param["project_id"])->update(["project_status" => 4]);
- }
- add_project_log("移除项目成员",$param["project_id"],$name,5);
- remove_user($param["id"]);
- return to_assign(0, '操作成功');
- }
- return to_assign(0, '操作失败');
- }
- // 公司接口
- public function add_company_user()
- {
- //都没做原来就有的校验
- $param = get_params();
- if ($param["type"] == 1) {
- $a=$this->model->where("id", $param["project_id"])->value("operate_head");
- if($a){
- return to_assign(1, '已有负责人,请移除后再添加');
- }
- $b=$this->model->where("id", $param["project_id"])->value("review_head");
- if($b==$param["id"]){
- return to_assign(1, '已是评审单位负责人,请移除后再添加');
- }
- $c = $this->model->where("id", $param["project_id"])->value("operate_team");
- if($c){
- $c = explode(",", $c);
- if(in_array($param["id"],$c)){
- return to_assign(1, '已是作业成员,不可再添加');
- }
- }
- $this->model->where("id", $param["project_id"])->update(["operate_head" => $param["id"],"project_status" => 5]);
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- add_user($param["id"],$param["project_id"]);
- add_project_log("新增了作业负责人",$param["project_id"],$name,5);
- return to_assign(0, '操作成功');
- } elseif ($param["type"] == 2) {
- $a=$this->model->where("id", $param["project_id"])->value("sent_review_head");
- if($a){
- return to_assign(1, '已有负责人,请移除后再添加');
- }
- $data=[
- "sent_review_unit" =>get_admin($param["id"])["unit_name"],
- "sent_review_unit_name" =>Db::name("department")->where("id",get_admin($param["id"])["unit_name"])->value("title"),
- "sent_review_head" => $param["id"],
- "sent_review_head_name" => get_admin($param["id"])["nickname"],
- "sent_review_phone"=>get_admin($param["id"])["mobile"]
- ];
- $this->model->where('id', $param["project_id"])->update($data);
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- add_user($param["id"],$param["project_id"]);
- add_project_log("新增了送审单位负责人",$param["project_id"],$name,5);
- return to_assign(0, "操作成功");
- }
- }
- // 财政局接口
- public function add_user()
- {
- $param = get_params();
- if ($param["type"] == 1) {
- $a=$this->model->where("id", $param["project_id"])->value("operate_head");
- if($a){
- return to_assign(1, '已有负责人,请移除后再添加');
- }
- $b=$this->model->where("id", $param["project_id"])->value("review_head");
- if($b==$param["id"]){
- return to_assign(1, '已是评审单位负责人,请移除后再添加');
- }
- $c = $this->model->where("id", $param["project_id"])->value("operate_team");
- if($c){
- $c = explode(",", $c);
- if(in_array($param["id"],$c)){
- return to_assign(1, '已是作业成员,不可再添加');
- }
- }
- $this->model->where("id", $param["project_id"])->update(["operate_head" => $param["id"]]);
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- add_user($param["id"],$param["project_id"]);
- add_project_log("新增了作业负责人",$param["project_id"],$name,5);
- return to_assign(0, '操作成功');
- } elseif ($param["type"] == 2) {
- $a=$this->model->where("id", $param["project_id"])->value("sent_review_head");
- if($a){
- return to_assign(1, '已有负责人,请移除后再添加');
- }
- $data=[
- "sent_review_unit" =>get_admin($param["id"])["unit_name"],
- "sent_review_unit_name" =>Db::name("department")->where("id",get_admin($param["id"])["unit_name"])->value("title"),
- "sent_review_head" => $param["id"],
- "sent_review_head_name" => get_admin($param["id"])["nickname"],
- "sent_review_phone"=>get_admin($param["id"])["mobile"]
- ];
- $this->model->where('id', $param["project_id"])->update($data);
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- add_project_log("新增了送审单位负责人",$param["project_id"],$name,5);
- add_user($param["id"],$param["project_id"]);
- return to_assign(0, "操作成功");
- }
- }
- public function add_user_company_head(){
- $param = get_params();
- $handle = $this->Pushmessage->handleParam($param);
- $param = $handle['param'];
- $a=$this->model->where("id", $param["project_id"])->value("review_head");
- if($a){
- return to_assign(1, '已有联系人,请移除后再添加');
- }
- $a=$this->model->where("id", $param["project_id"])->field("operate_head,operate_team")->find();
- $b = $a["operate_head"];
- if($b==$param["id"]){
- return to_assign(1, '已是作业负责人,请移除后再添加');
- }
- $c = $a["operate_team"];
- if($c){
- $c = explode(",", $c);
- if(in_array($param["id"],$c)){
- return to_assign(1, '已是作业成员,不可再添加');
- }
- }
- $name = Db::name("admin")->where("id",$param["id"])->field("nickname,mobile")->find();
- $this->model->where("id", $param["project_id"])->update(["review_head" => $param["id"],"review_head_name"=>$name["nickname"],"review_head_phone"=>$name["mobile"]]);
- $this->Pushmessage->pushMessage($param['project_id'], $handle['financial'], (array)$param['id']);
- add_project_log("新增项目成员",$param["project_id"],$name["nickname"],5);
- add_user($param["id"],$param["project_id"]);
- return to_assign(0, '操作成功');
- }
- // 公司接口
- public function add_user_company_type1()
- {
- $param = get_params();
- $handle = $this->Pushmessage->handleParam($param);
- $param = $handle['param'];
- if ($param["type"] == 1) {
- $a=$this->model->where("id", $param["project_id"])->value("operate_head");
- if($a){
- return to_assign(1, '已有负责人,请移除后再添加');
- }
- $a=$this->model->where("id", $param["project_id"])->field("review_head,operate_team")->find();
- $b = $a["review_head"];
- if($b==$param["id"]){
- return to_assign(1, '已是评审单位负责人,请移除后再添加');
- }
- $c = $a["operate_team"];
- if($c){
- $c = explode(",", $c);
- if(in_array($param["id"],$c)){
- return to_assign(1, '已是作业成员,不可再添加');
- }
- }
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- $this->model->where("id", $param["project_id"])->update(["operate_head" => $param["id"],"project_status" => 5,"operate_head_name"=>$name]);
- $content = get_login_admin("nickname")."新增了作业负责人".$name;
- $this->Pushmessage->pushMessage($param['project_id'], $handle['financial'], (array)$param['id']);
- add_project_log("新增项目成员",$param["project_id"],$content,5);
- add_user($param["id"],$param["project_id"]);
- return to_assign(0, '操作成功');
- } elseif ($param["type"] == 2) {
- $b=$this->model->where("id", $param["project_id"])->value("review_head");
- if($b==$param["id"]){
- return to_assign(1, '已是评审单位负责人,请移除后再添加');
- }
- $a=$this->model->where("id", $param["project_id"])->value("operate_head");
- if($a==$param["id"]){
- return to_assign(1, '已是负责人,不可再添加');
- }
- $ids = $this->model->where("id", $param["project_id"])->value("operate_team");
- if($ids){
- $idarr = explode(",", $ids);
- if(in_array($param["id"],$idarr)){
- return to_assign(1, '已存在,不可再添加');
- }
- }
- $ids = !empty($ids)?$ids:0;
- if ($ids == 0) {
- $ids = $param["id"];
- } else {
- $ids = $ids . "," . $param["id"];
- }
- $this->model->where('id', $param["project_id"])->update(["operate_team" => $ids,"project_status" => 5]);
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- $this->Pushmessage->pushMessage($param['project_id'], $handle['financial'], (array)$param['id']);
- add_project_log("新增项目成员",$param["project_id"],$name,5);
- add_user($param["id"],$param["project_id"]);
- return to_assign(0, "操作成功");
- }elseif ($param["type"] == 3) {
- $a=$this->model->where("id", $param["project_id"])->value("review_head");
- if($a){
- return to_assign(1, '已有联系人,请移除后再添加');
- }
- $a=$this->model->where("id", $param["project_id"])->field("operate_head,operate_team")->find();
- $b = $a["operate_head"];
- if($b==$param["id"]){
- return to_assign(1, '已是作业负责人,请移除后再添加');
- }
- $c = $a["operate_team"];
- if($c){
- $c = explode(",", $c);
- if(in_array($param["id"],$c)){
- return to_assign(1, '已是作业成员,不可再添加');
- }
- }
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- $this->model->where("id", $param["project_id"])->update(["operate_head" => $param["id"],"operate_head_name"=>$name]);
- $this->Pushmessage->pushMessage($param['project_id'], $handle['financial'], (array)$param['id']);
- add_project_log("新增项目成员",$param["project_id"],$name,5);
- add_user($param["id"],$param["project_id"]);
- return to_assign(0, '操作成功');
- }
- }
- // 公司接口
- public function add_user_company_type2()
- {
- $param = get_params();
- $handle = $this->Pushmessage->handleParam($param);
- $param = $handle['param'];
- if ($param["type"] == 1) {
- $a=$this->model->where("id", $param["project_id"])->value("operate_head");
- if($a){
- return to_assign(1, '已有负责人,请移除后再添加');
- }
- $b=$this->model->where("id", $param["project_id"])->value("review_head");
- if($b==$param["id"]){
- return to_assign(1, '已是评审单位负责人,请移除后再添加');
- }
- $c = $this->model->where("id", $param["project_id"])->value("operate_team");
- if($c){
- $c = explode(",", $c);
- if(in_array($param["id"],$c)){
- return to_assign(1, '已是作业成员,不可再添加');
- }
- }
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- $this->model->where("id", $param["project_id"])->update(["operate_head" => $param["id"],"project_status" => 5,"operate_head_name"=>$name]);
- $content = get_login_admin("nickname")."新增了作业负责人".$name;
- $this->Pushmessage->pushMessage($param['project_id'], $handle['financial'], (array)$param['id']);
- add_project_log("新增项目成员",$param["project_id"],$content,5);
- add_user($param["id"],$param["project_id"]);
- return to_assign(0, '操作成功');
- } elseif ($param["type"] == 2) {
- $b=$this->model->where("id", $param["project_id"])->value("review_head");
- if($b==$param["id"]){
- return to_assign(1, '已是评审单位负责人,请移除后再添加');
- }
- $a=$this->model->where("id", $param["project_id"])->value("operate_head");
- if($a==$param["id"]){
- return to_assign(1, '已是作业负责人,请移除后再添加');
- }
- $ids = $this->model->where("id", $param["project_id"])->value("operate_team");
- if($ids){
- $idarr = explode(",", $ids);
- if(in_array($param["id"],$idarr)){
- return to_assign(1, '已存在,不可再添加');
- }
- }
- $ids = !empty($ids)?$ids:0;
- if ($ids == 0) {
- $ids = $param["id"];
- } else {
- $ids = $ids . "," . $param["id"];
- }
- $this->model->where('id', $param["project_id"])->update(["operate_team" => $ids,"project_status" => 5]);
- $this->Pushmessage->pushMessage($param['project_id'], $handle['financial'], (array)$param['id']);
- $name = Db::name("admin")->where("id",$param["id"])->value("nickname");
- $content = get_login_admin("nickname")."新增了作业成员".$name;
- $this->Pushmessage->pushMessage($param['project_id'], $handle['financial'], (array)$param['id']);
- add_project_log("新增项目成员",$param["project_id"],$content,5);
- add_user($param["id"],$param["project_id"]);
- return to_assign(0, "操作成功");
- }
- }
- public function add_entrust_people(){
- if (request()->isAjax()) {
- $param = get_params();
- $id = isset($param["id"])?$param["id"]:0;
- $project_id = isset($param["project_id"])?$param["project_id"]:0;
- $selfData = get_admin($id);
- $data = [
- "id" => $project_id,
- "entrust_maker" => $id,
- "entrust_maker_name" => $selfData["nickname"],
- "entrust_unit" => $selfData["unit_name"],
- "entrust_unit_name" => Db::name("department")->where("id",$selfData["unit_name"])->value("title")
- ];
- try{
- $this->model->update($data);
- } catch (\Exception $e) {
- return to_assign(1, '操作失败,原因:' . $e->getMessage());
- }
- return to_assign(0, "操作成功");
- }
- }
- public function add_sent_review_unit()
- {
- if (request()->isAjax()) {
- $param = get_params();
- if ($param['type'] == '1') {
- $data = $this->model->where('id', $param['data']['id'])->find();
- if ($data["sent_review_unit_name"] !== null ||
- $data["sent_review_head_name"] !== null ||
- $data["sent_review_head_email"] !== null ||
- $data["sent_review_phone"] !== null
- ) {
- return to_assign(0, "已存在,请移除后再添加");
- } else {
- return to_assign(200, "请上传!!");
- }
- } else {
- add_project_log('移除送审单位成员', $param['data']['id'], $param['data']["sent_review_head_name"], 5);
- $this->model->addConstructionPeople($param['data']);
- }
- } else {
- $param = get_params();
- $project_id = isset($param['project_id']) ? $param['project_id'] : 0;
- //关联项目id
- View::assign('project_id', $project_id);
- return view();
- }
- }
- /*public function add_sent_review_unit()
- {
- if (request()->isAjax()) {
- $param = get_params();
- $id = isset($param["id"]) ? $param["id"] : 0;
- $project_id = isset($param["project_id"]) ? $param["project_id"] : 0;
- $a = $this->model->where("id", $project_id)->value("sent_review_head");
- if ($a) {
- return to_assign(1, '已有负责人,请移除后再添加');
- }
- $selfData = get_admin($id);
- $data = [
- "id" => $project_id,
- "sent_review_head" => $id,
- "sent_review_head_name" => $selfData["nickname"],
- "sent_review_unit" => $selfData["unit_name"],
- "sent_review_unit_name" => Db::name("department")->where("id", $selfData["unit_name"])->value("title"),
- "sent_review_phone" => $selfData["mobile"]
- ];
- try {
- $this->model->update($data);
- } catch (\Exception $e) {
- return to_assign(1, '操作失败,原因:' . $e->getMessage());
- }
- return to_assign(0, "操作成功");
- }
- }*/
- //公司
- public function remove_sent_review(){
- $p = get_params();
- $data = [
- "sent_review_unit" => null,
- "sent_review_unit_name" => null,
- "sent_review_head_name" => null,
- "sent_review_head" => null,
- "sent_review_phone" => null,
- "sent_review_head_email" => null,
- ];
- $this->model->where("id",$p["project_id"])->update($data);
- remove_user($p["id"]);
- add_project_log('移除送审单位成员',$p["project_id"],$p["nickname"],5);
- return to_assign(0,"操作成功");
- }
- //公司
- public function remove_review_head(){
- $p = get_params();
- $data = [
- "review_head" => null,
- "review_head_name" => null,
- "review_head_phone" => null,
- ];
- $this->model->where("id",$p["project_id"])->update($data);
- $name= Db::name("admin")->where("id",$p["id"])->value("nickname");
- remove_user($p["id"]);
- add_project_log('移除送审单位成员',$p["project_id"],$name,5);
- return to_assign(0,"操作成功");
- }
- public function get_department_tree()
- {
- $unit_id = get_unit(get_login_admin("unit_name"));
- $department = Db::name('Department')->where(['status' => 1])->select()->toArray();
- $list = get_tree($department, 0, 2);
- $data['trees'] = $list;
- $result = null;
- for ($i = 0; $i < count($data['trees']); $i++) {
- $point = $data['trees'][$i];
- if ($point["id"] == $unit_id) {
- $result['trees'][] = $point;
- break;
- }
- }
- // halt($result);
- return json($result);
- }
- //获取子部门所有员工
- public function get_employee()
- {
- $did = get_params('did');
- if ($did == 1) {
- $department = $did;
- } else {
- $department = get_department_son(get_login_admin("unit_name"));
- }
- // halt($department);
- $employee = Db::name('admin')
- ->field('a.id,a.did,a.position_id,a.mobile,a.nickname,a.status,a.thumb,a.username,d.title as department')
- ->alias('a')
- ->join('Department d', 'a.did = d.id')
- ->where(['a.status' => 1])
- ->where('a.id', ">", 1)
- ->where('a.did', "in", $department)
- ->select();
- // $employee = $employee->map(function ($employee) {
- // $employee['name'] = $employee["nickname"];
- // return $employee;
- // });
- return to_assign(0, '', $employee);
- }
- public function get_yezhu_tree()
- {
- // $unit_id = get_unit(get_login_admin("unit_name"));
- $yezhulist = Db::name('Department')->where(['status' => 1, 'type' => 1])->select()->toArray();
- $list = get_tree($yezhulist, 0, 2);
- $data['trees'] = $list;
- return json($data);
- }
- //获取子部门所有员工
- public function get_people($did = 1)
- {
- $did = get_params('did');
- if ($did == 1) {
- $department = $did;
- } else {
- $department = get_department_son($did);
- }
- $employee = Db::name('admin')
- ->field('a.id,a.did,a.position_id,a.mobile,a.nickname,a.status,a.thumb,a.username,d.title as department')
- ->alias('a')
- ->join('Department d', 'a.did = d.id')
- ->where(['a.status' => 1])
- ->where('a.id', ">", 1)
- ->where('a.did', "in", $department)
- ->select();
- // $employee = $employee->map(function ($employee) {
- // $employee['name'] = $employee["nickname"];
- // return $employee;
- // });
- return to_assign(0, '', $employee);
- }
- public function getProjectFive(){
- $where = [
- ['name', '=', '作业日志-公司'],
- ['name', '=', '工作记录-公司'],
- ['name', '=', '项目报告-公司'],
- ['name', '=', '项目人员-公司'],
- ['name', '=', '项目动态-公司'],
- ['name', '=', '项目附件-公司'],
- ['name', '=', '联系函-公司'],
- ];
- $list = Db::name('AdminRule')->whereOr($where)->field('id,name')->select()->toArray();
- $group_id = Db::name('AdminGroupAccess')->where('uid', get_login_admin('id'))->value('group_id');
- $login_rules = Db::name('AdminGroup')->where('id', $group_id)->value('rules');
- $login_rules = explode(',', $login_rules);
- $rules_id = array();
- foreach($list as $key => $value){
- if($value['name'] == "作业日志-公司"){
- if(in_array($value['id'], $login_rules)){
- $rules_id['project_comments'] = 1;
- }else{
- $rules_id['project_comments'] = 0;
- }
- }else if($value['name'] == "工作记录-公司"){
- if(in_array($value['id'], $login_rules)){
- $rules_id['project_record'] = 1;
- }else{
- $rules_id['project_record'] = 0;
- }
- }else if($value['name'] == "项目报告-公司"){
- if(in_array($value['id'], $login_rules)){
- $rules_id['project_report'] = 1;
- }else{
- $rules_id['project_report'] = 0;
- }
- }else if($value['name'] == "项目人员-公司"){
- if(in_array($value['id'], $login_rules)){
- $rules_id['project_user'] = 1;
- }else{
- $rules_id['project_user'] = 0;
- }
- }else if($value['name'] == "项目动态-公司"){
- if(in_array($value['id'], $login_rules)){
- $rules_id['project_log'] = 1;
- }else{
- $rules_id['project_log'] = 0;
- }
- }else if($value['name'] == "项目附件-公司"){
- if(in_array($value['id'], $login_rules)){
- $rules_id['project_file'] = 1;
- }else{
- $rules_id['project_file'] = 0;
- }
- }else if($value['name'] == "联系函-公司"){
- if(in_array($value['id'], $login_rules)){
- $rules_id['project_contact'] = 1;
- }else{
- $rules_id['project_contact'] = 0;
- }
- }
- }
-
- return $rules_id;
- }
-
- public function ceshi($id)
- {
- View::assign('detailId', $id);
- return view();
- }
-
- }
|