salix/modules/route/front/index/index.html

85 lines
3.0 KiB
HTML
Raw Normal View History

2019-03-21 12:46:14 +00:00
<vn-crud-model
vn-id="model"
2019-04-25 06:28:08 +00:00
url="/api/Routes/filter"
2019-03-21 12:46:14 +00:00
limit="20"
data="routes"
order="created DESC"
auto-load="true">
2019-03-21 12:46:14 +00:00
</vn-crud-model>
<div class="content-block">
<vn-card class="vn-px-md vn-w-sm">
<vn-searchbar
filter="$ctrl.filter"
panel="vn-route-search-panel"
on-search="$ctrl.onSearch($params)"
info="Search routes by id"
vn-focus>
</vn-searchbar>
</vn-card>
<vn-data-viewer
model="model"
class="vn-w-lg vn-my-md vn-mb-xl">
<vn-card class="index">
<vn-table model="model">
2019-03-21 12:46:14 +00:00
<vn-thead>
<vn-tr>
<vn-th field="id" number>Id</vn-th>
2019-03-21 12:46:14 +00:00
<vn-th th-id="worker">Worker</vn-th>
<vn-th th-id="agency">Agency</vn-th>
<vn-th th-id="vehicle">Vehicle</vn-th>
2019-04-02 08:05:56 +00:00
<vn-th th-id="created">Date</vn-th>
2019-03-21 12:46:14 +00:00
<vn-th th-id="m3" number></vn-th>
<vn-th th-id="description">Description</vn-th>
<vn-th shrink></vn-th>
2019-03-21 12:46:14 +00:00
</vn-tr>
</vn-thead>
<vn-tbody>
<a ng-repeat="route in routes"
class="clickable vn-tr searchResult"
ui-sref="route.card.summary({id: {{::route.id}}})">
<vn-td number>{{::route.id | dashIfEmpty}}</vn-td>
<vn-td expand>
<span
class="link"
2019-04-25 06:28:08 +00:00
ng-click="$ctrl.showWorkerDescriptor($event, route.workerFk)">
{{::route.workerNickname}}
2019-03-21 12:46:14 +00:00
</span>
</vn-td>
2019-04-25 06:28:08 +00:00
<vn-td>{{::route.agencyName | dashIfEmpty}}</vn-td>
<vn-td>{{::route.vehiclePlateNumber | dashIfEmpty}}</vn-td>
2019-03-21 12:46:14 +00:00
<vn-td>{{::route.created | dateTime:'dd/MM/yyyy' | dashIfEmpty}}</vn-td>
<vn-td number>{{::route.m3 | dashIfEmpty}}</vn-td>
<vn-td>{{::route.description | dashIfEmpty}}</vn-td>
<vn-td>
<vn-icon-button
ng-click="$ctrl.preview($event, route)"
vn-tooltip="Preview"
icon="desktop_windows">
</vn-icon-button>
</vn-td>
</a>
</vn-tbody>
</vn-table>
</vn-card>
</vn-data-viewer>
2019-03-21 12:46:14 +00:00
</div>
<vn-dialog
vn-id="summary"
class="dialog-summary">
<tpl-body>
<vn-route-summary
route="$ctrl.routeSelected">
</vn-route-summary>
2019-03-21 12:46:14 +00:00
</tpl-body>
</vn-dialog>
<vn-worker-descriptor-popover
vn-id="workerDescriptor"
2019-04-25 06:28:08 +00:00
worker-fk="$ctrl.selectedWorker">
2019-03-21 12:46:14 +00:00
</vn-worker-descriptor-popover>
<a ui-sref="route.create"
vn-tooltip="New route"
vn-bind="+"
fixed-bottom-right>
2019-03-22 13:08:01 +00:00
<vn-float-button icon="add"></vn-float-button>
2019-09-05 11:06:40 +00:00
</a>
<vn-scroll-up></vn-scroll-up>