Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

325 rindas
16 KiB

  1. <?php
  2. /**
  3. *
  4. * ============================================================================
  5. * * 版权所有 蜘蛛出行 * *
  6. * 网站地址: http://www.zhizhuchuxing.com
  7. * ----------------------------------------------------------------------------
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
  9. * 使用;不允许对程序代码以任何形式任何目的的再发布。
  10. * ============================================================================
  11. * Author By: 张帅
  12. * PhpStorm statistical-from.php
  13. * Create By 2017/1/12 11:39 $
  14. */
  15. use backend\modules\zzcs\assets\ZzcsAsset;
  16. use yii\widgets\Pjax;
  17. ZzcsAsset::addCss($this, '/order/css/statistical_form.css');
  18. ZzcsAsset::addCss($this, '/plug/My97DatePicker/skin/WdatePicker.css');
  19. ZzcsAsset::addScript($this, '/order/js/statistical_form.js');
  20. ZzcsAsset::addScript($this, '/plug/My97DatePicker/WdatePicker.js');
  21. ?>
  22. <div class="search_station">
  23. <ul id="search_station">
  24. <li class="search1">
  25. <span>查询维度:</span>
  26. <select class="dimensionality">
  27. <?php foreach ($dimensionality as $key => $vel) { ?>
  28. <option value="<?php echo $key; ?>"><?php echo $vel; ?></option>
  29. <?php } ?>
  30. </select>
  31. </li>
  32. <li class="search1">
  33. <span>口径:</span>
  34. <select class="dimensionality2">
  35. <option value="1">预定日期</option>
  36. <option value="2">出行日期</option>
  37. </select>
  38. </li>
  39. <li class="search1">
  40. <span>线路类型:</span>
  41. <select class="dimensionality3">
  42. <option value="0">全部</option>
  43. <option value="1">市内</option>
  44. <option value="2">省际</option>
  45. </select>
  46. </li>
  47. <li class="search2">
  48. <span>起止日期:</span>
  49. <input type="text" id="start_date" onclick="WdatePicker()" value="<?php echo $start_date; ?>"/>
  50. <span>&nbsp;&nbsp;-&nbsp;&nbsp;</span>
  51. <input type="text" id="end_date" onclick="WdatePicker()" value="<?php echo $end_date; ?>"/>
  52. </li>
  53. <li class="search3">
  54. <span class="btn-primary" id="search_btn" onclick='searchInfo()'>查询</span>
  55. </li>
  56. <li class="search4">
  57. <span class="btn-primary" id="export_btn" onclick='exportInfo()'>导出</span>
  58. </li>
  59. </ul>
  60. </div>
  61. <?php Pjax::begin(['id' => 'main_table', 'timeout' => 30000000]) ?>
  62. <div class="table_list">
  63. <table id="table_list">
  64. <thead>
  65. <tr>
  66. <th class="td1">编号</th>
  67. <th class="td2"><?php echo $statistical_type; ?></th>
  68. <th class="td3">订单数</th>
  69. <th class="td4">人次</th>
  70. <th class="td5">GMV</th>
  71. <!-- <th class="td6">GP</th>-->
  72. <!-- <th class="td7">GP率</th>-->
  73. <th class="td8">订单数月环比</th>
  74. <th class="td9">人次月环比</th>
  75. <th class="td10">GMV月环比</th>
  76. </tr>
  77. </thead>
  78. <tbody>
  79. <!-- 合计 -->
  80. <tr>
  81. <td class="td1" style="color:#0095d9;font-size:larger;">-</td>
  82. <td class="td2" style="color:#0095d9;font-size:larger;">合计</td>
  83. <td class="td3" style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php if (!isset($stat_row['order_num'])) {
  84. $stat_row['order_num'] = 0;
  85. }
  86. echo number_format($stat_row['order_num']); ?></td>
  87. <td class="td4" style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php if (!isset($stat_row['person_trip'])) {
  88. $stat_row['person_trip'] = 0;
  89. }
  90. echo number_format($stat_row['person_trip']); ?></td>
  91. <td class="td5" style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php if (!isset($stat_row['order_price'])) {
  92. $stat_row['order_price'] = 0;
  93. }
  94. echo number_format($stat_row['order_price'], 2); ?></td>
  95. <!-- <td class="td6" style="color:#0095d9;font-size:larger;">-->
  96. <!-- --><?php //if (!isset($stat_row['profit'])) {
  97. // $stat_row['profit'] = 0;
  98. // }
  99. // echo number_format($stat_row['profit'], 2); ?><!--</td>-->
  100. <!-- <td class="td7 --><?php
  101. // if (!isset($stat_row['gross_margin'])) {
  102. // $stat_row['gross_margin'] = '-';
  103. // }
  104. // if ($stat_row['gross_margin'] == '-') {
  105. // $sign = '';
  106. // echo 'gray_color';
  107. // } elseif ($stat_row['gross_margin'] >= 0) {
  108. // $sign = '+';
  109. // echo 'red_color';
  110. // } else {
  111. // $sign = '';
  112. // echo 'green_color';
  113. // } ?><!--">--><?php //echo $sign . $stat_row['gross_margin']; ?><!--</td>-->
  114. <td class="td8 <?php
  115. if (!isset($stat_row['order_num_scale'])) {
  116. $stat_row['order_num_scale'] = '-';
  117. }
  118. if (!isset($stat_row['person_trip_scale'])) {
  119. $stat_row['person_trip_scale'] = '-';
  120. }
  121. if (!isset($stat_row['order_price_scale'])) {
  122. $stat_row['order_price_scale'] = '-';
  123. }
  124. if ($stat_row['order_num_scale'] == '-') {
  125. $sign = '';
  126. echo 'gray_color';
  127. } elseif ($stat_row['order_num_scale'] >= 0) {
  128. $sign = '+';
  129. echo 'red_color';
  130. } else {
  131. $sign = '';
  132. echo 'green_color';
  133. } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['order_num_scale']; ?></td>
  134. <td class="td9 <?php if ($stat_row['person_trip_scale'] == '-') {
  135. $sign = '';
  136. echo 'gray_color';
  137. } elseif ($stat_row['person_trip_scale'] >= 0) {
  138. $sign = '+';
  139. echo 'red_color';
  140. } else {
  141. $sign = '';
  142. echo 'green_color';
  143. } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['person_trip_scale']; ?></td>
  144. <td class="td10 <?php if ($stat_row['order_price_scale'] == '-') {
  145. $sign = '';
  146. echo 'gray_color';
  147. } elseif ($stat_row['order_price_scale'] >= 0) {
  148. $sign = '+';
  149. echo 'red_color';
  150. } else {
  151. $sign = '';
  152. echo 'green_color';
  153. } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['order_price_scale']; ?></td>
  154. </tr>
  155. <!-- end 合计 -->
  156. <?php
  157. if (count($statistical_list) > 0) {
  158. foreach ($statistical_list as $key => $vel) { ?>
  159. <tr>
  160. <td class="td1"><?php echo $vel['no']; ?></td>
  161. <td class="td2"><?php echo $vel['type']; ?></td>
  162. <th class="td3" style="text-align:right;padding-right: 10px;"><?php echo number_format($vel['order_num']); ?></th>
  163. <td class="td4" style="text-align:right;padding-right: 10px;"><?php echo number_format($vel['person_trip']); ?></td>
  164. <td class="td5" style="text-align:right;padding-right: 10px;"><?php echo number_format($vel['order_price'], 2); ?></td>
  165. <!-- <td class="td6 --><?php //if ($vel['profit'] == '-') {
  166. // $sign = '';
  167. // echo 'gray_color';
  168. // } elseif ($vel['profit'] >= 0) {
  169. // $sign = '+';
  170. // echo 'red_color';
  171. // } else {
  172. // $sign = '';
  173. // echo 'green_color';
  174. // } ?><!--">--><?php //echo number_format($vel['profit'], 2); ?><!--</td>-->
  175. <!-- <td class="td7 --><?php //if ($vel['gross_margin'] == '-') {
  176. // $sign = '';
  177. // echo 'gray_color';
  178. // } elseif ($vel['gross_margin'] >= 0) {
  179. // $sign = '+';
  180. // echo 'red_color';
  181. // } else {
  182. // $sign = '';
  183. // echo 'green_color';
  184. // } ?><!--">--><?php //echo $sign . $vel['gross_margin']; ?><!--</td>-->
  185. <td class="td8 <?php if ($vel['order_num_scale'] == '-') {
  186. $sign = '';
  187. echo 'gray_color';
  188. } elseif ($vel['order_num_scale'] >= 0) {
  189. $sign = '+';
  190. echo 'red_color';
  191. } else {
  192. $sign = '';
  193. echo 'green_color';
  194. } ?>" style="text-align:right;padding-right: 10px;"><?php echo $sign . $vel['order_num_scale']; ?></td>
  195. <td class="td9 <?php if ($vel['person_trip_scale'] == '-') {
  196. $sign = '';
  197. echo 'gray_color';
  198. } elseif ($vel['person_trip_scale'] >= 0) {
  199. $sign = '+';
  200. echo 'red_color';
  201. } else {
  202. $sign = '';
  203. echo 'green_color';
  204. } ?>" style="text-align:right;padding-right: 10px;"><?php echo $sign . $vel['person_trip_scale']; ?></td>
  205. <td class="td10 <?php if ($vel['order_price_scale'] == '-') {
  206. $sign = '';
  207. echo 'gray_color';
  208. } elseif ($vel['order_price_scale'] >= 0) {
  209. $sign = '+';
  210. echo 'red_color';
  211. } else {
  212. $sign = '';
  213. echo 'green_color';
  214. } ?>" style="text-align:right;padding-right: 10px;"><?php echo $sign . $vel['order_price_scale']; ?></td>
  215. </tr>
  216. <?php }
  217. } ?>
  218. <!-- 合计 -->
  219. <tr>
  220. <td class="td1" style="color:#0095d9;font-size:larger;">-</td>
  221. <td class="td2" style="color:#0095d9;font-size:larger;">合计</td>
  222. <td class="td3"
  223. style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php echo number_format($stat_row['order_num']); ?></td>
  224. <td class="td4"
  225. style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php echo number_format($stat_row['person_trip']); ?></td>
  226. <td class="td5"
  227. style="color:#0095d9;font-size:larger;text-align:right;padding-right: 10px;"><?php echo number_format($stat_row['order_price'], 2); ?></td>
  228. <!-- <td class="td6" style="color:#0095d9;font-size:larger;">-->
  229. <!-- --><?php //echo number_format($stat_row['profit'], 2); ?><!--</td>-->
  230. <!-- <td class="td7 --><?php //if ($stat_row['gross_margin'] == '-') {
  231. // $sign = '';
  232. // echo 'gray_color';
  233. // } elseif ($stat_row['gross_margin'] >= 0) {
  234. // $sign = '+';
  235. // echo 'red_color';
  236. // } else {
  237. // $sign = '';
  238. // echo 'green_color';
  239. // } ?><!--">--><?php //echo $sign . $stat_row['gross_margin']; ?><!--</td>-->
  240. <td class="td8 <?php if ($stat_row['order_num_scale'] == '-') {
  241. $sign = '';
  242. echo 'gray_color';
  243. } elseif ($stat_row['order_num_scale'] >= 0) {
  244. $sign = '+';
  245. echo 'red_color';
  246. } else {
  247. $sign = '';
  248. echo 'green_color';
  249. } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['order_num_scale']; ?></td>
  250. <td class="td9 <?php if ($stat_row['person_trip_scale'] == '-') {
  251. $sign = '';
  252. echo 'gray_color';
  253. } elseif ($stat_row['person_trip_scale'] >= 0) {
  254. $sign = '+';
  255. echo 'red_color';
  256. } else {
  257. $sign = '';
  258. echo 'green_color';
  259. } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['person_trip_scale']; ?></td>
  260. <td class="td10 <?php if ($stat_row['order_price_scale'] == '-') {
  261. $sign = '';
  262. echo 'gray_color';
  263. } elseif ($stat_row['order_price_scale'] >= 0) {
  264. $sign = '+';
  265. echo 'red_color';
  266. } else {
  267. $sign = '';
  268. echo 'green_color';
  269. } ?>" style="font-size:larger;text-align:right;padding-right: 10px;"><?php echo $sign . $stat_row['order_price_scale']; ?></td>
  270. </tr>
  271. <!-- end 合计 -->
  272. </tbody>
  273. </table>
  274. </div>
  275. <!--页码信息-->
  276. <div id="page_size_d" total_row="<?php echo $page['total_row']; ?>" total_page="<?php echo $page['total_page']; ?>">
  277. <span class="page_size">每页条数</span>
  278. <select id="page_size" onchange="changePageSize(this)">
  279. <?php foreach ($page_size_arr as $key => $vel) {
  280. if ($vel == $page_size) {
  281. echo '<option value="' . $vel . '" selected=selected>' . $vel . '</option>';
  282. } else {
  283. echo '<option value="' . $vel . '">' . $vel . '</option>';
  284. }
  285. } ?>
  286. </select>
  287. </div>
  288. <div id="page_list">
  289. <?php
  290. if (count($page_arr) > 0) {
  291. foreach ($page_arr as $key => $vel) {
  292. if ($page['current_page'] == 1 && ($vel == '首页' || $vel == '<上一页')) {
  293. $class = 'not_click';
  294. } elseif ($page['current_page'] == $vel) {
  295. $class = 'click';
  296. } elseif ($page['current_page'] == $page['total_page'] && ($vel == '末页' || $vel == '下一页>')) {
  297. $class = 'not_click';
  298. } elseif ($vel == '...') {
  299. $class = 'not_click';
  300. } else {
  301. $class = 'clickable';
  302. }
  303. if ($vel != '首页' && $vel != '<上一页' && $vel != '下一页>' && $vel != '末页') {
  304. $class = 'page_num ' . $class;
  305. }
  306. if ($class == 'clickable' || $class == 'page_num clickable') {
  307. echo '<span class="' . $class . '" onclick="pageSearchInfo(this,' . $page['total_page'] . ')">' . $vel . '</span>';
  308. } else {
  309. echo '<span class="' . $class . '">' . $vel . '</span>';
  310. }
  311. }
  312. }
  313. ?>
  314. <span class="total_row">共<?php echo $page['total_row']; ?>条</span>
  315. </div>
  316. <?php Pjax::end() ?>