Tyexcel.php 15.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
<?php

namespace app\api\controller;

use app\common\controller\Api;
use think\console\command\make\Controller;
use think\Db;
use think\Request;

class Tyexcel extends Api
{
    protected $noNeedLogin = ['*'];
    protected $noNeedRight = ['*'];
    protected $rid;
    protected $startime;
    protected $startime2;
    protected $endtime;
    protected $resvinfo;

    //构造函数
    public function _initialize()
    {
        parent::_initialize();
        $this->rid = $this->request->param('rid', 23);
        $this->startime = $this->request->param('startime', date("Y-m-d", strtotime("-3 month")));
        $this->startime2 = $this->request->param('startime', date("Y-m-d", strtotime("-3 day")));
        $this->endtime = $this->request->param('endtime', date('Y-m-d', time()));

        //水库信息
        $this->resvinfo = Db::name('reservoir_list')
            ->where(['id' => $this->rid])
            ->find();
    }

    /**
     * 降雨量列表
     *
     */
    public function resvRainList()
    {
        if ($this->request->isPost()) {
            $rid = $this->request->post('rid', 23);
            $resvinfo = Db::name('reservoir_list')
                ->where(['id' => $rid])
                ->find();
            //时间段处理
            $stime = strtotime($this->startime2);
            $etime = strtotime($this->endtime) + 24 * 3600 - 1;

            $where2["createtime"] = ["between", [$stime, $etime]];
            $result = Db::name('reservoir_rain_rainfall')
                ->where(['reservoir_id' => $rid])
                ->where($where2)
                ->field('id,number,total_rainfall,createtime')
                ->order('id', 'desc')
                ->limit(100)
                ->select();
            foreach ($result as $k => $v) {
                $result[$k]['name'] = $resvinfo['name'];
                $result[$k]['createtime'] = date('Y-m-d H:i:s', $v['createtime']);
            }

            $this->success('获取成功', $result);
        }
    }

    /**
     * 导出表
     * 降雨量
     */
    public function resvRainExcel()
    {
        $rid = $this->rid;
        $resv = $this->resvinfo;
        //时间段处理

        $stime = strtotime($this->startime);
        $etime = strtotime($this->endtime) + 24 * 3600 - 1;


        $where2["createtime"] = ["between", [$stime, $etime]];
        $result = Db::name('reservoir_rain_rainfall')
            ->where(['reservoir_id' => $rid])
            ->where($where2)
            //->where('createtime between ' . $stime . ' and ' . $etime)
            ->field('number,total_rainfall,createtime')
            ->order('id', 'desc')
            ->group("createtime")
            ->select();
        Vendor('PHPExcel.PHPExcel');//调用类库,路径是基于vendor文件夹的
        Vendor('PHPExcel.PHPExcel.Worksheet.Drawing');
        Vendor('PHPExcel.PHPExcel.Writer.Excel2007');
        //实例化
        $objExcel = new \PHPExcel();
        //设置文档属性
        $objWriter = \PHPExcel_IOFactory::createWriter($objExcel, 'Excel2007');
        //设置内容

        $objActSheet = $objExcel->getActiveSheet();
        $key = ord("A");
        $letter = explode(',', "A,B,C,D,E");
        $arrHeader = array('序号', '水库', '设备编号', '日降雨量', "采集时间");

        //填充表头信息
        $lenth = count($arrHeader);
        for ($i = 0; $i < $lenth; $i++) {
            $objActSheet->setCellValue("$letter[$i]1", "$arrHeader[$i]");
        };
        //填充表格信息
        foreach ($result as $k => $v) {
            $j = $k + 1;
            $k += 2;
            $objActSheet->setCellValue('A' . $k, $j);
            $objActSheet->setCellValue('B' . $k, $resv['name']);
            $objActSheet->setCellValue('C' . $k, $v['number']);
            $objActSheet->setCellValue('D' . $k, $v['total_rainfall']);
            $objActSheet->setCellValue('E' . $k, date('Y-m-d H:i:s', $v['createtime']));
            $objActSheet->getColumnDimension('B')->setWidth(20);
            $objActSheet->getColumnDimension('C')->setWidth(20);
            $objActSheet->getColumnDimension('D')->setWidth(20);
        }
        $outfile = $resv["name"] . '降雨量_' . date('YmdHis', time()) . ".xlsx";
        ob_end_clean();
        header("Content-Type: application/force-download");
        header("Content-Type: application/octet-stream");
        header("Content-Type: application/download");
        header('Content-Disposition:inline;filename="' . $outfile . '"');
        header("Content-Transfer-Encoding: binary");
        header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
        header("Pragma: no-cache");
        $objWriter->save('php://output');
    }

