Ver Fonte

新增了8个接口

wufeng há 2 anos atrás
pai
commit
7a95ef1267
3 ficheiros alterados com 570 adições e 7 exclusões
  1. 399 0
      app/controller/CustomerOrg.php
  2. 161 7
      app/controller/Headquarters.php
  3. 10 0
      route/app.php

+ 399 - 0
app/controller/CustomerOrg.php

@@ -0,0 +1,399 @@
+<?php
+
+namespace app\controller;
+
+use app\BaseController;
+use think\facade\Db;
+use think\facade\Validate;
+
+class CustomerOrg extends BaseController
+{
+
+    private $table_name = 'customer_org1';//此处的表名比较特殊
+
+    public function create()
+    {
+        $param = $this->request->only(['name', 'weight' => 0, 'pid' => 0, 'uid', 'uname', 'level' => 1], 'post', 'trim');
+
+        $val = Validate::rule([
+            'name' => 'require',
+            'weight' => 'require|number|egt:0',
+            'pid' => 'require|number|egt:0',
+            'uid' => 'require|number|gt:0',
+            'uname' => 'require',
+            'level' => 'require|number|gt:0',
+        ]);
+
+        if ($val->check($param) == false) return json_show(1004, $val->getError());
+//        $name = isset($this->post['name']) && $this->post['name'] !== "" ? trim($this->post['name']) : "";
+//        if ($name == "") {
+//            return json_show(1003, "公司名称不能为空");
+//        }
+//        $weight = isset($this->post['weight']) && $this->post['weight'] !== "" ? trim($this->post['weight']) : "0";
+//        $pid = isset($this->post['pid']) && $this->post['pid'] !== "" ? trim($this->post['pid']) : "0";
+//        if ($pid === "") {
+//            return json_show(1002, "父级id不能为空");
+//        }
+        if ($param['pid'] != 0) {
+            $spid = Db::name($this->table_name)
+                ->where(['id' => $param['pid'], 'is_del' => 0])
+                ->findOrEmpty();
+            //var_dump( Db::name($this->table_name)->getLastSql());
+            if (empty($spid)) return json_show(1004, "父级不能为空");
+
+        }
+        $rename = Db::name($this->table_name)
+            ->field('id')
+            ->where(['is_del' => 0, 'name' => $param['name'], 'pid' => $param['pid']])
+            ->findOrEmpty();
+        if (!empty($rename)) return json_show(1002, "组织名称已存在");
+
+//        $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
+//        if($token==''){
+//            return json_show(105,"参数token不能为空");
+//        }
+//        $user =GetUserInfo($token);
+//        if(empty($user)||$user['code']!=0){
+//            return json_show(1002,"创建人数据不存在");
+//        }
+        $createrid = $param['uid'];//isset($user["data"]['id']) ?  $user["data"]['id'] : "";
+        $creater = $param['uname'];//isset($user["data"]['nickname']) ?  $user["data"]['nickname'] : "";
+//        $level = isset($this->post['level']) && $this->post['level'] !== "" ? trim($this->post['level']) : "1";
+        Db::startTrans();
+        try {
+            $date = date('Y-m-d H:i:s');
+            $tada = [
+                "name" => $param['name'],
+                "weight" => $param['weight'],
+                "pid" => $param['pid'],
+                "level" => $param['level'],
+                "updatetime" => $date,
+                "addtime" => $date,
+                "depart_link" => "",
+                "is_del" => 0,
+                "pname" => isset($spid['name']) ? $spid['name'] : "",
+                "creater" => $creater,
+                "createrid" => $createrid
+            ];
+            $t = Db::name($this->table_name)->insert($tada, true);
+            //var_dump(Db::name($this->table_name)->getLastSql());
+            if ($t > 0) {
+                if (isset($spid)) $depart_link = $spid['depart_link'] . "{$t}-";
+                else $depart_link = "{$t}-";
+
+                $level = explode('-', $depart_link);
+                //  var_dump($level);
+                $level = array_filter($level);
+                $level = count($level);
+                $k = ['depart_link' => $depart_link, 'level' => $level];
+                $u = Db::name($this->table_name)->where(['id' => $t])->save($k);
+                // var_dump( Db::name($this->table_name)->getLastSql());
+                if ($u) {
+                    Db::commit();
+                    return json_show(0, "新建成功");
+                }
+            }
+            throw new Exception('新建失败');
+        } catch (Exception $e) {
+            Db::rollback();
+            return json_show(1003, $e->getMessage());
+        }
+    }
+
+    public function list()
+    {
+
+        $param = $this->request->only(['pid' => '', 'companyNo' => '', 'creater' => '', 'name' => '', 'start' => '', 'end' => '', 'status' => '', 'company_name' => ''], 'post', 'trim');
+//        $pid =  isset($this->post['pid']) &&$this->post['pid']!=="" ?intval($this->post['pid']): "0";
+        $where = [['ci.is_del', "=", 0]];
+
+        $condition = [['co.is_del', "=", 0]];
+        if ($param['pid'] !== "") $condition[] = ["co.pid", "=", $param['pid']];
+
+//        $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !=="" ? trim($this->post['companyNo']):"";
+        if ($param['companyNo'] !== "") $where[] = ['ci.companyNo', "like", '%' . $param['companyNo'] . '%'];
+
+//        $creater = isset($this->post['creater']) && $this->post['creater'] !=="" ? trim($this->post['creater']):"";
+        if ($param['creater'] !== "") $where[] = ['ci.creater', "like", '%' . $param['creater'] . '%'];
+
+//        $name= isset($this->post['name'])&&$this->post['name']!=="" ? trim($this->post['name']):"";
+        if ($param['name'] != "") $condition[] = ["co.name", "like", "%{$param['name']}%"];
+
+//        $start = isset($this->post['start']) && $this->post['start'] !== "" ? $this->post['start'] : "";
+        if ($param['start'] != "") $where[] = ["ci.addtime", '>=', $param['start']];
+
+//        $end = isset($this->post['end']) && $this->post['end'] !== "" ? $this->post['end'] : "";
+        if ($param['end'] != "") $where[] = ["ci.addtime", '<=', $param['end'] . ' 23:59:59'];
+
+//        $status = isset($this->post['status']) && $this->post['status'] !=="" ? intval($this->post['status']):"";
+        if ($param['status'] !== "") $where[] = ['ci.status', "=", $param['status']];
+
+//        $count = Db::name($this->table_name)->where($condition)->count();
+//        $page>=ceil($count/$size) ? $page=ceil($count/$size) :"";
+//        $creater = isset($this->post['creater']) && $this->post['creater'] !=="" ? trim($this->post['creater']):"";
+//        if($creater !==""){
+//            $condition[] = ['co.creater',"like","%$creater%"];
+//        }
+//        $name= isset($this->post['name'])&&$this->post['name']!=="" ? trim($this->post['name']):"";
+//        if($name!=""){
+//            $condition[]=["co.name","like","%{$this->post['name']}%"];
+//        }
+//        $start = isset($this->post['start']) && $this->post['start'] !== "" ? $this->post['start'] : "";
+//        if ($start != "") {
+//            $condition[] = ["co.addtime", '>=', $start];
+//        }
+//        $end = isset($this->post['end']) && $this->post['end'] !== "" ? $this->post['end'] : "";
+//        if ($end != "") {
+//            $condition[] = ["co.addtime", '<=', $end];
+//        }
+//        $status = isset($this->post['status']) && $this->post['status'] !=="" ? intval($this->post['status']):"";
+//        if($status!==""){
+//            $condition[] = ['co.status',"=",$status];
+//        }
+//        $company_name = isset($this->post['company_name']) && $this->post['company_name'] !== "" ? trim($this->post['company_name']) : "";
+        if ($param['company_name'] !== "") {
+//            $company_ids = get_company_item_user_by_name($param['company_name']);
+            $where[] = ['c.name', "like", '%' . $param['company_name'] . '%'];
+            $condition[] = ['c.name', "like", '%' . $param['company_name'] . '%'];
+        }
+
+        $pidlist = Db::name("customer_org1")
+            ->alias('co')
+//            ->leftJoin("depart_user u", "u.uid=co.createrid AND u.is_del=0")
+            ->where($condition)
+            ->order("co.addtime desc")
+            ->column("co.pid");
+        if (!empty($pidlist)) $where[] = [["ci.itemid", "in", $pidlist]];
+        else {
+            if ($param['pid'] === "") $where[] = ['ci.itemid', '=', 0];
+            else $where[] = ['ci.itemid', '=', $param['pid']];
+
+        }
+        $list = Db::name($this->table_name)
+            ->alias('co')
+            ->field("co.id,co.name,co.creater,co.status,co.addtime,0 KH,c.name company_name")
+            ->where($condition)
+            ->leftJoin('account_item b', 'b.account_id=co.createrid')
+            ->leftJoin('company_item c', 'c.id=b.itemid')
+            ->order("co.addtime", 'desc')
+            ->select()
+            ->toArray();
+
+//        $all_createrid = array_column($list,'createrid');
+//        $all_item = get_company_name_by_uid($all_createrid);
+
+//        $var=[];
+//        foreach ($list as $item) {
+//            $iten=[];
+//            $iten['name']=$item['name'];
+////            $iten['code']="";
+//            $iten['id']=$item['id'];
+//            $iten['creater']=$item['creater'];
+//            $iten['status']=$item['status'];
+//            $iten['addtime']=$item['addtime'];
+//            $iten['kh']=0;//组织架构
+//            $iten['company_name'] = $all_item[$item['createrid']]??'';
+//
+//            $var[]=$iten;
+//        }
+        $itm = Db::name('customer_info')
+            ->alias('ci')
+            ->field('ci.id,ci.companyName name,ci.companyNo code,ci.status,ci.creater,ci.addtime,1 kh,c.name company_name')
+//            ->leftJoin("depart_user u", "u.nickname=ci.creater AND u.is_del=0")
+            ->leftJoin('account_item b', 'b.account_id=ci.createrid')
+            ->leftJoin('company_item c', 'c.id=b.itemid')
+            ->where($where)
+            ->order("ci.addtime desc")
+            ->select()
+            ->toArray();
+
+//        foreach ($itm as $vat){
+//            $inm=[];
+//            $inm['name']=$vat['companyName'];
+//            $inm['id']=$vat['id'];
+//            $inm['code']=$vat['companyNo'];
+////            $inm['companyName']=$vat['companyName'];
+////            $inm['invoice_bank']=$vat['invoice_bank'];
+////            $inm['invoice_bankNo']=$vat['invoice_bankNo'];
+////            $inm['invoice_code']=$vat['invoice_code'];
+////            $inm['invoice_people']=$vat['invoice_people'];
+////            $inm['invoice_mobile']=$vat['invoice_mobile'];
+////            $inm['invoice_addr']=$vat['invoice_addr'];
+////            $inm['parent']=$vat['parent'];
+////            $inm['branch']=$vat['branch'];
+////            $inm['middle']=$vat['middle'];
+////            $inm['country']=$vat['country'];
+//            $inm['status']=$vat['status'];
+//            $inm['creater']=$vat['creater'];
+//            $inm['addtime']=$vat['addtime'];
+//            $inm['kh']=1;//客户
+//            $inm['company_name'] = '待处理';
+//            $var[]=$inm;
+//        }
+        return json_show(0, "获取成功", array_merge($list, $itm));
+    }
+
+    public function update()
+    {
+
+        $param = $this->request->only(['id', 'name', 'weight' => 0, 'pid' => 0, 'uid', 'uname', 'level' => 1], 'post', 'trim');
+
+        $val = Validate::rule([
+            'id' => 'require|number|gt:0',
+            'pid' => 'require|number|egt:0',
+            'weight' => 'require|number|egt:0',
+            'name' => 'require',
+            'uid' => 'require|number|gt:0',
+            'uname' => 'require',
+            'level' => 'require|number|gt:0',
+        ]);
+
+        if ($val->check($param) == false) return json_show(1004, $val->getError());
+
+//        $id = isset($this->post['id'])?intval($this->post['id']):"";
+//        if($id===""){
+//            return json_show(1004,"参数id不能为空");
+//        }
+        $sid = Db::name($this->table_name)
+            ->field('id,status')
+            ->where("id", $param['id'])
+            ->findOrEmpty();
+        // var_dump(Db::name($this->table_name)->getLastSql());
+        if (empty($sid)) return json_show(1004, "公司不存在");
+
+        if ($sid['status'] == 1) return json_show(1002, "状态是启用状态,无法编辑");
+
+//        $pid = isset($this->post['pid']) && $this->post['pid'] !=="" ? intval($this->post['pid']):"";
+//        if($pid===""){
+//            return json_show(1004,"父级id不能为空");
+//        }
+
+        if ($param['pid'] != 0) {
+            $fpid = Db::name($this->table_name)
+                ->field('id,depart_link')
+                ->where(['id' => $param['pid'], 'is_del' => 0])
+                ->findOrEmpty();
+            if (empty($fpid)) return json_show(1004, "父级不能为空");
+        }
+
+//        $weight = isset($this->post['weight']) && $this->post['weight'] !==""? intval($this->post['weight']):"0";
+
+//      $level = isset($this->post['level']) && $this->post['level'] !==""? intval($this->post['level']):"";
+//        $name = isset($this->post['name'])? trim($this->post['name']):"";
+//        if($name==""){
+//            return json_show(1004,"公司名称不能为空");
+//        }
+        $repeat_name = Db::name($this->table_name)
+            ->field('id')
+            ->where(["is_del" => 0, "name" => $param['name'], 'pid' => $param['pid']])
+            ->where("id", "<>", $param['id'])
+            ->findOrEmpty();
+        // echo Db::name($this->table_name)->getLastSql();
+        if (!empty($repeat_name)) return json_show(1004, "部门名称已存在");
+
+        if (isset($fpid)) $depart_link = $fpid['depart_link'] . $param['id'] . "-";
+        else $depart_link = $param['id'] . "-";
+
+        $level = explode('-', $depart_link);
+        $level = array_filter($level);
+        $level = count($level);
+        $vir = [
+            "id" => $param['id'],
+            "name" => $param['name'],
+            "pid" => $param['pid'],
+            "weight" => $param['weight'],
+            "depart_link" => $depart_link,
+            "level" => $level,
+            "updatetime" => date("Y-m-d H:i:s"),
+        ];
+        $org = Db::name($this->table_name)->save($vir);
+
+        return $org ? json_show(0, "更新成功") : json_show(1004, "更新失败");
+//        if($org)
+//            return json_show(0,"更新成功");
+//        else{
+//            return json_show(1004,"更新失败");
+//        }
+    }
+
+    public function info()
+    {
+        $id = $this->request->post('id/d', 0, 'trim');
+
+        $res = Db::name($this->table_name)
+            ->where(['id' => $id, 'is_del' => 0])
+            ->findOrEmpty();
+
+        return json_show(0, "获取成功", $res);
+    }
+
+    public function delete()
+    {
+        $id = $this->request->post('id/d', 0, 'trim');
+
+        $custy = Db::name('customer_org1')
+            ->field('id')
+            ->where(["is_del" => 0, 'id' => $id])
+            ->findOrEmpty();
+        if (empty($custy)) return json_show(1004, "公司不存在");
+
+        //$var= Db::name('customer_info')->where(['itemid'=>$id,'is_del'=>0])->find();
+        $db = Db::name('customer_org1')
+            ->field('id')
+            ->where(['pid' => $custy['id'], 'is_del' => 0])
+            ->findOrEmpty();
+        if (!empty($db)) return json_show(1004, "下一级还有组织,不允许删除");
+
+        $var = Db::name('customer_info')
+            ->field('id')
+            ->where(['itemid' => $id, 'is_del' => 0])
+            ->findOrEmpty();
+        if (!empty($var)) return json_show(1004, "下一级还有分公司,不允许删除");
+
+        $custy['is_del'] = 1;
+        $custy['updatetime'] = date("Y-m-d H:i:s");
+        $compy = Db::name('customer_org1')->save($custy);
+        return $compy ? json_show(0, "删除成功") : json_show(1004, "删除失败");
+    }
+
+    public function status()
+    {
+
+        $param = $this->request->only(['id', 'status'], 'post', 'trim');
+
+        $val = Validate::rule([
+            'id' => 'require|number|gt:0',
+            'status' => 'require|number|in:0,1',
+        ]);
+
+        if ($val->check($param) == false) return json_show(1004, $val->getError());
+//        $id = isset($this->post['id']) && $this->post['id'] !==""? intval($this->post['id']):"";
+//        if($id==""){
+//            return json_show(1002,"参数id不能为空");
+//        }
+//        $info =  Db::name("customer_org1")->where([["id","=",$id]])->find();
+//        if(!$info){
+//            return json_show(1002,"未找到对应数据");
+//        }
+//        $status =  isset($this->post['status']) && $this->post['status']!==""? intval($this->post['status']):"";
+//        if($status===""){
+//            return json_show(1002,"参数status不能为空");
+//        }
+//        if(!in_array($status,[0,1])){
+//            return json_show(1002,"参数status无效");
+//        }
+//        $info['status']=$status;
+//        $info['updatetime']=date("Y-m-d H:i:s");
+//        $msg = $status==1?"启用":"禁用";
+        $update = Db::name("customer_org1")
+            ->where(['is_del' => 0, 'id' => $param['id']])
+            ->where('status', '<>', $param['status'])
+            ->update([
+                'status' => $param['status'],
+                'updatetime' => date("Y-m-d H:i:s"),
+            ]);
+        return $update ? json_show(0, "操作成功") : json_show(1004, "操作失败");
+    }
+
+
+}

