|
- <?php
- /**
- * Created by PhpStorm.
- * User: Steven
- * Date: 2017/1/6
- * Time: 10:03
- */
-
- /* @var $this yii\web\View */
-
- /* @var $data array */
-
- use yii\widgets\Pjax;
- use yii\helpers\Html;
- use common\components\zGridView;
- use backend\modules\motorcade\assets\motorcadeUIAsset;
- use backend\modules\motorcade\models\BaseBus;
-
- motorcadeUIAsset::register($this);
- motorcadeUIAsset::addScript($this, '/js/dispatch.js?v=0.07');
-
- $driver_bus_search = $data['driver_bus_search'];
- $active = $data['active'];
- echo Html::hiddenInput('searchDate', $data['searchDate'], ['id' => 'searchDate']);
- ?>
-
-
- <style>
- .search_name {
- padding-left: 14px;
- }
-
- .modal-content {
- overflow: hidden;
- }
-
- .bus_driver tr {
- height: 35px;
- }
- </style>
- <?php
- Pjax::begin(['id' => 'order_list-ajax', 'timeout' => false]);
- $this->registerJs('z.init()');
- ?>
- <div class="iframe_box bus-order-index">
- <?php echo $this->render('_search', ['model' => $data['searchModel'], 'order_list' => $data['order_list']]); ?>
-
- </div>
- <div class="" style="width: 940px; float: left">
- <div class='' id="order_list-portlet" style="min-height: 689px;padding-left: 25px;">
- <?php
- $dataProvider = $data['order_list'];
- echo zGridView::widget([
- 'tableOptions' => ['class' => 'table table-hover'],
- 'class' => 'yii\grid\SerialColumn',//不需要显示前面的导航
- 'dataProvider' => $dataProvider,
- 'id' => 'order-list-grid-view',
- 'pagerFixed' => true,
- 'resizableColumns' => false,
- 'options' => [
- 'class' => 'table table-hover'
- ],
- 'pagerButtons' => [
- Html::button('批量确认调度',
- [
- 'class' => 'btn btn-primary',
- 'onclick' => 'batch("sure")',
- ]),
- ' <span class="label label-danger">同</span><span style="font-weight: 600">:表示业务类型为推送任务</span>',
- '<span class="label label-success">外</span><span style="font-weight: 600">:表示外部派车</span>',
- ],
- 'columns' => [
- [
- 'class' => 'kartik\grid\CheckboxColumn',
- 'width' => '36px',
- 'headerOptions' => ['class' => 'kartik-sheet-style'],
- 'checkboxOptions' => function ($model) {
- return [
- 'value' => $model->id,
- 'bus_order_id' => $model->id,
- 'send_bus_res_id' => $model->send_bus_res_id,
- 'send_bus_driver_res_id' => $model->send_bus_driver_res_id,
- 'run_date' => $model->run_date,
- ];
- },
- 'rowSelectedClass' => ''
- ],
- [
- 'hAlign' => 'center',
- 'width' => '70px',
- 'attribute' => 'bus_number',
- 'value' => function ($model, $key, $index, $widget) {
- $view = '';
- if ($model->task_type == '546') { //同步
- $view .= '<span class="label label-danger">同</span> ';
- }
- if ($model->send_type == 1) { //外调车辆
- $view .= '<span class="label label-success">外</span>';
- }
- //新窗口中打开
- 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 . '")']);
- },
- 'format' => 'raw'
- ],
- [
- 'attribute' => 'itinerary_name',
- 'value' => function ($model) {
- if ($model->line_type == 1) { //省际
- return $model->itinerary_name . '<br />' . Html::tag('span', ' 省际 ', ['class' => 'label label-success']);
- } elseif ($model->line_type == 2) { //市内
- return $model->itinerary_name . '<br />' . Html::tag('span', ' 市内 ', ['class' => 'label label-primary']);
- }
- },
- 'contentOptions' => ['style' => 'white-space: normal'],
- 'format' => 'raw'
- ],
- [
- 'hAlign' => 'center',
- 'width' => '85px',
- 'attribute' => 'run_date',
- 'value' => function ($model) {
- return $model->run_date . '<br />' . $model->start_time;
- },
- 'format' => 'raw'
- ],
- [
- 'hAlign' => 'center',
- 'label' => '需求座位',
- 'width' => '70px',
- 'attribute' => 'seat_count',
- 'value' => function ($model) {
- return $model['seat_count'] . '座';
- },
- ],
- [
- 'hAlign' => 'center',
- 'width' => '60px',
- 'attribute' => 'saled_count',
- 'value' => function ($model) {
- if ($model->run_id > 0) {
- return Html::a($model->saled_count,
- 'javascript:void(0)',
- ['onclick' => 'z.showTable("乘客信息", ["出发/到达时间", "站点/区域", "上下客", "上客数", "下客数"], "", "ajax", "/api/driver/get-run-info", {bus_number: "' .
- $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")']);
- } else
- return $model->saled_count;
- },
- 'format' => 'raw'
- ],
- [
- 'hAlign' => 'center',
- 'width' => '100px',
- 'header' => '车 价',
- 'attribute' => 'bus_cost_type',
- 'value' => function ($model) {
- return $model->bus_cost_type == 477 ? '包车计价' . '<br />' . $model->bus_cost . '元/次' : '车座计价' . '<br />' . $model->bus_cost . '元/人';
- },
- 'format' => 'raw'
- ],
- [
- 'hAlign' => 'center',
- 'width' => '75px',
- 'attribute' => 'send_bus_res_id',
- 'value' => function ($model) {
- $tmp = $model->bus;
- if ($tmp)
- return $tmp->BUS_NO . '<br>' . $tmp->SEAT_COUNT . '座';
- else
- return '';
- },
- 'format' => 'raw'
- ],
- [
- 'hAlign' => 'center',
- 'width' => '55px',
- 'attribute' => 'send_bus_driver_res_id',
- 'value' => function ($model) {
- $tmp = $model->driver;
- if ($tmp)
- return $tmp->DRIVER_NAME;
- else
- return '';
- }
- ],
- [
- 'hAlign' => 'center',
- 'width' => '70px',
- 'attribute' => 'send_type',
- 'value' => function ($model) {
- if ($model->send_type == 1)
- return '<span class="glyphicon glyphicon-ok text-success"></span><br />' . $model->send_cost;
- else
- return '-';
- },
- 'format' => 'raw'
- ],
- [
- 'hAlign' => 'center',
- 'width' => '65px',
- 'attribute' => 'send_status',
- 'value' => function ($model) {
- return \backend\modules\motorcade\models\BusOrder::bus_order_status_array[$model->send_status];
- }
- ],
- [
- 'width' => '65px',
- 'hAlign' => 'center',
- 'header' => '操作',
- 'class' => 'kartik\grid\ActionColumn',
- 'headerOptions' => ['class' => 'kartik-sheet-style'],
- 'template' => '{sure}{reject}{reset}',
- 'buttons' => [
- 'sure' => function ($url, $model, $key) {
- if ($model->run_status == 434 && $model->send_bus_res_id !== null && $model->send_bus_driver_res_id !== null && $model->send_status == 441)
- return '<button style="margin-bottom:1px;" class="btn btn-primary btn-xs" onclick="sendSure(' . $model->id . ')"> 确定</button>';
- },
- 'reject' => function ($url, $model, $key) {
- if ($model->run_status < 437 && ($model->send_status == 440 || $model->send_status == 441))
- return '<button style="margin-bottom:1px;" class="btn btn-danger btn-xs" onclick="sendReject(' . $model->id . ')"> 驳回</button>';
- },
- 'reset' => function ($url, $model, $key) {
- if (($model->run_status == 435 || $model->run_status == 436) && $model->send_status == 442)
- return '<button style="margin-bottom:1px;" class="btn btn-warning btn-xs" onclick="sendReset(' . $model->id . ')"> 重置</button>';
- },
- ],
- ]
-
- ]
- ]);
- ?>
- </div>
- </div>
- <?php
-
- Pjax::end();
- ?>
- <?php Pjax::begin(['id' => 'bus_driver_list', 'enableReplaceState' => false]);
- $this->registerJs('z.init()'); ?>
-
- <div class="portlet box col-md-3"
- 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">
- <div class="portlet box bordered">
- <div class="portlet-body bus_driver">
- <div class="tabbable tabbable-custom custom-label">
- <ul class="nav nav-tabs" id="driver_bus_ul" style="width: 360px;">
- <li data-active="bus" class="<?= $active == 'bus' ? 'active' : '' ?> ">
- <a href="#tab_1_1" data-toggle="tab" aria-expanded="true"> 车 辆 </a>
- </li>
- <li data-active="driver" class="<?= $active == 'driver' ? 'active' : '' ?>">
- <a href="#tab_1_2" data-toggle="tab" aria-expanded="false"> 司 机 </a>
- </li>
- </ul>
- <div class="tab-content">
- <div class="tab-pane fade <?= $active == 'bus' ? 'active in' : '' ?>" id="tab_1_1">
- <div style="margin:15px 0 13px 10px;display: inline-flex">
- <input id="key_bus" type="text" class="form-control " placeholder="车牌号"
- onblur="" data-pjax value="<?= $driver_bus_search['key_bus'] ?>"
- style="display: inline-flex;">
- <?= Html::dropDownList('test', $driver_bus_search['key'], ['' => '全部'] + yii\helpers\ArrayHelper::map($data['convoy']['data'], 'org_id', 'res_name'),
- ['id' => 'select_company', 'data-pjax' => 'true', 'onChange' => '', 'class' => 'form-control select_screen']); ?>
- <button id="search" type="button" class="btn btn-primary"
- onclick="selectBus();searchDriverBus()"
- style="margin-left:5px;vertical-align: top;"><span
- class="glyphicon glyphicon-search"></span> 查询
- </button>
- </div>
-
- <div class="portlet-body flip-scroll">
- <table class="table table-bordered table-striped table-condensed flip-content"
- style="width: 325px;min-width: 325px;">
- <thead class="flip-content">
- <tr>
- <th style="width: 72px">车牌号</th>
- <th style="width: 40px">座位</th>
- <th>车队</th>
- <th style="width: 58px">当天使用</th>
- </tr>
- </thead>
-
- <tbody>
- <?php
- foreach ($data['bus_list']['data'] as $item) { ?>
- <tr draggable="true" send_type="send_bus_res_id">
- <td style="width: 27%">
- <button type="button" class="btn btn-link"
- onclick="parent.bootbox.dialog({title: '车辆详情:',className: 'modal-middle',message:'车身属性:<?php echo BaseBus::BUS_SURFACE_TYPE[$item['surface_type']] ?>',buttons: {cancel: {label: '关闭',className: 'btn-default'}}})">
- <?php echo $item['bus_no'] ?>
- </button>
- <input type="hidden" class="res_id"
- value="<?= $item['bus_id'] ?>">
- <input type="hidden" class="org_id" value="<?= $item['org_id'] ?>">
- </td>
- <td style="width: 15%"><?php echo $item['seat_count'] ?>座</td>
- <td style="width: 38%"><?php echo $item['res_name'] ?></td>
- <?php if ($item['used_time'] != 0) { ?>
- <td style="width: 10%"><a href="javascript:void(0)"
- 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'] ?>
- 次</a></td>
- <?php } else { ?>
- <td style="width: 38%"><?= $item['used_time'] ?>次</td>
- <?php } ?>
- </tr>
- <?php
- }
- ?>
- </tbody>
-
- </table>
- </div>
-
- </div>
- <div class="tab-pane fade <?= $active == 'driver' ? 'active in' : '' ?>" id="tab_1_2">
- <div style="margin:15px 0 13px 10px;display: inline-flex">
- <input id="key_driver" type="text" class="form-control col-md-3"
- placeholder="司机姓名" value="<?= $driver_bus_search['key_driver'] ?>"
- data-pjax
- style="display: inline-flex;">
- <?= Html::dropDownList('test1', $driver_bus_search['key'], ['' => '全部'] + yii\helpers\ArrayHelper::map($data['convoy']['data'], 'org_id', 'res_name'),
- ['id' => 'select_company1', 'data-pjax' => 'true', 'onChange' => '', 'class' => 'form-control select_screen']); ?>
- <button id="search" type="button" class="btn btn-primary" onclick="selectDriver()"
- style="margin-left:5px;vertical-align: top;"><span
- class="glyphicon glyphicon-search"></span> 查询
- </button>
- </div>
- <div class="portlet-body flip-scroll">
- <table class="table table-bordered table-striped table-condensed flip-content"
- style="width: 325px;min-width: 325px;">
- <thead class="flip-content">
- <tr>
- <th style="width: 50px">姓名</th>
- <th style="width: 78px">电话</th>
- <th style="width: 140px">所属公司</th>
- <th style="width: 58px">当天使用</th>
- </tr>
- </thead>
- <tbody>
- <?php
- foreach ($data['driver']['data'] as $item) { ?>
- <tr draggable="true" send_type="send_bus_driver_res_id">
- <td style="width:27%;"><?php echo $item['driver_name'] ?><input type="hidden"
- class="res_id"
- value="<?= $item['driver_id'] ?>">
- </td>
- <td style="width:15%;"><?php echo $item['phone_no'] ?></td>
- <td style="width:38%;"><?php echo $item['res_name'] ?></td>
- <?php if ($item['used_time'] != 0) { ?>
- <td style="width:10%;"><a href="javascript:void(0)"
- 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'] ?>
- 次</a></td>
- <?php } else { ?>
- <td style="width: 38%"><?= $item['used_time'] ?>次</td>
- <?php } ?>
- </tr>
- <?php
- }
- ?>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- <div class="clearfix margin-bottom-20"></div>
- </div>
- </div>
- </div>
- <?php Pjax::end() ?>
-
- <script>
- document.body.style.width = '1328px';
- </script>
|