    /**
     * 水位列表
     *
     */
    public function resvWaterList()
    {
        if ($this->request->isPost()) {
            $rid = $this->request->post('rid', 23);
            $resvinfo = Db::name('reservoir_list')
                ->where(['id' => $rid])
                ->find();
            //时间段处理
            $stime = strtotime($this->startime2);
            $etime = strtotime($this->endtime) + 24 * 3600 - 1;

            $where2["createtime"] = ["between", [$stime, $etime]];
            $result = Db::name('reservoir_rain_water_level')
                ->where(['reservoir_id' => $rid])
                ->where($where2)
                ->field('id,number,water_level,createtime')
                ->order('id', 'desc')
                ->select();
            foreach ($result as $k => $v) {
                $result[$k]['name'] = $resvinfo['name'];
                $result[$k]['createtime'] = date('Y-m-d H:i:s', $v['createtime']);
            }

            $this->success('获取成功', $result);
        }
    }

    /**
     * 水库水位管理
     *导出表
     */
    public function resvWaterLevel()
    {
        ini_set('memory_limit', '256M');
        $rid = $this->rid;
        $resv = $this->resvinfo;
        //时间段处理

        $stime = strtotime($this->startime);
        $etime = strtotime($this->endtime) + 24 * 3600 - 1;

        $where2["createtime"] = ["between", [$stime, $etime]];

        $rlevel = Db::name('reservoir_rain_water_level')
            ->where(['reservoir_id' => $rid])
            ->where($where2)
            ->field('id,number,water_level,createtime')
            ->order('id', 'desc')
            ->group("createtime")
            ->select();

        Vendor('PHPExcel.PHPExcel');//调用类库,路径是基于vendor文件夹的
        Vendor('PHPExcel.PHPExcel.Worksheet.Drawing');
        Vendor('PHPExcel.PHPExcel.Writer.Excel2007');
        //实例化
        $objExcel = new \PHPExcel();
        //设置文档属性
        $objWriter = \PHPExcel_IOFactory::createWriter($objExcel, 'Excel2007');
        //设置内容

        $objActSheet = $objExcel->getActiveSheet();
        $key = ord("A");
        $letter = explode(',', "A,B,C,D,E");
        $arrHeader = array('序号', '水库', '设备编号', '日水位', "采集时间");

        //填充表头信息
        $lenth = count($arrHeader);
        for ($i = 0; $i < $lenth; $i++) {
            $objActSheet->setCellValue("$letter[$i]1", "$arrHeader[$i]");
        };
        //填充表格信息
        foreach ($rlevel as $k => $v) {
            $j = $k + 1;
            $k += 2;

            $objActSheet->setCellValue('A' . $k, $j);
            $objActSheet->setCellValue('B' . $k, $resv['name']);
            $objActSheet->setCellValue('C' . $k, $v['number']);
            $objActSheet->setCellValue('D' . $k, $v['water_level']);
            $objActSheet->setCellValue('E' . $k, date('Y-m-d H:i:s', $v['createtime']));
            $objActSheet->getColumnDimension('B')->setWidth(20);
            $objActSheet->getColumnDimension('C')->setWidth(20);
            $objActSheet->getColumnDimension('D')->setWidth(20);

        }
        $outfile = $resv["name"] . '水位统计_' . date('YmdHis', time()) . ".xlsx";
        ob_end_clean();
        header("Content-Type: application/force-download");
        header("Content-Type: application/octet-stream");
        header("Content-Type: application/download");
        header('Content-Disposition:inline;filename="' . $outfile . '"');
        header("Content-Transfer-Encoding: binary");
        header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
        header("Pragma: no-cache");
        $objWriter->save('php://output');
    }