+ 161 - 7
app/controller/Headquarters.php

@@ -61,7 +61,7 @@ class Headquarters extends BaseController
                     Db::name('business')->insert($post['data']);
                     break;
                 case 2:
-                    Db::name('company_info')->insert($post['data']);
+                    Db::name('customer_info')->insert($post['data']);
                     break;
                 case 3:
                     Db::name('supplier')->insert($post['data']);
@@ -115,7 +115,7 @@ class Headquarters extends BaseController
                     Db::name('business')->where(['companyNo' => $post['data']['companyNo'], 'is_del' => 0])->update($post['data']);
                     break;
                 case 2:
-                    Db::name('company_info')->where(['companyNo' => $post['data']['companyNo'], 'is_del' => 0])->update($post['data']);
+                    Db::name('customer_info')->where(['companyNo' => $post['data']['companyNo'], 'is_del' => 0])->update($post['data']);
                     break;
                 case 3:
                     Db::name('supplier')->where(['code' => $post['data']['code'], 'is_del' => 0])->update($post['data']);
@@ -172,7 +172,7 @@ class Headquarters extends BaseController
                     ->findOrEmpty();
                 break;
             case 2:
-                $child = Db::name('company_info')
+                $child = Db::name('customer_info')
                     ->where(['companyNo' => $code, 'is_del' => 0])
                     ->findOrEmpty();
                 break;
