2022-05-24 10:50:22 +00:00
|
|
|
<vn-card class="summary">
|
|
|
|
<h5>
|
2022-07-14 07:54:28 +00:00
|
|
|
<a ng-if="::$ctrl.summary.code"
|
2022-05-24 10:50:22 +00:00
|
|
|
vn-tooltip="Go to the shelving"
|
2022-07-14 07:54:28 +00:00
|
|
|
ui-sref="shelving.card.summary({id: {{::$ctrl.summary.code}}})"
|
2022-05-24 10:50:22 +00:00
|
|
|
name="goToSummary">
|
|
|
|
<vn-icon-button icon="launch"></vn-icon-button>
|
|
|
|
</a>
|
2022-07-14 07:54:28 +00:00
|
|
|
<span>{{::$ctrl.summary.code}}</span>
|
2022-05-24 10:50:22 +00:00
|
|
|
</h5>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-one>
|
|
|
|
<h4>
|
|
|
|
<a
|
|
|
|
ui-sref="shelving.card.basicData({id: $ctrl.summary.id})"
|
|
|
|
target="_self">
|
|
|
|
<span translate vn-tooltip="Go to">Basic data</span>
|
|
|
|
</a>
|
|
|
|
</h4>
|
|
|
|
<vn-vertical>
|
|
|
|
<vn-label-value
|
|
|
|
label="Code"
|
2022-07-14 07:54:28 +00:00
|
|
|
value="{{::$ctrl.summary.code}}">
|
2022-05-24 10:50:22 +00:00
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value
|
|
|
|
label="Parking"
|
|
|
|
value="{{::$ctrl.summary.parking.code}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value
|
|
|
|
label="Priority"
|
|
|
|
value="{{::$ctrl.summary.priority}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value label="Worker">
|
|
|
|
<span
|
2022-07-14 07:54:28 +00:00
|
|
|
ng-click="workerDescriptor.show($event, $ctrl.summary.worker.user.id)"
|
2022-05-24 10:50:22 +00:00
|
|
|
class="link">
|
|
|
|
{{$ctrl.summary.worker.user.nickname}}
|
|
|
|
</span>
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-check
|
|
|
|
label="Recyclable"
|
|
|
|
ng-model="$ctrl.summary.isRecyclable"
|
|
|
|
disabled="true">
|
|
|
|
</vn-check>
|
|
|
|
</vn-vertical>
|
|
|
|
</vn-one>
|
|
|
|
</vn-horizontal>
|
|
|
|
</vn-card>
|
|
|
|
<vn-worker-descriptor-popover
|
|
|
|
vn-id="workerDescriptor">
|
|
|
|
</vn-worker-descriptor-popover>
|