|
@@ -103,12 +103,12 @@ class CustomerOrg extends BaseController
|
|
|
public function list()
|
|
|
{
|
|
|
|
|
|
- $param = $this->request->only(['pid' => '', 'companyNo' => '', 'creater' => '', 'name' => '', 'start' => '', 'end' => '', 'status' => '', 'company_name' => ''], 'post', 'trim');
|
|
|
+ $param = $this->request->only(['pid' => 0, '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']];
|
|
|
+ if (intval($param['pid']) !== "") $condition[] = ["co.pid", "=", intval($param['pid'])];
|
|
|
|
|
|
// $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !=="" ? trim($this->post['companyNo']):"";
|
|
|
if ($param['companyNo'] !== "") $where[] = ['ci.companyNo', "like", '%' . $param['companyNo'] . '%'];
|
|
@@ -161,7 +161,7 @@ class CustomerOrg extends BaseController
|
|
|
->alias('co')
|
|
|
// ->leftJoin("depart_user u", "u.uid=co.createrid AND u.is_del=0")
|
|
|
->where($condition)
|
|
|
- ->order("co.addtime desc")
|
|
|
+ ->group('co.pid')
|
|
|
->column("co.pid");
|
|
|
if (!empty($pidlist)) $where[] = [["ci.itemid", "in", $pidlist]];
|
|
|
else {
|
|
@@ -169,9 +169,10 @@ class CustomerOrg extends BaseController
|
|
|
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")
|
|
|
+ ->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')
|