@@ -294,8 +294,14 @@ class Headquarters extends BaseController
                         ]);
                     break;
                 case 2:
-                    Db::name('company_info')
-                        ->where(['companyNo' => $param['data']['companyNo'], 'is_del' => 0])
+                    $tmp = Db::name('customer_info')
+                        ->field('id,status,companyNo code')
+                        ->where(['is_del' => 0, 'id' => $param['id']])
+                        ->findOrEmpty();
+                    if (empty($tmp)) throw new Exception('未找到对应数据');
+                    if ($tmp['status'] == $param['status']) throw new Exception('操作重复');
+                    Db::name('customer_info')
+                        ->where(['id' => $param['id'], 'is_del' => 0])
                         ->where('status', '<>', $param['status'])
                         ->update([
                             'status' => $param['status'],
@@ -783,10 +789,10 @@ class Headquarters extends BaseController
             ->findOrEmpty();
         $item = Db::name('customer_info')
             ->field('id')
-            ->where(['itemid' => $rename['id'], 'companyName' => $param['companyName'], 'is_del' => 0])
+            ->where(['itemid' => $rename['id'] ?? 0, 'companyName' => $param['companyName'], 'is_del' => 0])
             ->findOrEmpty();
 
-        if (empty($item)) return json_show(1002, "公司名称已存在");
+        if (!empty($item)) return json_show(1002, "公司名称已存在");
 
 //        if ($parent === "") {
 //            return json_show(1002, "参数parent不能为空");
@@ -893,6 +899,154 @@ class Headquarters extends BaseController
         }
     }
 
