123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758 |
- <?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 followProject()
- {
- 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;
- }
- $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],
- ];
- 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'];
- $userId = get_login_admin('id');
- $openid = Db::name("admin")->where('id',$userId)->value("openid");
- $follow_project_id = Db::name('follow_project')->where('openid',$openid)->column("project_id");
- // halt($openid,$follow_project_id);
- $list = $this->model
- ->where('id','in',$follow_project_id)
- ->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");
- $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;
- $aaa = isset($item->operate_team) ? $item->operate_team : "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 {
- 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(){
- $param = get_params();
- $handle = $this->Pushmessage->handleParam($param);
- $param = $handle['param'];
- 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()
- {
- $param = get_params();
- $handle = $this->Pushmessage->handleParam($param);
- $param = $handle['param'];
- if (request()->isAjax()) {
- $a = $this->model->where("id", $param["project_id"])->find();
- if($a["sent_review_head"]){
- return to_assign(1, '送审单位负责人已经存在,请移除后再添加');
- }
- $user = Db::name("admin")->where("id",$param["id"])->find();
- $department = Db::name("department")->where("id",$user["unit_name"])->find();
- $this->model->where("id",
- $param["project_id"])
- ->update(
- [
- "sent_review_head" => $param["id"],
- "sent_review_head_name"=>$user['nickname'],
- "sent_review_phone"=> $user["mobile"],
- "sent_review_unit_name"=>$department["title"],
- "sent_review_unit"=> $department["id"]
- ]
- );
- $content = get_login_admin("nickname") . "新增了送审单位负责人". $user['nickname'];
- add_project_log("新增项目成员",$param["project_id"],$content,5);
- add_user($param["id"],$param["project_id"]);
- return to_assign(0, '操作成功');
- } 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_department_tree_proprietor($project_id)
- {
- $project = $this->model->where("id" , $project_id)->find();
- $entrust_unit = $project["entrust_unit"];
- $department = Db::name('Department')->where(['status' => 1 , "entrust_unit" => $entrust_unit])->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];
- $result['trees'][] = $point;
- }
- return json($result);
- }
- //获取子部门所有员工
- public function get_employee_proprietor()
- {
- $did = get_params('did');
- if ($did == 1) {
- $department = $did;
- } else {
- $department = get_department_son($did);
- }
- // 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();
- return to_assign(0, '', $employee);
- }
- //获取子部门所有员工
- 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();
- 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();
- }
- }
|