You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

179 rivejä
7.6 KiB

  1. <?php
  2. use backend\modules\motorcade\models\searchDocument;
  3. use backend\modules\motorcade\models\RunBusExpenses;
  4. use yii\widgets\Pjax;
  5. /* @var $this yii\web\View */
  6. /* @var $searchModel backend\modules\motorcade\models\searchDocument */
  7. /* @var $dataProvider yii\data\ActiveDataProvider */
  8. $this->title = '车辆预警';
  9. $this->params['breadcrumbs'][] = $this->title;
  10. ?>
  11. <style>
  12. .c_red {
  13. color: #e02222;
  14. }
  15. .date{
  16. width: 275px!important;
  17. }
  18. .search_name_this {
  19. display: inline-block !important;
  20. /*padding-left: 40px!important;*/
  21. padding-left: 0px !important;
  22. width: 91px !important;
  23. text-align: right !important;
  24. color:#80889a;
  25. }
  26. .search_name {
  27. display: inline-block !important;
  28. /*padding-left: 40px!important;*/
  29. padding-left: 15px !important;
  30. width: 115px !important;
  31. text-align: right !important;;
  32. }
  33. #bussearch-bus_belong > label {
  34. margin-left: 5px;
  35. margin-right: 10px
  36. }
  37. .form-inline {
  38. margin-bottom: 25px;
  39. margin-left: 0px;
  40. }
  41. .form-horizontal .form-group{
  42. margin-right: 0!important;
  43. margin-left: 0!important;
  44. }
  45. .span_left{
  46. width: 90px;text-align:right;display:inline-block;color:#80889a;
  47. }
  48. li>a{
  49. color:#80889a;
  50. }
  51. li>.active>a{
  52. color:#3e4355;
  53. }
  54. .old-nav{
  55. color: #80889a;
  56. cursor: pointer;
  57. }
  58. .old-nav:hover,.old-nav:focus,.old-nav:active{
  59. text-decoration: none;
  60. }
  61. .new-nav{
  62. color: #3e4355;
  63. text-decoration: none;
  64. }
  65. .new-nav:hover,.new-nav:focus,.new-nav:active{
  66. text-decoration: none;
  67. }
  68. label{
  69. color:#80889a;
  70. }
  71. .help-block{
  72. display: none!important;
  73. margin-bottom:6px!important;
  74. }
  75. .pagination{
  76. float: right;
  77. }
  78. .nav_title>li {
  79. width: auto !important;
  80. }
  81. </style>
  82. <?php $this->registerJs('z.init()'); ?>
  83. <div class="iframe_box">
  84. <?php
  85. $dataProviders = [];
  86. $dataProviders[1] = unserialize(serialize($dataProvider));
  87. $dataProviders[2] = unserialize(serialize($dataProvider));
  88. $dataProviders[3] = unserialize(serialize($dataProvider));
  89. $dataProviders[3]->query->addSelect([searchDocument::tableName() . '.*', 'sum(if(EXPIRE_DATE>="' . date('Y-m-d') . '",1,0)) as countInsurance']);
  90. $dataProviders[4] = unserialize(serialize($dataProvider));
  91. $dataProviders[4]->query->addSelect([searchDocument::tableName() . '.*', 'sum(if(EXPIRE_DATE>="' . date('Y-m-d') . '",1,0)) as countInsurance']);
  92. $dataProviders[5] = unserialize(serialize($dataProvider));
  93. $dataProviders[5]->query->addSelect([searchDocument::tableName() . '.*', 'sum(if(EXPIRE_DATE>="' . date('Y-m-d') . '",1,0)) as countInsurance']);
  94. $dataProviders[6] = unserialize(serialize($dataProvider));
  95. foreach ($dataProviders as $tab => &$item) {
  96. $item->query->andFilterWhere(['DOC_OPTION' => searchDocument::getDocOption($tab, 'bus')]);
  97. }
  98. //保养的预警和其他的不一样,不以时间为限,以里程数限制
  99. //::todo 有接口的,可以通过GPS直接取到当前里程数值,
  100. //没有取到的,通过报账数据run_bus_expense获取当前里程数
  101. // dict_type 462 没电费
  102. $query = $dataProviders[6]->query;
  103. $query->addSelect([searchDocument::tableName() . '.*', 'end_value']);
  104. $query->leftJoin(
  105. RunBusExpenses::tableName(),
  106. searchDocument::tableName() . ".DOC_ID = " . RunBusExpenses::tableName() . ".bus_res_id and " .
  107. RunBusExpenses::tableName() . ".end_value = (select max(end_value) from " . RunBusExpenses::tableName() . " where expense_subject_id = 462 and bus_res_id = DOC_ID)")
  108. ->andWhere('LAST_MAINTAIN < if(end_value is null,0,end_value) + ' . searchDocument::WARNING_MILE);
  109. $query->having = '';
  110. ?>
  111. <ul class="nav nav-tabs nav_title" role="tablist">
  112. <li href="#tab1" role="presentation" class="active" data-toggle="tab">
  113. <a style="cursor: pointer;width:126px;text-align: center">车辆行驶证
  114. <span class="label label-danger" <?= $dataProviders[1]->totalCount>0?$dataProviders[1]->totalCount : 'style="visibility:hidden"' ?>><?= $dataProviders[1]->totalCount ?></span>
  115. </a>
  116. </li>
  117. <li href="#tab2"
  118. role="presentation" class="" data-toggle="tab">
  119. <a style="cursor: pointer;width:126px;text-align: center">道路运输证
  120. <span class="label label-danger" <?= $dataProviders[2]->totalCount>0?$dataProviders[2]->totalCount : 'style="visibility:hidden"' ?>><?= $dataProviders[2]->totalCount ?></span>
  121. </a>
  122. </li>
  123. <li href="#tab3" role="presentation" data-toggle="tab" class="">
  124. <a style="cursor: pointer;width:126px;text-align: center">交强险
  125. <span class="label label-danger" <?= $dataProviders[3]->totalCount>0?$dataProviders[3]->totalCount : 'style="visibility:hidden"' ?>><?= $dataProviders[3]->totalCount ?></span>
  126. </a>
  127. </li>
  128. <li href="#tab4" role="presentation" data-toggle="tab" class="">
  129. <a style="cursor: pointer;width:126px;text-align: center">商业险
  130. <span class="label label-danger" <?= $dataProviders[4]->totalCount>0?$dataProviders[4]->totalCount : 'style="visibility:hidden"' ?>><?= $dataProviders[4]->totalCount?></span>
  131. </a>
  132. </li>
  133. <li href="#tab5" role="presentation" data-toggle="tab" class="">
  134. <a style="cursor: pointer;width:126px;text-align: center">座位险
  135. <span class="label label-danger" <?= $dataProviders[5]->totalCount>0?$dataProviders[5]->totalCount : 'style="visibility:hidden"' ?>><?= $dataProviders[5]->totalCount ?></span>
  136. </a>
  137. </li>
  138. <li href="#tab6" role="presentation" data-toggle="tab" class="">
  139. <a style="cursor: pointer;width:126px;text-align: center">保养
  140. <span class="label label-danger" <?= $dataProviders[6]->totalCount>0?$dataProviders[6]->totalCount : 'style="visibility:hidden"' ?>><?= $dataProviders[6]->totalCount ?></span>
  141. </a>
  142. </li>
  143. </ul>
  144. <div class="tab-content table_box">
  145. <div class="tab-pane active" role="tabpanel" id="tab1">
  146. <?php echo$this->render('_bus-tab', ['searchModel' => $searchModel, 'dataProvider' => $dataProviders[1], 'tab' => 1]) ?>
  147. </div>
  148. <div class="tab-pane" role="tabpanel" id="tab2">
  149. <?php echo $this->render('_bus-tab', ['searchModel' => $searchModel, 'dataProvider' => $dataProviders[2], 'tab' => 2]) ?>
  150. </div>
  151. <div class="tab-pane" role="tabpanel" id="tab3">
  152. <?php echo $this->render('_bus-tab', ['searchModel' => $searchModel, 'dataProvider' => $dataProviders[3], 'tab' => 3]) ?>
  153. </div>
  154. <div class="tab-pane" role="tabpanel" id="tab4">
  155. <?php echo $this->render('_bus-tab', ['searchModel' => $searchModel, 'dataProvider' => $dataProviders[4], 'tab' => 4]) ?>
  156. </div>
  157. <div class="tab-pane" role="tabpanel" id="tab5">
  158. <?php echo $this->render('_bus-tab', ['searchModel' => $searchModel, 'dataProvider' => $dataProviders[5], 'tab' => 5]) ?>
  159. </div>
  160. <div class="tab-pane" role="tabpanel" id="tab6">
  161. <?php echo $this->render('_bus-tab', ['searchModel' => $searchModel, 'dataProvider' => $dataProviders[6], 'tab' => 6]) ?>
  162. </div>
  163. </div>
  164. </div>
  165. <?php echo $this->render('_images_bus') ?>
  166. <?php echo $this->render('_images_insurance') ?>
  167. <?php echo $this->render('_images_maintain') ?>