Courier.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use app\service\queue\ImportTable2Queue;
  16. use app\service\queue\WechatQueue;
  17. use library\Controller;
  18. use think\cache\driver\Redis;
  19. use think\Db;
  20. use think\facade\Validate;
  21. use app\common\library\PHPExcelService;
  22. /**
  23. * 数据管理
  24. * Class help_center
  25. */
  26. class Courier extends Controller
  27. {
  28. /**
  29. * 绑定数据表
  30. * @var string
  31. */
  32. protected $table = 'system_site';
  33. /**
  34. * 数据管理
  35. * @auth true
  36. * @menu true
  37. * @throws \think\Exception
  38. * @throws \think\db\exception\DataNotFoundException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. * @throws \think\exception\DbException
  41. * @throws \think\exception\PDOException
  42. */
  43. public function index()
  44. {
  45. $this->title = '数据管理';
  46. sysoplog('数据管理', '访问数据管理页面');
  47. $query = $this->_query($this->table)->alias('a')
  48. ->leftJoin('system_towns b','a.towns_id=b.id')
  49. ->field('a.*,b.name as towns_name');
  50. if (isset($_GET['towns_name']) && $_GET['towns_name']!=''){
  51. $query->whereLike('b.name','%'.$_GET['towns_name'].'%');
  52. }
  53. if (isset($_GET['name']) && $_GET['name']!=''){
  54. $query->whereLike('a.name','%'.$_GET['name'].'%');
  55. }
  56. $query->order('a.id asc')
  57. ->where('a.is_del',1)
  58. ->page();
  59. }
  60. /**
  61. * 数据列表处理
  62. * @auth true
  63. * @menu true
  64. * @param array $data
  65. * @throws \think\db\exception\DataNotFoundException
  66. * @throws \think\db\exception\ModelNotFoundException
  67. * @throws \think\exception\DbException
  68. */
  69. protected function _index_page_filter(&$data)
  70. {
  71. $kd = Db::name('system_kd')->field('name')->select();
  72. $kd = array_merge([['name' => '总签收']],$kd);
  73. $this->kd = $kd;
  74. $date = '';
  75. $start_date_time = '';
  76. $end_date_time = '';
  77. if (isset($_GET['date']) && $_GET['date']){
  78. $date = $_GET['date'];
  79. $time = explode(' - ',$date);
  80. $start_date_time = $time[0].' 00:00:00';
  81. $end_date_time = $time[1].' 23:59:59';
  82. }
  83. foreach ($data as &$v){
  84. foreach ($kd as &$a){
  85. $v[$a['name']] = Db::name('system_values')
  86. ->where('site_id',$v['id'])
  87. ->where('name',$a['name'])
  88. ->when($date,function ($query) use ($date,$start_date_time,$end_date_time){
  89. $query->whereBetweenTime('date',$start_date_time,$end_date_time);
  90. })
  91. ->sum('value') ? : 0;
  92. }
  93. }
  94. }
  95. }