|
- <?php
- /**
- *
- * ============================================================================
- * * 版权所有 蜘蛛出行 * *
- * 网站地址: http://www.zhizhuchuxing.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
- * 使用;不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * Author By: 张帅
- * PhpStorm statistical-from.php
- * Create By 2017/1/12 11:39 $
- */
-
- use backend\modules\zzcs\assets\ZzcsAsset;
- use yii\widgets\Pjax;
-
- ZzcsAsset::addCss($this, '/order/css/statistical_form.css');
- ZzcsAsset::addCss($this, '/plug/My97DatePicker/skin/WdatePicker.css');
- ZzcsAsset::addScript($this, '/order/js/statistical_form.js');
- ZzcsAsset::addScript($this, '/plug/My97DatePicker/WdatePicker.js');
- ?>
-
- <div class="search_station">
- <ul id="search_station">
- <li class="search1">
- <span>查询维度:</span>
- <select class="dimensionality">
- <?php foreach ($dimensionality as $key => $vel) { ?>
- <option value="<?php echo $key; ?>"><?php echo $vel; ?></option>
- <?php } ?>
- </select>
- </li>
-
- <li class="search1">
- <span>口径:</span>
- <select class="dimensionality2">
- <option value="1">预定日期</option>
- <option value="2">出行日期</option>
- </select>
- </li>
- <li class="search1">
- <span>线路类型:</span>
- <select class="dimensionality3">
- <option value="0">全部</option>
- <option value="1">市内</option>
- <option value="2">省际</option>
- </select>
- </li>
-
- <li class="search2">
- <span>起止日期:</span>
- <input type="text" id="start_date" onclick="WdatePicker()" value="<?php echo $start_date; ?>"/>
- <span> - </span>
- <input type="text" id="end_date" onclick="WdatePicker()" value="<?php echo $end_date; ?>"/>
- </li>
- <li class="search3">
- <span class="btn-primary" id="search_btn" onclick='searchInfo()'>查询</span>
- </li>
- <li class="search4">
- <span class="btn-primary" id="export_btn" onclick='exportInfo()'>导出</span>
- </li>
- </ul>
- </div>
- <?php Pjax::begin(['id' => 'main_table', 'timeout' => 30000000]) ?>
- <div class="table_list">
- <table id="table_list">
- <thead>
- <tr>
- <th class="td1">编号</th>
- <th class="td2"><?php echo $statistical_type; ?></th>
- <th class="td3">订单数</th>
- <th class="td4">人次</th>
- <th class="td5">GMV</th>
- <!-- <th class="td6">GP</th>-->
- <!-- <th class="td7">GP率</th>-->
- <th class="td8">订单数月环比</th>
- <th class="td9">人次月环比</th>
- <th class="td10">GMV月环比</th>
- </tr>
- </thead>
- <tbody>
- <!-- 合计 -->
- <tr>
- <td class="td1" style="color:#0095d9;font-size:larger;">-</td>
- <td class="td2" style="color:#0095d9;font-size:larger;">合计</td>
- <td class="td3" style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php if (!isset($stat_row['order_num'])) {
- $stat_row['order_num'] = 0;
- }
- echo number_format($stat_row['order_num']); ?></td>
- <td class="td4" style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php if (!isset($stat_row['person_trip'])) {
- $stat_row['person_trip'] = 0;
- }
- echo number_format($stat_row['person_trip']); ?></td>
- <td class="td5" style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php if (!isset($stat_row['order_price'])) {
- $stat_row['order_price'] = 0;
- }
- echo number_format($stat_row['order_price'], 2); ?></td>
- <!-- <td class="td6" style="color:#0095d9;font-size:larger;">-->
- <!-- --><?php //if (!isset($stat_row['profit'])) {
- // $stat_row['profit'] = 0;
- // }
- // echo number_format($stat_row['profit'], 2); ?><!--</td>-->
- <!-- <td class="td7 --><?php
- // if (!isset($stat_row['gross_margin'])) {
- // $stat_row['gross_margin'] = '-';
- // }
- // if ($stat_row['gross_margin'] == '-') {
- // $sign = '';
- // echo 'gray_color';
- // } elseif ($stat_row['gross_margin'] >= 0) {
- // $sign = '+';
- // echo 'red_color';
- // } else {
- // $sign = '';
- // echo 'green_color';
- // } ?><!--">--><?php //echo $sign . $stat_row['gross_margin']; ?><!--</td>-->
- <td class="td8 <?php
- if (!isset($stat_row['order_num_scale'])) {
- $stat_row['order_num_scale'] = '-';
- }
- if (!isset($stat_row['person_trip_scale'])) {
- $stat_row['person_trip_scale'] = '-';
- }
- if (!isset($stat_row['order_price_scale'])) {
- $stat_row['order_price_scale'] = '-';
- }
- if ($stat_row['order_num_scale'] == '-') {
- $sign = '';
- echo 'gray_color';
- } elseif ($stat_row['order_num_scale'] >= 0) {
- $sign = '+';
- echo 'red_color';
- } else {
- $sign = '';
- echo 'green_color';
- } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['order_num_scale']; ?></td>
- <td class="td9 <?php if ($stat_row['person_trip_scale'] == '-') {
- $sign = '';
- echo 'gray_color';
- } elseif ($stat_row['person_trip_scale'] >= 0) {
- $sign = '+';
- echo 'red_color';
- } else {
- $sign = '';
- echo 'green_color';
- } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['person_trip_scale']; ?></td>
- <td class="td10 <?php if ($stat_row['order_price_scale'] == '-') {
- $sign = '';
- echo 'gray_color';
- } elseif ($stat_row['order_price_scale'] >= 0) {
- $sign = '+';
- echo 'red_color';
- } else {
- $sign = '';
- echo 'green_color';
- } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['order_price_scale']; ?></td>
- </tr>
- <!-- end 合计 -->
- <?php
- if (count($statistical_list) > 0) {
- foreach ($statistical_list as $key => $vel) { ?>
- <tr>
- <td class="td1"><?php echo $vel['no']; ?></td>
- <td class="td2"><?php echo $vel['type']; ?></td>
- <th class="td3" style="text-align:right;padding-right: 10px;"><?php echo number_format($vel['order_num']); ?></th>
- <td class="td4" style="text-align:right;padding-right: 10px;"><?php echo number_format($vel['person_trip']); ?></td>
- <td class="td5" style="text-align:right;padding-right: 10px;"><?php echo number_format($vel['order_price'], 2); ?></td>
- <!-- <td class="td6 --><?php //if ($vel['profit'] == '-') {
- // $sign = '';
- // echo 'gray_color';
- // } elseif ($vel['profit'] >= 0) {
- // $sign = '+';
- // echo 'red_color';
- // } else {
- // $sign = '';
- // echo 'green_color';
- // } ?><!--">--><?php //echo number_format($vel['profit'], 2); ?><!--</td>-->
- <!-- <td class="td7 --><?php //if ($vel['gross_margin'] == '-') {
- // $sign = '';
- // echo 'gray_color';
- // } elseif ($vel['gross_margin'] >= 0) {
- // $sign = '+';
- // echo 'red_color';
- // } else {
- // $sign = '';
- // echo 'green_color';
- // } ?><!--">--><?php //echo $sign . $vel['gross_margin']; ?><!--</td>-->
- <td class="td8 <?php if ($vel['order_num_scale'] == '-') {
- $sign = '';
- echo 'gray_color';
- } elseif ($vel['order_num_scale'] >= 0) {
- $sign = '+';
- echo 'red_color';
- } else {
- $sign = '';
- echo 'green_color';
- } ?>" style="text-align:right;padding-right: 10px;"><?php echo $sign . $vel['order_num_scale']; ?></td>
- <td class="td9 <?php if ($vel['person_trip_scale'] == '-') {
- $sign = '';
- echo 'gray_color';
- } elseif ($vel['person_trip_scale'] >= 0) {
- $sign = '+';
- echo 'red_color';
- } else {
- $sign = '';
- echo 'green_color';
- } ?>" style="text-align:right;padding-right: 10px;"><?php echo $sign . $vel['person_trip_scale']; ?></td>
- <td class="td10 <?php if ($vel['order_price_scale'] == '-') {
- $sign = '';
- echo 'gray_color';
- } elseif ($vel['order_price_scale'] >= 0) {
- $sign = '+';
- echo 'red_color';
- } else {
- $sign = '';
- echo 'green_color';
- } ?>" style="text-align:right;padding-right: 10px;"><?php echo $sign . $vel['order_price_scale']; ?></td>
- </tr>
- <?php }
- } ?>
-
- <!-- 合计 -->
- <tr>
- <td class="td1" style="color:#0095d9;font-size:larger;">-</td>
- <td class="td2" style="color:#0095d9;font-size:larger;">合计</td>
- <td class="td3"
- style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php echo number_format($stat_row['order_num']); ?></td>
- <td class="td4"
- style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php echo number_format($stat_row['person_trip']); ?></td>
- <td class="td5"
- style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php echo number_format($stat_row['order_price'], 2); ?></td>
- <!-- <td class="td6" style="color:#0095d9;font-size:larger;">-->
- <!-- --><?php //echo number_format($stat_row['profit'], 2); ?><!--</td>-->
- <!-- <td class="td7 --><?php //if ($stat_row['gross_margin'] == '-') {
- // $sign = '';
- // echo 'gray_color';
- // } elseif ($stat_row['gross_margin'] >= 0) {
- // $sign = '+';
- // echo 'red_color';
- // } else {
- // $sign = '';
- // echo 'green_color';
- // } ?><!--">--><?php //echo $sign . $stat_row['gross_margin']; ?><!--</td>-->
- <td class="td8 <?php if ($stat_row['order_num_scale'] == '-') {
- $sign = '';
- echo 'gray_color';
- } elseif ($stat_row['order_num_scale'] >= 0) {
- $sign = '+';
- echo 'red_color';
- } else {
- $sign = '';
- echo 'green_color';
- } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['order_num_scale']; ?></td>
- <td class="td9 <?php if ($stat_row['person_trip_scale'] == '-') {
- $sign = '';
- echo 'gray_color';
- } elseif ($stat_row['person_trip_scale'] >= 0) {
- $sign = '+';
- echo 'red_color';
- } else {
- $sign = '';
- echo 'green_color';
- } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['person_trip_scale']; ?></td>
- <td class="td10 <?php if ($stat_row['order_price_scale'] == '-') {
- $sign = '';
- echo 'gray_color';
- } elseif ($stat_row['order_price_scale'] >= 0) {
- $sign = '+';
- echo 'red_color';
- } else {
- $sign = '';
- echo 'green_color';
- } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['order_price_scale']; ?></td>
- </tr>
- <!-- end 合计 -->
-
- </tbody>
- </table>
- </div>
-
-
- <!--页码信息-->
- <div id="page_size_d" total_row="<?php echo $page['total_row']; ?>" total_page="<?php echo $page['total_page']; ?>">
- <span class="page_size">每页条数</span>
- <select id="page_size" onchange="changePageSize(this)">
- <?php foreach ($page_size_arr as $key => $vel) {
- if ($vel == $page_size) {
- echo '<option value="' . $vel . '" selected=selected>' . $vel . '</option>';
- } else {
- echo '<option value="' . $vel . '">' . $vel . '</option>';
- }
- } ?>
- </select>
- </div>
- <div id="page_list">
- <?php
- if (count($page_arr) > 0) {
- foreach ($page_arr as $key => $vel) {
- if ($page['current_page'] == 1 && ($vel == '首页' || $vel == '<上一页')) {
- $class = 'not_click';
- } elseif ($page['current_page'] == $vel) {
- $class = 'click';
- } elseif ($page['current_page'] == $page['total_page'] && ($vel == '末页' || $vel == '下一页>')) {
- $class = 'not_click';
- } elseif ($vel == '...') {
- $class = 'not_click';
- } else {
- $class = 'clickable';
- }
- if ($vel != '首页' && $vel != '<上一页' && $vel != '下一页>' && $vel != '末页') {
- $class = 'page_num ' . $class;
- }
- if ($class == 'clickable' || $class == 'page_num clickable') {
- echo '<span class="' . $class . '" onclick="pageSearchInfo(this,' . $page['total_page'] . ')">' . $vel . '</span>';
- } else {
- echo '<span class="' . $class . '">' . $vel . '</span>';
- }
- }
- }
- ?>
- <span class="total_row">共<?php echo $page['total_row']; ?>条</span>
- </div>
- <?php Pjax::end() ?>
|