2020-03-13 19:33:12 +00:00
|
|
|
|
2019-11-10 10:08:44 +00:00
|
|
|
<vn-auto-search
|
2020-03-13 19:33:12 +00:00
|
|
|
model="model">
|
2019-11-10 10:08:44 +00:00
|
|
|
</vn-auto-search>
|
|
|
|
<vn-data-viewer
|
|
|
|
model="model"
|
2019-12-20 06:55:00 +00:00
|
|
|
class="vn-mb-xl vn-w-xl">
|
2019-11-10 10:08:44 +00:00
|
|
|
<vn-card>
|
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th field="id" number>Id</vn-th>
|
|
|
|
<vn-th field="ref">Reference</vn-th>
|
|
|
|
<vn-th field="agencyFk">Agency</vn-th>
|
|
|
|
<vn-th field="warehouseOutFk">Warehouse Out</vn-th>
|
|
|
|
<vn-th field="shipped" center>Shipped</vn-th>
|
|
|
|
<vn-th field="isDelivered" center>Delivered</vn-th>
|
|
|
|
<vn-th field="warehouseInFk">Warehouse In</vn-th>
|
|
|
|
<vn-th field="landed" center>Landed</vn-th>
|
|
|
|
<vn-th field="isReceived" center>Received</vn-th>
|
|
|
|
<vn-th shrink></vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
2020-03-16 17:54:22 +00:00
|
|
|
<a ng-repeat="travel in model.data"
|
2019-11-10 10:08:44 +00:00
|
|
|
class="clickable vn-tr search-result"
|
|
|
|
ui-sref="travel.card.summary({id: {{::travel.id}}})">
|
|
|
|
<vn-td number>{{::travel.id}}</vn-td>
|
|
|
|
<vn-td expand>{{::travel.ref}}</vn-td>
|
2019-12-20 06:55:00 +00:00
|
|
|
<vn-td expand>{{::travel.agencyModeName}}</vn-td>
|
|
|
|
<vn-td expand>{{::travel.warehouseOutName}}</vn-td>
|
2019-11-10 10:08:44 +00:00
|
|
|
<vn-td center>{{::travel.shipped | date:'dd/MM/yyyy'}}</vn-td>
|
|
|
|
<vn-td><vn-check ng-model="travel.isDelivered" disabled="true"></vn-check></vn-td>
|
2019-12-20 06:55:00 +00:00
|
|
|
<vn-td expand>{{::travel.warehouseInName}}</vn-td>
|
2019-11-10 10:08:44 +00:00
|
|
|
<vn-td center>{{::travel.landed | date:'dd/MM/yyyy'}}</vn-td>
|
|
|
|
<vn-td center><vn-check ng-model="travel.isReceived" disabled="true"></vn-check></vn-td>
|
2020-03-10 13:09:26 +00:00
|
|
|
<vn-td shrink>
|
|
|
|
<vn-horizontal class="buttons">
|
|
|
|
<vn-icon-button
|
|
|
|
ng-click="$ctrl.cloneTravel($event, travel)"
|
|
|
|
vn-tooltip="Clone"
|
|
|
|
icon="icon-clone">
|
|
|
|
</vn-icon-button>
|
|
|
|
<vn-icon-button
|
|
|
|
ng-click="$ctrl.preview($event, travel)"
|
|
|
|
vn-tooltip="Preview"
|
|
|
|
icon="desktop_windows">
|
|
|
|
</vn-icon-button>
|
|
|
|
</vn-horizontal>
|
2019-11-10 10:08:44 +00:00
|
|
|
</vn-td>
|
|
|
|
</a>
|
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
|
|
|
</vn-data-viewer>
|
2019-12-20 06:55:00 +00:00
|
|
|
</vn-card>
|
2019-10-26 23:30:01 +00:00
|
|
|
<vn-popup vn-id="summary">
|
|
|
|
<vn-travel-summary
|
|
|
|
travel="$ctrl.travelSelected">
|
|
|
|
</vn-travel-summary>
|
|
|
|
</vn-popup>
|
2019-12-09 11:15:19 +00:00
|
|
|
<a ui-sref="travel.create"
|
|
|
|
vn-tooltip="New travel"
|
|
|
|
vn-bind="+"
|
|
|
|
vn-acl="buyer"
|
|
|
|
fixed-bottom-right>
|
|
|
|
<vn-float-button icon="add"></vn-float-button>
|
|
|
|
</a>
|
2020-03-10 13:09:26 +00:00
|
|
|
<vn-confirm
|
|
|
|
vn-id="clone"
|
2020-03-16 17:33:49 +00:00
|
|
|
on-accept="$ctrl.onCloneAccept($data)"
|
2020-03-10 13:09:26 +00:00
|
|
|
question="Do you want to clone this travel?"
|
|
|
|
message="All it's properties will be copied">
|
|
|
|
</vn-confirm>
|
2019-09-05 11:06:40 +00:00
|
|
|
<vn-scroll-up></vn-scroll-up>
|