123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\admin\controller;
- use app\service\queue\ImportTable2Queue;
- use app\service\queue\WechatQueue;
- use library\Controller;
- use think\cache\driver\Redis;
- use think\Db;
- use think\facade\Validate;
- use app\common\library\PHPExcelService;
- /**
- * 数据管理
- * Class help_center
- */
- class Courier extends Controller
- {
-
- /**
- * 绑定数据表
- * @var string
- */
- protected $table = 'system_site';
- /**
- * 数据管理
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- $this->title = '数据管理';
- sysoplog('数据管理', '访问数据管理页面');
- $query = $this->_query($this->table)->alias('a')
- ->leftJoin('system_towns b','a.towns_id=b.id')
- ->field('a.*,b.name as towns_name');
- if (isset($_GET['towns_name']) && $_GET['towns_name']!=''){
- $query->whereLike('b.name','%'.$_GET['towns_name'].'%');
- }
- if (isset($_GET['name']) && $_GET['name']!=''){
- $query->whereLike('a.name','%'.$_GET['name'].'%');
- }
- $query->order('a.id asc')
- ->where('a.is_del',1)
- ->page();
- }
- /**
- * 数据列表处理
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _index_page_filter(&$data)
- {
- $kd = Db::name('system_kd')->field('name')->select();
- $kd = array_merge([['name' => '总签收']],$kd);
- $this->kd = $kd;
- $date = '';
- $start_date_time = '';
- $end_date_time = '';
- if (isset($_GET['date']) && $_GET['date']){
- $date = $_GET['date'];
- $time = explode(' - ',$date);
- $start_date_time = $time[0].' 00:00:00';
- $end_date_time = $time[1].' 23:59:59';
- }
- foreach ($data as &$v){
- foreach ($kd as &$a){
- $v[$a['name']] = Db::name('system_values')
- ->where('site_id',$v['id'])
- ->where('name',$a['name'])
- ->when($date,function ($query) use ($date,$start_date_time,$end_date_time){
- $query->whereBetweenTime('date',$start_date_time,$end_date_time);
- })
- ->sum('value') ? : 0;
- }
- }
- }
- }
|