|
@@ -149,12 +149,19 @@ class CollectInfo extends Controller
|
|
|
|
|
|
public function export_excl()
|
|
public function export_excl()
|
|
{
|
|
{
|
|
|
|
+ set_time_limit(0);
|
|
|
|
+ $goods_id = input('goods_id');;
|
|
|
|
+ $sel_where = [];
|
|
|
|
+ $sel_where[] = ['i.c_id','=',$goods_id];
|
|
|
|
+ $sel_where[] = ['i.resale_status','in','1,2'];
|
|
|
|
+ $sel_where[] = ['i.is_destruction','=',1];
|
|
|
|
+ $sel_where[] = ['i.status','<>',2];
|
|
$list = Db::name('store_order_info')
|
|
$list = Db::name('store_order_info')
|
|
->alias('i')
|
|
->alias('i')
|
|
->field('count(i.id) num,i.name,i.mid,u.phone,u.name user_name')
|
|
->field('count(i.id) num,i.name,i.mid,u.phone,u.name user_name')
|
|
->join('store_member u','u.id = i.mid','left')
|
|
->join('store_member u','u.id = i.mid','left')
|
|
->group('i.mid')
|
|
->group('i.mid')
|
|
- ->order('num desc')->select();
|
|
|
|
|
|
+ ->order('num desc')->where($sel_where)->select();
|
|
$export = [];
|
|
$export = [];
|
|
foreach ($list as $value){
|
|
foreach ($list as $value){
|
|
$export[] = [
|
|
$export[] = [
|