12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361 |
- <?php
- declare (strict_types=1);
- namespace app\mobile\controller;
- use app\admin\BaseController;
- use app\admin\controller\field\Field;
- use app\admin\model\Admin;
- use app\admin\model\Admin as AdminList;
- use app\admin\model\Appointment as AppointmentModel;
- use app\admin\model\Contact;
- use app\admin\model\Contact as ContactModel;
- use app\admin\model\CostProject as CostProjectModel;
- use app\admin\model\ProjectAudit as AuditModel;
- use app\admin\model\ProjectRecord;
- use think\App;
- use think\facade\Db;
- use think\facade\Request;
- use think\facade\Session;
- use think\facade\View;
- use app\admin\model\Appropriation as AppropriationModel;
- use app\admin\controller\datastat\Datastat;
- class Temporary extends BaseController
- {
- /**
- * 构造函数
- */
- public function __construct(App $app)
- {
- $this->Datastat = new Datastat($app);
- $this->AppropriationModel = new AppropriationModel();
- $this->Field = new Field($app);
- $this->model = new CostProjectModel();
- $this->Adminmodel = new Admin();
- $this->Auditmodel = new AuditModel();
- $this->ContactModel = new ContactModel();
- $this->AppointmentModel = new AppointmentModel();
- $this->uid = get_login_admin('id');
- $this->unit = get_login_admin('unit_name');
- $this->user_tpe = Db::name("department")->where("id", $this->unit)->value("type");
- // $session_admin = get_config('app.session_admin');
- // $request = Request::instance();
- // if (!Session::has($session_admin) && $request->url() !== '/mobile/index/login.html') {
- // redirect('/mobile/index/login.html')->send();
- // exit;
- // }
- }
- /**
- *个人资料
- */
- public function person()
- {
- $person = get_login_admin();
- $red = $this->Auditmodel->where("approver", $this->uid)->where("audit_status", 1)->count();
- $red_id = Db::name("new_msg")->where("uid", "=", $this->uid)->select();
- $red_kan = 0;
- foreach ($red_id as $item => $value) {
- if ($value["detail"] || $value["comment"] || $value["report"] || $value["user"] || $value["contact"]) {
- $red_kan = 1;
- }
- }
- View::assign("red_kan", $red_kan);
- View::assign('red', $red);
- View::assign('person', $person);
- return view();
- }
- /**
- * cp看板内容
- */
- public function detail()
- {
- $param = get_params();
- $id = isset($param['id']) ? $param['id'] : 0;
- $type = isset($param['type']) ? $param['type'] : 0;
- $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit'];
- $order = empty($param['order']) ? 'a.id desc' : $param['order'];
- $detail = $this->model->getCostProjectById($id);
- $comment = Db::name("project_comment")->where("project_id", $id)->order('create_time', 'desc')->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]])
- ->alias("r")->join("admin a", "r.maker_id = a.id")
- ->field("r.*,a.nickname")
- ->select();
- $contact = $this->ContactModel->where([['project_id', '=', $id]])
- ->field('a.*,u.nickname as admin_name,f.name,f.filesize,f.filepath,f.fileext,f.admin_id')
- ->alias('a')
- ->join('file f', "a.file = f.id", "left")
- ->join('Admin u', 'a.maker_id = u.id', "left")
- ->order($order)
- ->paginate(9999, false, ['query' => $param])
- ->each(function ($item, $key) {
- })->toArray();
- $contact = $contact['data'];
- $where = [
- ["cp_project_record.delete_time", "=", 0],
- ["project_id", "=", $id],
- ["maker_id", "=", get_login_admin('id')]
- ];
- $record = Db::name('project_record')->where($where)
- ->field('a.*,u.nickname as admin_name')
- ->alias('a')
- ->join('Admin u', 'a.maker_id = u.id', "left")
- ->order($order)
- ->select();
- //2是公司,0是财政局,1是业主
- $unit_type = Db::name("department")->where("id", get_login_admin("unit_name"))->value("type");
- if ($unit_type == 0) {
- $person = self::user($id);
- View::assign('project_five', self::getProjectFive());
- } elseif ($unit_type == 2) {
- $person = self::user($id);
- View::assign('project_five', self::getProjectFiveCompany());
- } else {
- $person = 0;
- View::assign('project_five', self::getProjectFiveYezhu());
- }
- $appropriation_uid = Db::name("appropriation_project")->where("project_id", $id)->value("uid");
- if (empty($appropriation_uid)) {
- $appropriation_data = [];
- $appropriation_file_array = [];
- } else {
- $where = [
- ["id", "=", $appropriation_uid],
- ["status", ">", 0]
- ];
- //请款
- $appropriation = Db::name("appropriation")->where($where)->find();
- if (!empty($appropriation)) {
- $projects = Db::name("appropriation_project")->alias("a")
- ->leftJoin("cost_project c", "a.project_id=c.id")
- ->where("uid", $appropriation["id"])->column("c.project_name,c.sent_review_cost");
- $data = [];
- $appropriation_amount = 0;
- for ($i = 0; $i < count($projects); $i++) {
- $v = $projects[$i];
- $b = $i + 1;
- $appropriation_amount += $v["sent_review_cost"];
- $data[] = $b . "." . $v["project_name"];
- }
- $appropriation_data = $appropriation;
- $appropriation_data["appropriation_amount"] = $appropriation_amount;
- $appropriation_data["project_name"] = $data;
- $appropriation_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' => $appropriation_uid, 'mf.module' => 'appropriation'))
- ->select()->toArray();
- } else {
- $appropriation_data = [];
- $appropriation_file_array = [];
- }
- }
- $project_log = self::project_log($id);
- $red = Db::name("new_msg")->where([["uid", '=', $this->uid], ["project_id", "=", $id]])->field('detail,comment,report,user,contact')->find();
- if (empty($red)) {
- $red = ["detail" => 0, "comment" => 0, "report" => 0, "user" => 0, "contact" => 0];
- }
- $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;
- }
- }
- if($this->user_tpe==2){
- $fields["sent_review_approver_amount"] = false;
- $fields["construction_approver_amount"] = false;
- }
- $appointmentList = $this->AppointmentModel->where("project_id",$id)->paginate(9999, false, ['query' => $param])
- ->order("create_time","desc")
- ->each(function ($item) {
- if($item->sponsor_unit==get_login_admin("unit_name")){
- $item->operate = false;
- }else{
- $item->operate = true;
- }
- });;
- // halt($appointmentList->toArray());
- View::assign('field', $fields);
- if (!empty($detail)) {
- View::assign('appointmentList', $appointmentList);
- View::assign('project_log', $project_log);
- View::assign('project_id', $id);
- View::assign('comment', $comment);
- View::assign('record', $record);
- View::assign('contact', $contact);
- View::assign('detail', $detail);
- View::assign('appropriation', $appropriation_data);
- View::assign('file_array', $file_array);
- View::assign('appropriation_file_array', $appropriation_file_array);
- View::assign('report', $report);
- View::assign('person', $person);
- View::assign('red', $red);
- View::assign('unit_type', $unit_type);
- return view();
- } else {
- throw new \think\exception\HttpException(404, '找不到页面');
- }
- }
- /**
- * cp代办内容
- */
- public function pdetail()
- {
- $param = get_params();
- $id = isset($param['id']) ? $param['id'] : 0;
- $type = isset($param['type']) ? $param['type'] : 0;
- $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit'];
- $order = empty($param['order']) ? 'a.id desc' : $param['order'];
- $detail = $this->model->getCostProjectById($id);
- $comment = Db::name("project_comment")->where("project_id", $id)->order('create_time', 'desc')->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();
- $contact = $this->ContactModel->where([['project_id', '=', $id]])
- ->field('a.*,u.nickname as admin_name,f.name,f.filesize,f.filepath,f.fileext,f.admin_id')
- ->alias('a')
- ->join('file f', "a.file = f.id", "left")
- ->join('Admin u', 'a.maker_id = u.id', "left")
- ->order($order)
- ->paginate(9999, false, ['query' => $param])
- ->each(function ($item, $key) {
- })->toArray();
- $contact = $contact['data'];
- $where = [
- ["cp_project_record.delete_time", "=", 0],
- ["project_id", "=", $id],
- ["maker_id", "=", get_login_admin('id')]
- ];
- $record = Db::name('project_record')->where($where)
- ->field('a.*,u.nickname as admin_name')
- ->alias('a')
- ->join('Admin u', 'a.maker_id = u.id', "left")
- ->order($order)
- ->select();
- //2是公司,0是财政局,1是业主
- $unit_type = Db::name("department")->where("id", get_login_admin("unit_name"))->value("type");
- if ($unit_type == 0) {
- $person = self::user($id);
- View::assign('project_five', self::getProjectFive());
- } elseif ($unit_type == 2) {
- $person = self::user($id);
- View::assign('project_five', self::getProjectFiveCompany());
- } else {
- $person = 0;
- View::assign('project_five', self::getProjectFiveYezhu());
- }
- $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;
- }
- }
- if($this->user_tpe==2){
- $fields["sent_review_approver_amount"] = false;
- $fields["construction_approver_amount"] = false;
- }
- View::assign('field', $fields);
- $project_log = self::project_log($id);
- // halt($detail);
- if (!empty($detail)) {
- View::assign('project_log', $project_log);
- View::assign('project_id', $id);
- View::assign('comment', $comment);
- View::assign('record', $record);
- View::assign('contact', $contact);
- View::assign('detail', $detail);
- View::assign('file_array', $file_array);
- View::assign('report', $report);
- View::assign('person', $person);
- return view();
- } else {
- echo '<div style="text-align:center;color:red;margin-top:20%;font-size:425%"><span>项目不存在!</span><br><span>已被删除</span></div>';
- // throw new \think\exception\HttpException(404, '项目不存在');
- }
- }
- /**
- * cp看板报告内容
- */
- public function report_detail()
- {
- $param = get_params();
- $id = isset($param['id']) ? $param['id'] : 0;
- $project_id = isset($param['project_id']) ? $param['project_id'] : 0;
- $detail = Db::name('ProjectReport')->where(['id' => $id])->find();
- if (empty($detail)) {
- if (empty($detail)) {
- echo '<div style="text-align:center;color:red;margin-top:20%;">该文档不存在</div>';
- exit;
- }
- } else {
- $maker_name = Db::name('admin')->where(['id' => $detail["maker_id"]])->value("nickname");
- $detail["maker_name"] = $maker_name;
- $file_array = Db::name('ProjectReport')
- ->field("r.*,a.nickname as admin_name,f.name,f.filesize,f.filepath,f.fileext,f.admin_id")
- ->alias('r')
- ->join('File f', 'r.file = f.id')
- ->join('Admin a', 'r.maker_id = a.id', 'LEFT')
- ->order('r.create_time desc')
- ->where(array('r.id' => $id))
- ->select()->toArray();
- View::assign('file_array', $file_array);
- View::assign('project_id', $project_id);
- View::assign('detail', $detail);
- return view();
- }
- }
- /**
- * cp待办报告内容
- */
- public function report_pdetail()
- {
- $param = get_params();
- $id = isset($param['id']) ? $param['id'] : 0;
- $project_id = isset($param['project_id']) ? $param['project_id'] : 0;
- $detail = Db::name('ProjectReport')->where(['id' => $id])->find();
- if (empty($detail)) {
- if (empty($detail)) {
- echo '<div style="text-align:center;color:red;margin-top:20%;">该文档不存在</div>';
- exit;
- }
- } else {
- $maker_name = Db::name('admin')->where(['id' => $detail["maker_id"]])->value("nickname");
- $detail["maker_name"] = $maker_name;
- $file_array = Db::name('ProjectReport')
- ->field("r.*,a.nickname as admin_name,f.name,f.filesize,f.filepath,f.fileext,f.admin_id")
- ->alias('r')
- ->join('File f', 'r.file = f.id')
- ->join('Admin a', 'r.maker_id = a.id', 'LEFT')
- ->order('r.create_time desc')
- ->where(array('r.id' => $id))
- ->select()->toArray();
- View::assign('file_array', $file_array);
- View::assign('project_id', $project_id);
- View::assign('detail', $detail);
- return view();
- }
- }
- /**
- *项目日志
- */
- 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']);
- }
- // dump($project_log);
- // View::assign('project_log', $project_log);
- // return View();
- return $project_log;
- }
- /**
- *
- */
- public function sift()
- {
- return view();
- }
- /**
- *项目人员
- */
- public function user($id)
- {
- $ids = $this->model->where("id", $id)->field("entrust_maker,review_head,operate_head,operate_team")->find();
- if (empty($ids)) {
- return [];
- } else {
- $ids->toArray();
- }
- $idarr = $ids["operate_team"] . ',' . $ids["operate_head"] . ',' . $ids["review_head"] . ',' . $ids["entrust_maker"];
- $idarr = explode(",", $idarr);
- $param = [];
- $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit'];
- $list = $this->Adminmodel->whereIn("id", $idarr)->field("id,nickname,unit_name,mobile,email")->paginate(9999, false, ['query' => $param])
- // field("a.id,a.nickname,a.unit_name,a.mobile,a.email,d.title,d.type")->join('department d', 'a.unit_name = d.id', 'LEFT')
- ->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 = "评审机构";
- } else {
- $item->unit_type = "施工单位";
- }
- })->toArray();
- $list = $list["data"];
- $time_id = time();
- $shigong = $this->model->where('id', $id)->find();
- if ($shigong["construction_unit"] !== null ||
- $shigong["construction_head"] !== null ||
- $shigong["construction_email"] !== null ||
- $shigong["construction_phone"] !== null
- ) {
- $shigongdata["id"] = $time_id;
- $shigongdata["nickname"] = $shigong["construction_unit"];
- $shigongdata["unit_name"] = $shigong["construction_head"];
- $shigongdata["email"] = $shigong["construction_email"];
- $shigongdata["mobile"] = $shigong["construction_phone"];
- $shigongdata["unit_type"] = "施工单位";
- array_push($list, $shigongdata);
- }
- $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_id) {
- $list[$i]["type"] = 5;
- } elseif ($list[$i]['id'] !== time() - 1000) {
- $list[$i]["type"] = 6;
- }
- }
- $type = array_column($list, 'type');
- array_multisort($type, SORT_ASC, $list);
- return $list;
- }
- /**
- * 修改个人资料
- */
- public function revise()
- {
- $person = get_login_admin();
- View::assign('person', $person);
- return view();
- }
- /**
- * 消息通知
- * 通用
- */
- public function notice()
- {
- $unread_id = Db::name("admin")->where("id", $this->uid)->value("unread");
- if (empty($unread_id)) {
- $unread_ids = [];
- } else {
- $unread_ids = explode(",", $unread_id);
- }
- $list = Db::name("ProjectMsg")->where("uid", $this->uid)->select();
- if (is_object($list)) {
- $data = $list->toArray();
- }
- $real_data = [];
- foreach ($data as $item => $v) {
- if (in_array($v["id"], $unread_ids)) {
- $v["red"] = 1;
- $real_data[] = $v;
- } else {
- $v["red"] = 0;
- $real_data[] = $v;
- }
- }
- Db::name("admin")->where("id", $this->uid)->update(["unread" => null]);
- View::assign("msg", $real_data);
- return view();
- }
- public function notice_content()
- {
- return view();
- }
- /**
- * 工作记录
- */
- public function record()
- {
- $param = get_params();
- $id = isset($param['id']) ? $param['id'] : 0;
- $project_id = isset($param['project_id']) ? $param['project_id'] : 0;
- $detail = (new ProjectRecord())->detail($id);
- if (empty($detail)) {
- if (empty($detail)) {
- echo '<div style="text-align:center;color:red;margin-top:20%;">该记录不存在</div>';
- exit;
- }
- return '';
- }
- $maker_name = Db::name('admin')->where(['id' => $detail["maker_id"]])->value("nickname");
- $detail["maker_name"] = $maker_name;
- View::assign('detail', $detail);
- View::assign('project_id', $project_id);
- return view();
- }
- /**
- * 编辑工作记录
- */
- public function record_edit()
- {
- $param = get_params();
- $id = isset($param['id']) ? $param['id'] : 0;//记录id
- $project_id = isset($param['project_id']) ? $param['project_id'] : 0;
- $project = Db::name("cost_project")->where("id", $project_id)->value("project_name");
- $detail = (new ProjectRecord())->getRecordById($id);
- if (!empty($detail)) {
- View::assign('id', $id);
- View::assign('user_type', $this->user_tpe);
- View::assign('project_id', $project_id);
- View::assign('project', $project);
- View::assign('detail', $detail);
- return view();
- } else {
- throw new \think\exception\HttpException(404, '页面不存在');
- }
- }
- /**
- * 添加工作记录
- */
- public function record_add()
- {
- $param = get_params();
- $id = isset($param['id']) ? $param['id'] : 0;//记录id
- $project_id = isset($param['project_id']) ? $param['project_id'] : 0;
- $project = Db::name("cost_project")->where("id", $project_id)->value("project_name");
- View::assign('id', $id);
- View::assign('user_type', $this->user_tpe);
- View::assign('project_id', $project_id);
- View::assign('project', $project);
- return view();
- }
- public function appointment_add()
- {
- $param = get_params();
- $project_id = isset($param['project_id']) ? $param['project_id'] : 0;
- View::assign('user_type', $this->user_tpe);
- View::assign('project_id', $project_id);
- return view();
- }
- /**
- * 邀请函
- */
- public function invite()
- {
- $param = get_params();
- $id = isset($param['id']) ? $param['id'] : 0;//记录id
- $project_id = isset($param['project_id']) ? $param['project_id'] : 0;
- $project = Db::name("cost_project")->where("id", $project_id)->value("project_name");
- $detail = (new Contact())->detail($id);
- $file_array = Db::name('contact')
- ->field("r.*,a.nickname as admin_name,f.name,f.filesize,f.filepath,f.fileext,f.admin_id")
- ->alias('r')
- ->join('File f', 'r.file = f.id')
- ->join('Admin a', 'r.maker_id = a.id', 'LEFT')
- ->order('r.create_time desc')
- ->where(array('r.id' => $id))
- ->select()->toArray();
- if (!empty($detail)) {
- View::assign('id', $id);
- View::assign('project_id', $project_id);
- View::assign('project', $project);
- View::assign('detail', $detail);
- View::assign('file_array', $file_array);
- return view();
- } else {
- throw new \think\exception\HttpException(404, '页面不存在');
- }
- }
- public function cost_detail()
- {
- return view();
- }
- public function login()
- {
- return view();
- }
- // cp请款函内容
- public function request_detail()
- {
- $param = get_params();
- return view();
- }
- /**
- * 查看审批进度
- */
- public function progress()
- {
- $param = get_params();
- $id = isset($param['id']) ? $param['id'] : 0;
- $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit'];
- $order = empty($param['order']) ? 'id desc' : $param['order'];
- $list = $this->Auditmodel->alias('a')->join("cost_project c", "a.project_id=c.id", 'left')
- ->field("a.*,c.project_status,c.sent_review_amount,c.engineering_type,c.review_unit_name")->where('else_id', $id)->order('create_time', "sec")
- ->select()
- ->each(function ($item) {
- switch ($item["audit_type"]) {
- case 4:
- $item->else_name = "报告一级审核";
- break;
- case 5:
- $item->else_name = "报告二级审核";
- break;
- case 6:
- $item->else_name = "报告三级审核";
- break;
- }
- });
- View::assign('list', $list);
- return view();
- }
- public function contacts_exterior()
- {
- $param = get_params();
- $where = [];
- if (!empty($param["keyword"])) {
- $where = [["a.nickname|d.title", "like", "%" . $param["keyword"] . "%"]];
- }
- //0:财政局;1:业主;2:公司
- if ($this->user_tpe == 0) {
- //公司负责人
- $list_company = Db::name('department')->alias('d')->join("admin a", "d.leader_id=a.id")
- ->where([["d.type", "=", 2], ["pid", "=", 0], ["d.status", "=", 1]])
- ->where($where)->field("d.id,d.title,d.type,a.nickname,a.mobile,a.email")
- ->select()->toArray();
- $list_proprietor = Db::name('department')->alias('d')->join("admin a", "d.leader_id=a.id")
- ->where([["d.type", "=", 1], ["pid", "=", 0], ["d.status", "=", 1]])
- ->where($where)
- ->field("d.id,d.title,d.type,a.nickname,a.mobile,a.email")
- ->select()->toArray();
- $list_exterior = array_merge($list_company,$list_proprietor);
- } else if ($this->user_tpe == 1) {
- //公司负责人
- $list_company = Db::name('department')->alias('d')->join("admin a", "d.leader_id=a.id")
- ->where([["d.type", "=", 2], ["pid", "=", 0], ["d.status", "=", 1]])
- ->where($where)->field("d.id,d.title,d.type,a.nickname,a.mobile,a.email")
- ->select()->toArray();
- //财评负责人
- $list_entrust = Db::name('department')->alias('d')->join("admin a", "d.leader_id=a.id")
- ->where([["d.type", "=", 0], ["pid", "=", 0], ["d.status", "=", 1]])
- ->where($where)
- ->field("d.id,d.title,d.type,a.nickname,a.mobile,a.email")
- ->select()->toArray();
- $list_exterior = array_merge($list_company,$list_entrust);
- } else if ($this->user_tpe == 2) {
- //公司内部通讯录
- $list_entrust = Db::name('department')->alias('d')->join("admin a", "d.leader_id=a.id")
- ->where([["d.type", "=", 0], ["pid", "=", 0], ["d.status", "=", 1]])
- ->where($where)
- ->field("d.id,d.title,d.type,a.nickname,a.mobile,a.email")
- ->select()->toArray();
- $list_proprietor = Db::name('department')->alias('d')->join("admin a", "d.leader_id=a.id")
- ->where([["d.type", "=", 1], ["pid", "=", 0], ["d.status", "=", 1]])
- ->where($where)
- ->field("d.id,d.title,d.type,a.nickname,a.mobile,a.email")
- ->select()->toArray();
- $list_exterior = array_merge($list_proprietor,$list_entrust);
- }
- View::assign('list_exterior', $list_exterior);
- return view();
- }
- 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 getProjectFiveCompany()
- {
- $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 getProjectFiveYezhu()
- {
- $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 read_company()
- {
- $param = get_params();
- $unit_type = Db::name("department")->where("id", get_login_admin("unit_name"))->value("type");
- // halt($param);
- $a = time();
- $id = isset($param["project_id"]) ? $param["project_id"] : $a;
- if ($id == $a) {
- $datas = array();
- $datas["data"] = null;
- return table_assign(0, "无项目", $datas);
- }
- $project = Db::name("appropriation_project")->where("uid", $id)->select();
- $datas["data"] = $project;
- $datas["total"] = count($project);
- if ($param["type"] > 9) {
- $a = time();
- $id = isset($param["project_id"]) ? $param["project_id"] : $a;
- $detail = Db::name("appropriation")->where("id", $id)->find();
- $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' => 'appropriation'))
- ->select()->toArray();
- $where = [
- ["approver", "=", $this->uid],
- ["audit_status", "<", 5]
- ];
- $list = $this->Auditmodel->alias("a")->join("cost_project c", "a.project_id=c.id", "left")
- ->where($where)->where('audit_status',1)->where('audit_type','in',[10,11,12])
- ->field("a.*,c.project_num,c.project_status,c.engineering_type,c.sent_review_amount")
- ->paginate(9999, false, ['query' => $param])
- ->each(function ($item, $key) {
- $item->approver_name = Db::name("admin")->where("id", $item->approver)->value("nickname");
- })->toArray();
- // halt($list);
- $red = 0;
- foreach ($list["data"] as $item => $value) {
- if ($value["audit_status"] == 1) {
- $red = 1;
- }
- }
- $red_id = Db::name("new_msg")->where("uid", "=", $this->uid)->select();
- $red_kan = 0;
- foreach ($red_id as $item => $value) {
- if ($value["detail"] || $value["comment"] || $value["report"] || $value["user"] || $value["contact"]) {
- $red_kan = 1;
- }
- }
- if($unit_type == 2){
- $auditdata = $this->Auditmodel->where('id',$param['id'])->find();
- $detail['audit_status'] = $auditdata['audit_status'];
- View::assign('auditdata', $auditdata);
- }else{
- $detail['audit_status'] = 0;
- }
- // halt($audit_status,$id);
- // halt($list);
- View::assign('unit_type', $unit_type);
- View::assign('datas', $datas['data']);
- View::assign('id', $id);
- View::assign('detail', $detail);
- View::assign("red_kan", $red_kan);
- View::assign('red', $red);
- View::assign('file_array', $file_array);
- return view();
- }
- }
- public function datastat(){
- return View();
- }
- public function contract()
- {
- return view();
- }
- public function contract_detail()
- {
- return view();
- }
- public function kan_list()
- {
- //根据所登录的账号,查询跟本身有关的项目
- //2是公司,0是财政局,1是业主
- $param = get_params();
- $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit'];
- $order = empty($param['order']) ? 'id desc' : $param['order'];
- 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 = [];//搜索条件
- 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['keyword'])) {
- $keyword = $param['keyword'];
- $where3[] = ['project_num|project_name|review_unit', 'like', '%' . $keyword . '%'];
- }
- if (!empty($param['review_unit_name'])) {
- $where3[] = ['review_unit_name', 'like', '%' . $param['review_unit_name'] . '%'];
- }
- if (!empty($param['sent_review_unit_name'])) {
- $where3[] = ['sent_review_unit_name', 'like', '%' . $param['sent_review_unit_name'] . '%'];
- }
- if (!empty($param['entrust_unit_name'])) {
- $where3[] = ['entrust_unit_name', 'like', '%' . $param['entrust_unit_name'] . '%'];
- }
- $unit_type = Db::name("department")->where("id", get_login_admin("unit_name"))->value("type");
- $inarr = array();
- if ($unit_type == 0) {
- $where[] = ["delete_time", "=", 0];
- $where[] = ["project_status", ">", 0];
- $where[] = ["entrust_unit", "=", get_login_admin('unit_name')];
- $where2[] = ["delete_time", "=", 0];
- $where2[] = ["project_status", ">", 0];
- $where2[] = ["entrust_unit", "=", get_login_admin('unit_name')];
- //项目可见的权限
- $field = $this->Field->get_field_rules_new($this->uid);
- //1全部-可查看可编辑,2全部-可查看,0与我有关
- $see_auth = isset($field["see_auth"]) ? $field["see_auth"] : 3;
- if ($see_auth == 3) {
- $where[] = ["entrust_maker", "=", $this->uid];
- $where2[] = ["entrust_approver", "=", $this->uid];
- $where2[] = ["project_status", ">", 1];
- } elseif ($see_auth == 0) {
- $where[] = ["entrust_maker", "=", $this->uid];
- $where[] = ["project_status", ">", 0];
- $where2[] = ["entrust_approver", "=", $this->uid];
- $where2[] = ["project_status", ">", 1];
- }
- $list = $this->model->where($where3)
- ->where(function ($query) use ($where,$where2) {
- // 第一组条件(entrust_maker)
- $query->where(function ($q1) use ($where) {
- $q1->where($where);
- });
- // 使用 OR 连接第二组条件(entrust_approver)
- $query->whereOr(function ($q2) use ($where2) {
- $q2->where($where2);
- });
- })
- ->order("create_time desc")->paginate(9999, false, ['query' => $param])
- ->each(function ($item) {
- $red = Db::name("new_msg")->where([["project_id", "=", $item->id], ["uid", "=", $this->uid]])->find();
- if ($red) {
- if ($red["detail"] || $red["comment"] || $red["report"] || $red["user"] || $red["contact"]) {
- $item->red = 1;
- } else {
- $item->red = 0;
- }
- } else {
- $item->red = 0;
- }
- if (($item->province && $item->city && $item->area)) {
- $item->project_region = $item->province . '-' . $item->city . '-' . $item->area;
- }
- })->toArray();
- } elseif ($unit_type == 2) {
- $order = empty($param['order']) ? 'project_receive_time desc,id desc' : $param['order'];
- $where = [
- ["delete_time", "=", 0],
- ["project_status", ">", 3],
- ["review_unit", "=", get_login_admin("unit_name")]
- ];
- $review_unit = $this->model->where($where)->where($where3)->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"];
- }
- }
- $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)->where($where3)->whereIn("id", $inarr)
- ->order($order)->paginate(9999, false, ['query' => $param])
- ->each(function ($item) {
- $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;
- }
- } else {
- $item->red = 0;
- }
- })->toArray();
- } elseif ($see_auth == 0) {
- $list = $this->model
- ->where($where)->where($where3)->whereIn("id", $inarr)
- ->order($order)->paginate(9999, false, ['query' => $param])
- ->each(function ($item) {
- $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;
- }
- } else {
- $item->red = 0;
- }
- })->toArray();
- } else {
- $list = $this->model
- ->where($where)
- ->order($order)->where($where3)->paginate(9999, false, ['query' => $param])
- ->each(function ($item) {
- $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;
- }
- } else {
- $item->red = 0;
- }
- })->toArray();
- }
- } elseif ($unit_type == 1) {
- $field = $this->Field->get_field_rules_New($this->uid);
- $see_auth = isset($field["see_auth"]) ? $field["see_auth"] : 3;
- if ($see_auth == 0 || $see_auth == 3) {
- $where = [
- ["delete_time", "=", 0],
- ["sent_review_unit", "=", get_login_admin("unit_name")],
- ["sent_review_head", "=", $this->uid]
- ];
- } else {
- $where = [
- ["delete_time", "=", 0],
- ["sent_review_unit", "=", get_login_admin("unit_name")]
- ];
- }
- $list = $this->model
- ->where($where)
- ->order($order)->where($where3)->paginate(9999, false, ['query' => $param])
- ->each(function ($item) {
- $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;
- }
- } else {
- $item->red = 0;
- }
- })->toArray();
- } else {
- $list["data"] = [];
- }
- $data = $list["data"];
- $real_list = array_values(array_column($data, NULL, 'id'));
- $red = $this->Auditmodel->where("approver", $this->uid)->where("audit_status", 1)->count();
- $red_id = Db::name("new_msg")->where("uid", "=", $this->uid)->select();
- $red_kan = 0;
- foreach ($red_id as $item => $value) {
- if ($value["detail"] || $value["comment"] || $value["report"] || $value["user"] || $value["contact"]) {
- $red_kan = 1;
- }
- }
- View::assign("red_kan", $red_kan);
- View::assign("detail", $real_list);
- View::assign("red", $red);
- View::assign("unit_type", $unit_type);
- return view();
- }
- }
|