Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

372 řádky
20 KiB

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Steven
  5. * Date: 2017/1/6
  6. * Time: 10:03
  7. */
  8. /* @var $this yii\web\View */
  9. /* @var $data array */
  10. use yii\widgets\Pjax;
  11. use yii\helpers\Html;
  12. use common\components\zGridView;
  13. use backend\modules\motorcade\assets\motorcadeUIAsset;
  14. use backend\modules\motorcade\models\BaseBus;
  15. motorcadeUIAsset::register($this);
  16. motorcadeUIAsset::addScript($this, '/js/dispatch.js?v=0.07');
  17. $driver_bus_search = $data['driver_bus_search'];
  18. $active = $data['active'];
  19. echo Html::hiddenInput('searchDate', $data['searchDate'], ['id' => 'searchDate']);
  20. ?>
  21. <style>
  22. .search_name {
  23. padding-left: 14px;
  24. }
  25. .modal-content {
  26. overflow: hidden;
  27. }
  28. .bus_driver tr {
  29. height: 35px;
  30. }
  31. </style>
  32. <?php
  33. Pjax::begin(['id' => 'order_list-ajax', 'timeout' => false]);
  34. $this->registerJs('z.init()');
  35. ?>
  36. <div class="iframe_box bus-order-index">
  37. <?php echo $this->render('_search', ['model' => $data['searchModel'], 'order_list' => $data['order_list']]); ?>
  38. </div>
  39. <div class="" style="width: 940px; float: left">
  40. <div class='' id="order_list-portlet" style="min-height: 689px;padding-left: 25px;">
  41. <?php
  42. $dataProvider = $data['order_list'];
  43. echo zGridView::widget([
  44. 'tableOptions' => ['class' => 'table table-hover'],
  45. 'class' => 'yii\grid\SerialColumn',//不需要显示前面的导航
  46. 'dataProvider' => $dataProvider,
  47. 'id' => 'order-list-grid-view',
  48. 'pagerFixed' => true,
  49. 'resizableColumns' => false,
  50. 'options' => [
  51. 'class' => 'table table-hover'
  52. ],
  53. 'pagerButtons' => [
  54. Html::button('批量确认调度',
  55. [
  56. 'class' => 'btn btn-primary',
  57. 'onclick' => 'batch("sure")',
  58. ]),
  59. '&emsp;<span class="label label-danger">同</span><span style="font-weight: 600">:表示业务类型为推送任务</span>',
  60. '<span class="label label-success">外</span><span style="font-weight: 600">:表示外部派车</span>',
  61. ],
  62. 'columns' => [
  63. [
  64. 'class' => 'kartik\grid\CheckboxColumn',
  65. 'width' => '36px',
  66. 'headerOptions' => ['class' => 'kartik-sheet-style'],
  67. 'checkboxOptions' => function ($model) {
  68. return [
  69. 'value' => $model->id,
  70. 'bus_order_id' => $model->id,
  71. 'send_bus_res_id' => $model->send_bus_res_id,
  72. 'send_bus_driver_res_id' => $model->send_bus_driver_res_id,
  73. 'run_date' => $model->run_date,
  74. ];
  75. },
  76. 'rowSelectedClass' => ''
  77. ],
  78. [
  79. 'hAlign' => 'center',
  80. 'width' => '70px',
  81. 'attribute' => 'bus_number',
  82. 'value' => function ($model, $key, $index, $widget) {
  83. $view = '';
  84. if ($model->task_type == '546') { //同步
  85. $view .= '<span class="label label-danger">同</span> ';
  86. }
  87. if ($model->send_type == 1) { //外调车辆
  88. $view .= '<span class="label label-success">外</span>';
  89. }
  90. //新窗口中打开
  91. return $view .= Html::a($model->bus_number, '#busDispatch' . $model->bus_number . '', ['draggable' => 'false', 'data-pjax' => 0, 'onclick' => 'zNewWin("motorcade", "/motorcade/bus/detail?id=' . $model->id . '")']);
  92. },
  93. 'format' => 'raw'
  94. ],
  95. [
  96. 'attribute' => 'itinerary_name',
  97. 'value' => function ($model) {
  98. if ($model->line_type == 1) { //省际
  99. return $model->itinerary_name . '<br />' . Html::tag('span', ' 省际 ', ['class' => 'label label-success']);
  100. } elseif ($model->line_type == 2) { //市内
  101. return $model->itinerary_name . '<br />' . Html::tag('span', ' 市内 ', ['class' => 'label label-primary']);
  102. }
  103. },
  104. 'contentOptions' => ['style' => 'white-space: normal'],
  105. 'format' => 'raw'
  106. ],
  107. [
  108. 'hAlign' => 'center',
  109. 'width' => '85px',
  110. 'attribute' => 'run_date',
  111. 'value' => function ($model) {
  112. return $model->run_date . '<br />' . $model->start_time;
  113. },
  114. 'format' => 'raw'
  115. ],
  116. [
  117. 'hAlign' => 'center',
  118. 'label' => '需求座位',
  119. 'width' => '70px',
  120. 'attribute' => 'seat_count',
  121. 'value' => function ($model) {
  122. return $model['seat_count'] . '座';
  123. },
  124. ],
  125. [
  126. 'hAlign' => 'center',
  127. 'width' => '60px',
  128. 'attribute' => 'saled_count',
  129. 'value' => function ($model) {
  130. if ($model->run_id > 0) {
  131. return Html::a($model->saled_count,
  132. 'javascript:void(0)',
  133. ['onclick' => 'z.showTable("乘客信息", ["出发/到达时间", "站点/区域", "上下客", "上客数", "下客数"], "", "ajax", "/api/driver/get-run-info", {bus_number: "' .
  134. $model->bus_number . '",_csrf: yii.getCsrfToken()}, ["data", "station_info"], ["start_time", "station_name", "getDictType station_inout_type", "people_up_all_num", "people_down_all_num"], "passengerData")']);
  135. } else
  136. return $model->saled_count;
  137. },
  138. 'format' => 'raw'
  139. ],
  140. [
  141. 'hAlign' => 'center',
  142. 'width' => '100px',
  143. 'header' => '车 价',
  144. 'attribute' => 'bus_cost_type',
  145. 'value' => function ($model) {
  146. return $model->bus_cost_type == 477 ? '包车计价' . '<br />' . $model->bus_cost . '元/次' : '车座计价' . '<br />' . $model->bus_cost . '元/人';
  147. },
  148. 'format' => 'raw'
  149. ],
  150. [
  151. 'hAlign' => 'center',
  152. 'width' => '75px',
  153. 'attribute' => 'send_bus_res_id',
  154. 'value' => function ($model) {
  155. $tmp = $model->bus;
  156. if ($tmp)
  157. return $tmp->BUS_NO . '<br>' . $tmp->SEAT_COUNT . '座';
  158. else
  159. return '';
  160. },
  161. 'format' => 'raw'
  162. ],
  163. [
  164. 'hAlign' => 'center',
  165. 'width' => '55px',
  166. 'attribute' => 'send_bus_driver_res_id',
  167. 'value' => function ($model) {
  168. $tmp = $model->driver;
  169. if ($tmp)
  170. return $tmp->DRIVER_NAME;
  171. else
  172. return '';
  173. }
  174. ],
  175. [
  176. 'hAlign' => 'center',
  177. 'width' => '70px',
  178. 'attribute' => 'send_type',
  179. 'value' => function ($model) {
  180. if ($model->send_type == 1)
  181. return '<span class="glyphicon glyphicon-ok text-success"></span><br />' . $model->send_cost;
  182. else
  183. return '-';
  184. },
  185. 'format' => 'raw'
  186. ],
  187. [
  188. 'hAlign' => 'center',
  189. 'width' => '65px',
  190. 'attribute' => 'send_status',
  191. 'value' => function ($model) {
  192. return \backend\modules\motorcade\models\BusOrder::bus_order_status_array[$model->send_status];
  193. }
  194. ],
  195. [
  196. 'width' => '65px',
  197. 'hAlign' => 'center',
  198. 'header' => '操作',
  199. 'class' => 'kartik\grid\ActionColumn',
  200. 'headerOptions' => ['class' => 'kartik-sheet-style'],
  201. 'template' => '{sure}{reject}{reset}',
  202. 'buttons' => [
  203. 'sure' => function ($url, $model, $key) {
  204. if ($model->run_status == 434 && $model->send_bus_res_id !== null && $model->send_bus_driver_res_id !== null && $model->send_status == 441)
  205. return '<button style="margin-bottom:1px;" class="btn btn-primary btn-xs" onclick="sendSure(' . $model->id . ')"> 确定</button>';
  206. },
  207. 'reject' => function ($url, $model, $key) {
  208. if ($model->run_status < 437 && ($model->send_status == 440 || $model->send_status == 441))
  209. return '<button style="margin-bottom:1px;" class="btn btn-danger btn-xs" onclick="sendReject(' . $model->id . ')"> 驳回</button>';
  210. },
  211. 'reset' => function ($url, $model, $key) {
  212. if (($model->run_status == 435 || $model->run_status == 436) && $model->send_status == 442)
  213. return '<button style="margin-bottom:1px;" class="btn btn-warning btn-xs" onclick="sendReset(' . $model->id . ')"> 重置</button>';
  214. },
  215. ],
  216. ]
  217. ]
  218. ]);
  219. ?>
  220. </div>
  221. </div>
  222. <?php
  223. Pjax::end();
  224. ?>
  225. <?php Pjax::begin(['id' => 'bus_driver_list', 'enableReplaceState' => false]);
  226. $this->registerJs('z.init()'); ?>
  227. <div class="portlet box col-md-3"
  228. style="border-bottom: 1px solid rgba(152, 142, 142, 0.23);border-right: 1px solid rgba(152, 142, 142, 0.23);height:733px;overflow-y: auto;overflow-x: hidden; width: 360px;z-index: -1">
  229. <div class="portlet box bordered">
  230. <div class="portlet-body bus_driver">
  231. <div class="tabbable tabbable-custom custom-label">
  232. <ul class="nav nav-tabs" id="driver_bus_ul" style="width: 360px;">
  233. <li data-active="bus" class="<?= $active == 'bus' ? 'active' : '' ?> ">
  234. <a href="#tab_1_1" data-toggle="tab" aria-expanded="true"> 车&emsp;辆 </a>
  235. </li>
  236. <li data-active="driver" class="<?= $active == 'driver' ? 'active' : '' ?>">
  237. <a href="#tab_1_2" data-toggle="tab" aria-expanded="false"> 司&emsp;机 </a>
  238. </li>
  239. </ul>
  240. <div class="tab-content">
  241. <div class="tab-pane fade <?= $active == 'bus' ? 'active in' : '' ?>" id="tab_1_1">
  242. <div style="margin:15px 0 13px 10px;display: inline-flex">
  243. <input id="key_bus" type="text" class="form-control " placeholder="车牌号"
  244. onblur="" data-pjax value="<?= $driver_bus_search['key_bus'] ?>"
  245. style="display: inline-flex;">&nbsp;&nbsp;
  246. <?= Html::dropDownList('test', $driver_bus_search['key'], ['' => '全部'] + yii\helpers\ArrayHelper::map($data['convoy']['data'], 'org_id', 'res_name'),
  247. ['id' => 'select_company', 'data-pjax' => 'true', 'onChange' => '', 'class' => 'form-control select_screen']); ?>
  248. <button id="search" type="button" class="btn btn-primary"
  249. onclick="selectBus();searchDriverBus()"
  250. style="margin-left:5px;vertical-align: top;"><span
  251. class="glyphicon glyphicon-search"></span> 查询
  252. </button>
  253. </div>
  254. <div class="portlet-body flip-scroll">
  255. <table class="table table-bordered table-striped table-condensed flip-content"
  256. style="width: 325px;min-width: 325px;">
  257. <thead class="flip-content">
  258. <tr>
  259. <th style="width: 72px">车牌号</th>
  260. <th style="width: 40px">座位</th>
  261. <th>车队</th>
  262. <th style="width: 58px">当天使用</th>
  263. </tr>
  264. </thead>
  265. <tbody>
  266. <?php
  267. foreach ($data['bus_list']['data'] as $item) { ?>
  268. <tr draggable="true" send_type="send_bus_res_id">
  269. <td style="width: 27%">
  270. <button type="button" class="btn btn-link"
  271. onclick="parent.bootbox.dialog({title: '车辆详情:',className: 'modal-middle',message:'车身属性:<?php echo BaseBus::BUS_SURFACE_TYPE[$item['surface_type']] ?>',buttons: {cancel: {label: '关闭',className: 'btn-default'}}})">
  272. <?php echo $item['bus_no'] ?>
  273. </button>
  274. <input type="hidden" class="res_id"
  275. value="<?= $item['bus_id'] ?>">
  276. <input type="hidden" class="org_id" value="<?= $item['org_id'] ?>">
  277. </td>
  278. <td style="width: 15%"><?php echo $item['seat_count'] ?>座</td>
  279. <td style="width: 38%"><?php echo $item['res_name'] ?></td>
  280. <?php if ($item['used_time'] != 0) { ?>
  281. <td style="width: 10%"><a href="javascript:void(0)"
  282. onclick="z.showTable('出车信息',['出车日期','出车时间','线路','车辆','司机'],'','ajax','/api/driver/get-use-detail-info',{op:'bus',res_id:<?= $item['bus_id'] ?>,date:'<?= $_params_['data']['searchModel']['start_date'] ?>',_csrf:yii.getCsrfToken()},'',['run_date','start_time','itinerary_name','bus_no','driver_name'],'startTimeToEndTime')"><?= $item['used_time'] ?>
  283. 次</a></td>
  284. <?php } else { ?>
  285. <td style="width: 38%"><?= $item['used_time'] ?>次</td>
  286. <?php } ?>
  287. </tr>
  288. <?php
  289. }
  290. ?>
  291. </tbody>
  292. </table>
  293. </div>
  294. </div>
  295. <div class="tab-pane fade <?= $active == 'driver' ? 'active in' : '' ?>" id="tab_1_2">
  296. <div style="margin:15px 0 13px 10px;display: inline-flex">
  297. <input id="key_driver" type="text" class="form-control col-md-3"
  298. placeholder="司机姓名" value="<?= $driver_bus_search['key_driver'] ?>"
  299. data-pjax
  300. style="display: inline-flex;">&nbsp;&nbsp;
  301. <?= Html::dropDownList('test1', $driver_bus_search['key'], ['' => '全部'] + yii\helpers\ArrayHelper::map($data['convoy']['data'], 'org_id', 'res_name'),
  302. ['id' => 'select_company1', 'data-pjax' => 'true', 'onChange' => '', 'class' => 'form-control select_screen']); ?>
  303. <button id="search" type="button" class="btn btn-primary" onclick="selectDriver()"
  304. style="margin-left:5px;vertical-align: top;"><span
  305. class="glyphicon glyphicon-search"></span> 查询
  306. </button>
  307. </div>
  308. <div class="portlet-body flip-scroll">
  309. <table class="table table-bordered table-striped table-condensed flip-content"
  310. style="width: 325px;min-width: 325px;">
  311. <thead class="flip-content">
  312. <tr>
  313. <th style="width: 50px">姓名</th>
  314. <th style="width: 78px">电话</th>
  315. <th style="width: 140px">所属公司</th>
  316. <th style="width: 58px">当天使用</th>
  317. </tr>
  318. </thead>
  319. <tbody>
  320. <?php
  321. foreach ($data['driver']['data'] as $item) { ?>
  322. <tr draggable="true" send_type="send_bus_driver_res_id">
  323. <td style="width:27%;"><?php echo $item['driver_name'] ?><input type="hidden"
  324. class="res_id"
  325. value="<?= $item['driver_id'] ?>">
  326. </td>
  327. <td style="width:15%;"><?php echo $item['phone_no'] ?></td>
  328. <td style="width:38%;"><?php echo $item['res_name'] ?></td>
  329. <?php if ($item['used_time'] != 0) { ?>
  330. <td style="width:10%;"><a href="javascript:void(0)"
  331. onclick="z.showTable('出车信息',['出车日期','出车时间','线路','车辆','司机'],'','ajax','/api/driver/get-use-detail-info',{op:'driver',res_id:<?= $item['driver_id'] ?>,date:'<?= $_params_['data']['searchModel']['start_date'] ?>',_csrf:yii.getCsrfToken()},'',['run_date','start_time','itinerary_name','bus_no','driver_name'],'startTimeToEndTime')"><?= $item['used_time'] ?>
  332. 次</a></td>
  333. <?php } else { ?>
  334. <td style="width: 38%"><?= $item['used_time'] ?>次</td>
  335. <?php } ?>
  336. </tr>
  337. <?php
  338. }
  339. ?>
  340. </tbody>
  341. </table>
  342. </div>
  343. </div>
  344. </div>
  345. </div>
  346. <div class="clearfix margin-bottom-20"></div>
  347. </div>
  348. </div>
  349. </div>
  350. <?php Pjax::end() ?>
  351. <script>
  352. document.body.style.width = '1328px';
  353. </script>