    /**
     *渗压列表
     *
     */
    public function isotList()
    {
        if ($this->request->isPost()) {
            $rid = $this->request->post('rid', 23);
            $resvinfo = Db::name('reservoir_list')
                ->where(['id' => $rid])
                ->find();
            //时间段处理
            $stime = strtotime($this->startime2);
            $etime = strtotime($this->endtime) + 24 * 3600 - 1;

            $where2["createtime"] = ["between", [$stime, $etime]];
            $result = Db::name('reservoir_dam_isotonic')
                ->where(['reservoir_id' => $rid])
                ->where($where2)
                ->field('id,equipment_id,value,createtime')
                ->order('id', 'desc')
                ->select();
            foreach ($result as $k => $v) {
                $result[$k]['name'] = $resvinfo['name'];
                $result[$k]['createtime'] = date('Y-m-d H:i:s', $v['createtime']);
            }

            $this->success('获取成功', $result);
        }
    }

    /**
     *渗压记录
     * 导出表
     *
     */
    public function isotListExcel()
    {
        $rid = $this->rid;
        $resv = $this->resvinfo;
        //时间段处理
        $stime = strtotime($this->startime);
        $etime = strtotime($this->endtime) + 24 * 3600 - 1;

        $where2["createtime"] = ["between", [$stime, $etime]];
        $result = Db::name('reservoir_dam_isotonic')
            ->where(['reservoir_id' => $rid])
            ->where($where2)
            ->field('id,equipment_id,value,createtime')
            ->order('id', 'desc')
            ->group("createtime")
            ->select();
        Vendor('PHPExcel.PHPExcel');//调用类库,路径是基于vendor文件夹的
        Vendor('PHPExcel.PHPExcel.Worksheet.Drawing');
        Vendor('PHPExcel.PHPExcel.Writer.Excel2007');
        //实例化
        $objExcel = new \PHPExcel();
        //设置文档属性
        $objWriter = \PHPExcel_IOFactory::createWriter($objExcel, 'Excel2007');
        //设置内容

        $objActSheet = $objExcel->getActiveSheet();
        $key = ord("A");
        $letter = explode(',', "A,B,C,D,E");
        $arrHeader = array('序号', '水库', '设备编号', '渗压值', "采集时间");

        //填充表头信息
        $lenth = count($arrHeader);
        for ($i = 0; $i < $lenth; $i++) {
            $objActSheet->setCellValue("$letter[$i]1", "$arrHeader[$i]");
        };
        //填充表格信息
        foreach ($result as $k => $v) {
            $j = $k + 1;
            $k += 2;

            $objActSheet->setCellValue('A' . $k, $j);
            $objActSheet->setCellValue('B' . $k, $resv['name']);
            $objActSheet->setCellValue('C' . $k, $v['equipment_id']);
            $objActSheet->setCellValue('D' . $k, $v['value']);
            $objActSheet->setCellValue('E' . $k, date('Y-m-d H:i:s', $v['createtime']));
            $objActSheet->getColumnDimension('B')->setWidth(20);
            $objActSheet->getColumnDimension('C')->setWidth(20);
            $objActSheet->getColumnDimension('D')->setWidth(20);
        }
        $outfile = $resv["name"] . '渗压记录_' . date('YmdHis', time()) . ".xlsx";
        ob_end_clean();
        header("Content-Type: application/force-download");
        header("Content-Type: application/octet-stream");
        header("Content-Type: application/download");
        header('Content-Disposition:inline;filename="' . $outfile . '"');
        header("Content-Transfer-Encoding: binary");
        header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
        header("Pragma: no-cache");
        $objWriter->save('php://output');
    }