+    public function cList()
+    {
+        $param = $this->request->only(['page' => 1, 'size' => 10, 'companyName' => '', 'status' => '', 'creater' => '', 'start' => '', 'end' => ''], 'post', 'trim');
+
+//        $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) : "1";
+//        $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) : "10";
+        $where = [["a.is_del", "=", 0]];
+//        $companyName = isset($this->post['companyName']) && $this->post['companyName'] !== "" ? trim($this->post['companyName']) : "";
+        if ($param['companyName'] != "") $where[] = ['b.companyName', "like", '%' . $param['companyName'] . '%'];
+
+//        $status = isset($this->post['status']) && $this->post['status'] !=="" ? intval($this->post['status']) :"";
+        if ($param['status'] !== "") $where[] = ['status', "=", $param['status']];
+
+//        $creater = isset($this->post['creater']) && $this->post['creater'] !== "" ? intval($this->post['creater']) : "";
+        if ($param['creater'] != "") $where[] = ['a.creater', "like", '%' . $param['creater'] . '%'];
+
+//        $start = isset($this->post['start']) && $this->post['start'] !== "" ? $this->post['start'] : "";
+        if ($param['start'] !== "") $where[] = ['a.addtime', ">=", date('Y-m-d H:i:s', strtotime($param['start']))];
+
+//        $end = isset($this->post['end']) && $this->post['end'] !== "" ? $this->post['end'] : "";
+        if ($param['end'] !== "") $where[] = ['a.addtime', "<", date('Y-m-d H:i:s', strtotime($param['end']) + 24 * 3600)];
+
+        $count = Db::name('customer_member')
+            ->alias('a')
+            ->leftJoin('customer_info b', "b.companyNo=a.companyNo")
+            ->where($where)
+            ->count('a.id');
+        $total = ceil($count / $param['size']);
+        $page = $param['page'] >= $total ? $total : $param['page'];
+        $list = Db::name('customer_member')
+            ->alias('a')
+            ->leftJoin('customer_info b', "b.companyNo=a.companyNo")
+            ->where($where)
+            ->page($page, $param['size'])
+            ->order("addtime desc")
+            ->field("a.*,b.companyName,b.parent")
+            ->select()
+            ->toArray();
+        return json_show(0, "获取成功", ['list' => $list, 'count' => $count]);
+    }
+
+    public function cEdit()
+    {
+        $param = $this->request->only(['id', 'companyName', 'parent', 'customer_member', 'uid', 'uname'], 'post', 'trim');
+
+        $val = Validate::rule([
+            'id' => 'require|number|gt:0',
+            'companyName' => 'require',
+            'parent' => 'require',
+            'customer_member' => 'require|array|max:100',
+            'uid' => 'require|number|gt:0',
+            'uname' => 'require',]);
+
+        if ($val->check($param) == false) return json_show(1004, $val->getError());
+
+        $idinfo = Db::name('customer_info')
+            ->field('id,status,companyNo')
+            ->where(['id' => $param['id'], 'is_del' => 0])
+            ->findOrEmpty();
+        if (empty($idinfo)) return json_show(1004, "未找到数据");
+
+        if ($idinfo['status'] == 1) return json_show(1002, "状态是启用状态,无法编辑");
+
+        $rename = Db::name('customer_org1')
+            ->where(['is_del' => 0, 'id' => $param['parent']])
+            ->field('id')
+            ->findOrEmpty();
+        $item = Db::name('customer_info')
+            ->field('id')
+            ->where(['itemid' => $rename['id'] ?? 0, 'companyName' => $param['companyName'], 'is_del' => 0])
+            ->where('id', '<>', $param['id'])
+            ->findOrEmpty();
+        if (!empty($item)) return json_show(1002, "公司名称已存在");
+
+        $createrid = $param['uid'];//isset($user["data"]['id']) ? $user["data"]['id'] : "";
+        $creater = $param['uname'];//isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
+        Db::startTrans();
+        try {
+            $date = date('Y-m-d H:i:s');
+            $data = [
+                "id" => $param['id'],
+                "companyName" => $param['companyName'],
+                //"companyNo" => $companyNo,
+                "parent" => $param['parent'],
+                "updatetime" => $date,
+            ];
+            $datainfo = Db::name('customer_info')->save($data);
+
+            if ($datainfo) {
+
+                foreach ($param['customer_member'] as $value) {
+//                    $to = GetInfoById($token, ['id' => $value['ownerid']]);
+//
+//                    if (empty($to) || $to['code'] != 0) {
+//                        return json_show(1002, "数据拥有者信息不存在");
+//                    }
+                    $item = [];
+//                    $info = $to['data'];
+//                    $item['owner'] = $info['nickname'];
+//                    $item['ownerid'] = $info['id'];
+                    $item['commobile'] = isset($value['commobile']) ? $value['commobile'] : "";
+                    $item['comtel'] = "";
+                    //  $item['id'] =isset($value['id']) ? $value['id'] : "";
+                    isset($value['id']) && $value['id'] !== "" ? $item['id'] = $value['id'] : '';
+                    $item['contactor'] = isset($value['contactor']) ? $value['contactor'] : "";
+                    $item['position'] = isset($value['position']) ? $value['position'] : "";
+                    $item['wxaccount'] = isset($value['wxaccount']) ? $value['wxaccount'] : "";
+                    $item['qqaccount'] = isset($value['qqaccount']) ? $value['qqaccount'] : "";
+                    $item['email'] = isset($value['email']) ? $value['email'] : "";
+                    $item['comdepart'] = isset($value['comdepart']) ? $value['comdepart'] : "";
+                    //   $item['is_private'] = isset($value['is_private']) ? $value['is_private'] : "";
+                    $item['status'] = $value['status'];
+                    $item['createrid'] = $createrid;
+                    $item['creater'] = $creater;
+                    $item['companyNo'] = isset($idinfo['companyNo']) ? $idinfo['companyNo'] : "";
+                    $item['is_del'] = 0;
+                    $item['addtime'] = $date;
+                    $item['updatetime'] = $date;
+                    // $var[]=$item;
+
+                    $vp = Db::name('customer_member')->save($item);
+
+//                  var_dump(Db::name('customer_member')->getLastSql());
+//                $var = array_diff($customer_member,$item);
+//                $jsn = json_encode($var);
+                    if ($vp == false) throw new Exception('更新失败');
+
+                }
+
+                //更新汇总表
+                Db::name('headquarters')
+                    ->where(['is_del' => 0, 'type' => 2, 'code' => $idinfo['companyNo']])
+                    ->update([
+                        'name' => $param['companyName'],
+                        'updater' => $param['uname'],
+                        'updaterid' => $param['uid'],
+                        "updatetime" => $date,
+                    ]);
+
+                Db::commit();
+                return json_show(0, "更新成功");
+            } else throw new Exception("更新失败");
+
+        } catch (Exception $e) {
+            Db::rollback();
+            return json_show(1005, $e->getMessage());
+        }
+    }
 
     //供应商升级成业务公司
     public function supplerUpgrade()

