salix/modules/agency/front/index/index.html

63 lines
2.3 KiB
HTML
Raw Normal View History

2018-09-19 13:05:07 +00:00
<vn-crud-model
vn-id="model"
2018-09-25 06:53:57 +00:00
url="/agency/api/Zones"
2018-09-19 13:05:07 +00:00
filter="::$ctrl.filter"
limit="20"
data="zones"
auto-load="false">
</vn-crud-model>
2019-01-30 22:47:06 +00:00
<div class="content-block">
2018-09-19 13:05:07 +00:00
<div class="vn-list">
<vn-card pad-medium-h>
<vn-searchbar
panel="vn-zone-search-panel"
model="model"
expr-builder="$ctrl.exprBuilder(param, value)"
vn-focus>
</vn-searchbar>
</vn-card>
</div>
2019-02-10 21:52:35 +00:00
<vn-card margin-medium-v>
2018-09-19 13:05:07 +00:00
<vn-table model="model">
<vn-thead>
<vn-tr>
<vn-th field="id" number>Id</vn-th>
<vn-th field="name">Name</vn-th>
<vn-th field="agencyModeFk">Agency</vn-th>
<vn-th field="warehouseFK">Warehouse</vn-th>
<vn-th field="hour">Hour</vn-th>
2018-09-25 07:28:55 +00:00
<vn-th field="price" number>Price</vn-th>
<vn-th></vn-th>
2018-09-19 13:05:07 +00:00
</vn-tr>
</vn-thead>
<vn-tbody>
<vn-tr ng-repeat="zone in zones" ui-sref="zone.card.location({id: zone.id})" class="clickable searchResult">
2018-09-19 13:05:07 +00:00
<vn-td number>{{::zone.id}}</vn-td>
<vn-td>{{::zone.name}}</vn-td>
<vn-td>{{::zone.agencyMode.name}}</vn-td>
<vn-td>{{::zone.warehouse.name}}</vn-td>
<vn-td>{{::zone.hour | date: 'HH:mm'}}</vn-td>
<vn-td number>{{::zone.price | currency: 'EUR':2}}</vn-td>
2018-09-25 07:28:55 +00:00
<vn-td>
<vn-icon-button
2019-01-21 10:45:53 +00:00
ng-click="$ctrl.preview($event, zone)"
2018-09-25 07:28:55 +00:00
vn-tooltip="Preview"
icon="desktop_windows">
</vn-icon-button>
</vn-td>
2018-09-19 13:05:07 +00:00
</vn-tr>
</vn-tbody>
</vn-table>
</vn-card>
2019-01-20 17:48:03 +00:00
<vn-pagination model="model"></vn-pagination>
2018-09-19 13:05:07 +00:00
</div>
2019-01-21 10:45:53 +00:00
<vn-dialog
vn-id="summary"
class="dialog-summary">
<tpl-body>
<vn-zone-summary zone="$ctrl.zoneSelected"></vn-zone-summary>
</tpl-body>
</vn-dialog>
2018-09-19 13:05:07 +00:00
<a ui-sref="zone.create" vn-tooltip="New zone" vn-bind="+" fixed-bottom-right>
2018-09-25 06:53:57 +00:00
<vn-float-button icon="add"></vn-float-button>
2018-09-19 13:05:07 +00:00
</a>