    /***
     *地表位移记录列表
     */
    public function damDisplace()
    {
        if ($this->request->isPost()) {
            $rid = $this->request->post('rid', 23);
            $resvinfo = Db::name('reservoir_list')
                ->where(['id' => $rid])
                ->find();
            //时间段处理
            $stime = strtotime($this->startime2);
            $etime = strtotime($this->endtime) + 24 * 3600 - 1;

            $where2["createtime"] = ["between", [$stime, $etime]];
            $result = Db::name('reservoir_dam_displacement')
                ->where(['reservoir_id' => $rid])
                ->where($where2)
                ->field('id,number,vertical,horizontal,horizontalY,createtime')
                ->order('id', 'desc')
                ->select();
            foreach ($result as $k => $v) {
                $result[$k]['name'] = $resvinfo['name'];
                $result[$k]['createtime'] = date('Y-m-d H:i:s', $v['createtime']);
            }

            $this->success('获取成功', $result);
        }
    }

    /***
     *地表位移记录
     * 导出表
     */
    public function damDisplaceExcel()
    {
        $rid = $this->rid;
        $resv = $this->resvinfo;
        //时间段处理
        $stime = strtotime($this->startime);
        $etime = strtotime($this->endtime) + 24 * 3600 - 1;

        $where2["createtime"] = ["between", [$stime, $etime]];
        $result = Db::name('reservoir_dam_displacement')
            ->where(['reservoir_id' => $rid])
            ->where($where2)
            ->field('id,number,vertical,horizontal,horizontalY,createtime')
            ->order('id', 'desc')
            ->group("createtime")
            ->select();
        Vendor('PHPExcel.PHPExcel');//调用类库,路径是基于vendor文件夹的
        Vendor('PHPExcel.PHPExcel.Worksheet.Drawing');
        Vendor('PHPExcel.PHPExcel.Writer.Excel2007');
        //实例化
        $objExcel = new \PHPExcel();
        //设置文档属性
        $objWriter = \PHPExcel_IOFactory::createWriter($objExcel, 'Excel2007');
        //设置内容

        $objActSheet = $objExcel->getActiveSheet();
        $key = ord("A");
        $letter = explode(',', "A,B,C,D,E,F,G");
        $arrHeader = array('序号', '水库', '设备编号', 'Z垂直位移', 'X水平位移', 'Y水平位移', "采集时间");

        //填充表头信息
        $lenth = count($arrHeader);
        for ($i = 0; $i < $lenth; $i++) {
            $objActSheet->setCellValue("$letter[$i]1", "$arrHeader[$i]");
        };
        //填充表格信息
        foreach ($result as $k => $v) {
            $j = $k + 1;
            $k += 2;

            $objActSheet->setCellValue('A' . $k, $j);
            $objActSheet->setCellValue('B' . $k, $resv['name']);
            $objActSheet->setCellValue('C' . $k, $v['number']);
            $objActSheet->setCellValue('D' . $k, $v['vertical']);
            $objActSheet->setCellValue('E' . $k, $v['horizontal']);
            $objActSheet->setCellValue('F' . $k, $v['horizontalY']);
            $objActSheet->setCellValue('G' . $k, date('Y-m-d H:i:s', $v['createtime']));
            $objActSheet->getColumnDimension('B')->setWidth(20);
            $objActSheet->getColumnDimension('C')->setWidth(20);
            $objActSheet->getColumnDimension('D')->setWidth(20);
        }
        $outfile = $resv["name"] . '位移记录_' . date('YmdHis', time()) . ".xlsx";
        ob_end_clean();
        header("Content-Type: application/force-download");
        header("Content-Type: application/octet-stream");
        header("Content-Type: application/download");
        header('Content-Disposition:inline;filename="' . $outfile . '"');
        header("Content-Transfer-Encoding: binary");
        header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
        header("Pragma: no-cache");
        $objWriter->save('php://output');
    }

}