+ 10 - 0
route/app.php

@@ -62,12 +62,22 @@ Route::rule('sEdit', 'Headquarters/sEdit');
 Route::rule('cInfo', 'Headquarters/cInfo');
 Route::rule('cTitle', 'Headquarters/cTitle');
 Route::rule('cCreate', 'Headquarters/cCreate');
+Route::rule('cList', 'Headquarters/cList');
+Route::rule('cEdit', 'Headquarters/cEdit');
 Route::rule('delete', 'Headquarters/delete');
 Route::rule('status', 'Headquarters/status');
 Route::rule('getCodeAndName', 'Headquarters/getCodeAndName');
 Route::rule('supplerUpgrade', 'Headquarters/supplerUpgrade');
 Route::rule('get_business_list_tmp', 'Headquarters/getBusinessListTmp');
 
+//组织
+Route::rule('customer_org_create', 'CustomerOrg/create');
+Route::rule('customer_org_list', 'CustomerOrg/list');
+Route::rule('customer_org_update', 'CustomerOrg/update');
+Route::rule('customer_org_info', 'CustomerOrg/info');
+Route::rule('customer_org_delete', 'CustomerOrg/delete');
+Route::rule('customer_org_status', 'CustomerOrg/status');
+
 //组织架构
 Route::rule('ulist', 'CompanyItem/getList');
 Route::rule('add', 'CompanyItem/add');