|
@@ -64,12 +64,13 @@ class Invite extends Controller
|
|
|
$create_at = $this->request->get('create_at');
|
|
|
if(isset($create_at) && $create_at) {
|
|
|
$time = explode(' - ',$_GET['create_at']);
|
|
|
- $start_date_time = $time[0].' 00:00:00';
|
|
|
- $end_date_time = $time[1].' 23:59:59';
|
|
|
+ $start_date_time = $time[0];
|
|
|
+ $end_date_time = $time[1];
|
|
|
$this->_query($this->table)
|
|
|
->field('pid,count(*) count')
|
|
|
->where('pid','>',0)
|
|
|
->where('is_auth',1)
|
|
|
+ ->where('bank_num is not null')
|
|
|
->where($where)
|
|
|
->whereBetweenTime('create_at',$start_date_time,$end_date_time)
|
|
|
->group('pid')
|
|
@@ -80,6 +81,7 @@ class Invite extends Controller
|
|
|
->field('pid,count(*) count')
|
|
|
->where('pid','>',0)
|
|
|
->where('is_auth',1)
|
|
|
+ ->where('bank_num is not null')
|
|
|
->where($where)
|
|
|
->group('pid')
|
|
|
->order('count desc')
|
|
@@ -126,11 +128,12 @@ class Invite extends Controller
|
|
|
$create_at = $this->request->get('create_at');
|
|
|
if(isset($create_at) && $create_at) {
|
|
|
$time = explode(' - ',$_GET['create_at']);
|
|
|
- $start_date_time = $time[0].' 00:00:00';
|
|
|
- $end_date_time = $time[1].' 23:59:59';
|
|
|
+ $start_date_time = $time[0];
|
|
|
+ $end_date_time = $time[1];
|
|
|
$list = Db::name('store_member')
|
|
|
->field('pid,count(*) count')
|
|
|
->where('pid','>',0)
|
|
|
+ ->where('bank_num is not null')
|
|
|
->where('is_auth',1)
|
|
|
->where($where)
|
|
|
->whereBetweenTime('create_at',$start_date_time,$end_date_time)
|
|
@@ -142,6 +145,7 @@ class Invite extends Controller
|
|
|
->field('pid,count(*) count')
|
|
|
->where('pid','>',0)
|
|
|
->where('is_auth',1)
|
|
|
+ ->where('bank_num is not null')
|
|
|
->where($where)
|
|
|
->group('pid')
|
|
|
->order('count desc')
|