salix/modules/zone/front/upcoming-deliveries/index.html

32 lines
1.1 KiB
HTML
Raw Normal View History

2021-05-12 10:11:27 +00:00
<vn-crud-model
2020-05-15 10:17:34 +00:00
vn-id="model"
url="Zones/getUpcomingDeliveries"
2021-05-12 10:11:27 +00:00
data="details"
auto-load="true">
2020-05-15 10:17:34 +00:00
</vn-crud-model>
<vn-data-viewer model="model">
<vn-card>
<section ng-repeat="detail in details" class="vn-pa-md">
<vn-horizontal class="header">
2020-05-19 06:46:42 +00:00
<h5>{{$ctrl.getWeekDay(detail.shipped)}} - {{detail.shipped | date: 'dd/MM/yyyy'}}</h5>
2020-05-15 10:17:34 +00:00
</vn-horizontal>
<vn-table>
<vn-thead>
<vn-tr>
<vn-th class="waste-family">Province</vn-th>
<vn-th number>Closing</vn-th>
<vn-th number>Id</vn-th>
</vn-tr>
</vn-thead>
<vn-tbody>
<vn-tr ng-repeat="zone in detail.lines">
<vn-td class="waste-family">{{::zone.name}}</vn-td>
<vn-td number>{{::zone.hour}}</vn-td>
<vn-td number>{{::zone.zoneFk}}</vn-td>
</vn-tr>
</vn-tbody>
</vn-table>
</section>
</vn-card>
</vn-data-viewer>