2019-06-06 11:59:11 +00:00
|
|
|
<vn-crud-model
|
|
|
|
vn-id="model"
|
2019-10-24 22:53:53 +00:00
|
|
|
url="TicketDms"
|
2020-03-18 13:08:04 +00:00
|
|
|
link="{ticketFk: $ctrl.$params.id}"
|
2019-06-06 11:59:11 +00:00
|
|
|
filter="::$ctrl.filter"
|
|
|
|
limit="20"
|
2019-10-11 15:38:04 +00:00
|
|
|
data="$ctrl.ticketDms"
|
|
|
|
order="dmsFk DESC"
|
|
|
|
auto-load="true">
|
2019-06-06 11:59:11 +00:00
|
|
|
</vn-crud-model>
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-data-viewer model="model">
|
|
|
|
<vn-card class="vn-w-lg">
|
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
2019-10-11 15:43:29 +00:00
|
|
|
<vn-th field="dmsFk" number shrink>Id</vn-th>
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-th field="dmsTypeFk" shrink>Type</vn-th>
|
|
|
|
<vn-th field="hardCopyNumber" shrink number>Order</vn-th>
|
|
|
|
<vn-th field="reference" shrink>Reference</vn-th>
|
|
|
|
<vn-th expand>Description</vn-th>
|
|
|
|
<vn-th field="hasFile" shrink>Original</vn-th>
|
|
|
|
<vn-th shrink>File</vn-th>
|
|
|
|
<vn-th shrink>Employee</vn-th>
|
|
|
|
<vn-th field="created">Created</vn-th>
|
|
|
|
<vn-th shrink></vn-th>
|
|
|
|
<vn-th shrink></vn-th>
|
|
|
|
<vn-th shrink></vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="document in $ctrl.ticketDms">
|
|
|
|
<vn-td number shrink>{{::document.dmsFk}}</vn-td>
|
|
|
|
<vn-td shrink>
|
|
|
|
<span title="{{::document.dms.dmsType.name}}">
|
|
|
|
{{::document.dms.dmsType.name}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink number>
|
|
|
|
<span class="chip" title="{{::document.dms.hardCopyNumber}}"
|
|
|
|
ng-class="{'message': document.dms.hardCopyNumber}">
|
|
|
|
{{::document.dms.hardCopyNumber}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink>
|
|
|
|
<span title="{{::document.dms.reference}}">
|
|
|
|
{{::document.dms.reference}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td expand>
|
|
|
|
<span title="{{::document.dms.description}}">
|
|
|
|
{{::document.dms.description}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink>
|
|
|
|
<a target="_blank"
|
|
|
|
title="{{'Download file' | translate}}"
|
2020-03-18 07:35:59 +00:00
|
|
|
href="api/dms/{{::document.dmsFk}}/downloadFile?access_token={{::$ctrl.vnToken.token}}">
|
2019-10-11 15:38:04 +00:00
|
|
|
{{::document.dms.file}}
|
|
|
|
</a>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink>
|
|
|
|
<span class="link"
|
2020-04-28 12:26:02 +00:00
|
|
|
ng-click="workerDescriptor.show($event, document.dms.workerFk)">
|
2019-10-11 15:38:04 +00:00
|
|
|
{{::document.dms.worker.user.nickname | dashIfEmpty}}
|
|
|
|
</span></vn-td>
|
|
|
|
<vn-td>
|
2019-10-18 23:18:25 +00:00
|
|
|
{{::document.dms.created | date:'dd/MM/yyyy HH:mm'}}
|
2019-10-11 15:38:04 +00:00
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink>
|
|
|
|
<a target="_blank"
|
2020-03-18 07:35:59 +00:00
|
|
|
href="api/dms/{{::document.dmsFk}}/downloadFile?access_token={{::$ctrl.vnToken.token}}">
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-icon-button
|
|
|
|
icon="cloud_download"
|
|
|
|
title="{{'Download file' | translate}}">
|
|
|
|
</vn-icon-button>
|
|
|
|
</a>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink>
|
|
|
|
<vn-icon-button icon="edit"
|
|
|
|
ui-sref="ticket.card.dms.edit({dmsId: {{::document.dmsFk}}})"
|
|
|
|
title="{{'Edit file' | translate}}">
|
|
|
|
</vn-icon-button>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink>
|
|
|
|
<vn-icon-button icon="delete"
|
2020-04-28 12:26:02 +00:00
|
|
|
ng-click="confirm.show($index)"
|
2019-10-11 15:38:04 +00:00
|
|
|
title="{{'Remove file' | translate}}"
|
|
|
|
tabindex="-1">
|
|
|
|
</vn-icon-button>
|
|
|
|
</vn-td>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
2019-06-06 11:59:11 +00:00
|
|
|
</vn-card>
|
2019-10-11 15:38:04 +00:00
|
|
|
</vn-data-viewer>
|
2019-06-06 11:59:11 +00:00
|
|
|
<vn-worker-descriptor-popover
|
|
|
|
vn-id="workerDescriptor">
|
|
|
|
</vn-worker-descriptor-popover>
|
|
|
|
<a ui-sref="ticket.card.dms.create"
|
|
|
|
vn-tooltip="Upload file"
|
|
|
|
vn-bind="+"
|
|
|
|
fixed-bottom-right>
|
|
|
|
<vn-float-button icon="add"></vn-float-button>
|
|
|
|
</a>
|
|
|
|
<vn-confirm
|
|
|
|
vn-id="confirm"
|
|
|
|
message="This file will be deleted"
|
|
|
|
question="Are you sure you want to continue?"
|
2020-04-28 12:26:02 +00:00
|
|
|
on-accept="$ctrl.deleteDms($data)">
|
2019-06-06 11:59:11 +00:00
|
|
|
</vn-confirm>
|