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

78 lines
2.6 KiB
HTML
Raw Normal View History

2018-09-19 13:05:07 +00:00
<vn-crud-model
vn-id="model"
url="Zones"
2018-09-19 13:05:07 +00:00
filter="::$ctrl.filter"
limit="20"
data="zones"
2019-10-02 17:24:42 +00:00
auto-load="true">
2018-09-19 13:05:07 +00:00
</vn-crud-model>
2019-11-10 10:08:44 +00:00
<vn-auto-search
model="model"
expr-builder="$ctrl.exprBuilder(param, value)">
</vn-auto-search>
<vn-data-viewer
model="model"
class="vn-w-md vn-mb-xl">
<vn-card>
<vn-table model="model">
<vn-thead>
<vn-tr>
<vn-th field="id" number>Id</vn-th>
<vn-th field="name" expand>Name</vn-th>
<vn-th field="agencyModeFk">Agency</vn-th>
<vn-th field="hour" shrink>Closing</vn-th>
<vn-th field="price" number>Price</vn-th>
<vn-th shrink></vn-th>
</vn-tr>
</vn-thead>
<vn-tbody>
<vn-tr
ng-repeat="zone in zones"
ui-sref="zone.card.location({id: zone.id})"
class="clickable search-result">
<vn-td number>{{::zone.id}}</vn-td>
<vn-td expand>{{::zone.name}}</vn-td>
<vn-td>{{::zone.agencyMode.name}}</vn-td>
<vn-td shrink>{{::zone.hour | date: 'HH:mm'}}</vn-td>
<vn-td number>{{::zone.price | currency: 'EUR':2}}</vn-td>
<vn-td shrink>
<vn-horizontal class="buttons">
<vn-icon-button
ng-click="$ctrl.clone($event, zone)"
vn-tooltip="Clone"
icon="icon-clone"
vn-acl="deliveryBoss"
vn-acl-action="remove">
</vn-icon-button>
<vn-icon-button
ng-click="$ctrl.preview($event, zone)"
vn-tooltip="Preview"
icon="desktop_windows">
</vn-icon-button>
</vn-horizontal>
</vn-td>
</vn-tr>
</vn-tbody>
</vn-table>
2019-10-02 17:24:42 +00:00
</vn-card>
2019-11-10 10:08:44 +00:00
</vn-data-viewer>
2019-10-26 23:30:01 +00:00
<vn-popup vn-id="summary">
<vn-zone-summary zone="$ctrl.selectedZone"></vn-zone-summary>
</vn-popup>
2019-03-14 14:07:24 +00:00
<vn-confirm
vn-id="clone"
2019-10-30 15:57:14 +00:00
on-response="$ctrl.onCloneAccept($response)"
2019-03-14 14:07:24 +00:00
question="Do you want to clone this zone?"
message="All it's properties will be copied">
</vn-confirm>
2019-09-25 18:06:42 +00:00
<a ui-sref="zone.create"
vn-tooltip="New zone"
vn-bind="+"
fixed-bottom-right>
2019-10-18 19:36:30 +00:00
<vn-float-button
icon="add"
vn-acl="deliveryBoss"
vn-acl-action="remove">
</vn-float-button>
2019-09-05 11:06:40 +00:00
</a>
<vn-scroll-up></vn-scroll-up>