salix/modules/item/front/request/index.html

149 lines
6.6 KiB
HTML
Raw Normal View History

2019-04-05 13:20:12 +00:00
<vn-crud-model
vn-id="model"
url="/ticket/api/TicketRequests/filter"
2019-04-05 13:20:12 +00:00
limit="20"
data="requests"
2019-07-25 07:55:09 +00:00
order="isOk ASC"
2019-04-05 13:20:12 +00:00
auto-load="false">
</vn-crud-model>
<form name="form">
<div class="vn-ma-md">
<vn-card class="vn-px-md vn-list">
2019-04-05 13:20:12 +00:00
<vn-horizontal>
2019-07-25 07:55:09 +00:00
<vn-searchbar
auto-load="false"
2019-04-05 13:20:12 +00:00
panel="vn-request-search-panel"
on-search="$ctrl.onSearch($params)"
2019-07-25 07:55:09 +00:00
info="Search request by id or alias"
2019-04-05 13:20:12 +00:00
vn-one
vn-focus>
</vn-searchbar>
</vn-horizontal>
</vn-card>
<vn-card class="vn-my-md">
2019-07-25 07:55:09 +00:00
<vn-table model="model" auto-load="false">
2019-04-05 13:20:12 +00:00
<vn-thead>
<vn-tr>
<vn-th number field="ticketFk">Ticket ID</vn-th>
2019-07-25 07:55:09 +00:00
<vn-th field="shipped">Shipped</vn-th>
2019-04-05 13:20:12 +00:00
<vn-th field="warehouse">Warehouse</vn-th>
<vn-th field="salesPersonNickname">SalesPerson</vn-th>
<vn-th field="description">Description</vn-th>
2019-04-09 11:47:13 +00:00
<vn-th field="quantity" number editable>Quantity</vn-th>
<vn-th field="price" number>Price</vn-th>
2019-04-05 13:20:12 +00:00
<vn-th field="atenderNickname">Atender</vn-th>
<vn-th field="itemFk">Item</vn-th>
2019-04-05 13:20:12 +00:00
<vn-th field="description">Concept</vn-th>
2019-07-25 07:55:09 +00:00
<vn-th field="saleQuantity" number>Sale quantity</vn-th>
<vn-th field="isOk">State</vn-th>
2019-04-05 13:20:12 +00:00
</vn-tr>
</vn-thead>
<vn-tbody>
<vn-tr ng-repeat="request in requests">
<vn-td number>
<span class="link"
ng-click="$ctrl.showTicketDescriptor($event, request.ticketFk)">
{{request.ticketFk}}
</span>
</vn-td>
<vn-td>
<span title="{{::request.shipped | dateTime: 'dd/MM/yyyy'}}"
class="chip {{$ctrl.compareDate(request.shipped)}}">
{{::request.shipped | dateTime: 'dd/MM/yyyy'}}
</span>
2019-04-05 13:20:12 +00:00
</vn-td>
<vn-td>{{::request.warehouse}}</vn-td>
<vn-td>
<span
class="link"
ng-click="$ctrl.showWorkerDescriptor($event, request.salesPersonFk)">
{{::request.salesPersonNickname}}
</span>
</vn-td>
2019-07-25 07:55:09 +00:00
<vn-td title="{{::request.description}}">{{::request.description}}</vn-td>
2019-04-09 11:47:13 +00:00
<vn-td number>{{::request.quantity}}</vn-td>
<vn-td number>{{::request.price | currency: 'EUR':2}}</vn-td>
<vn-td>
<span
class="link"
ng-click="$ctrl.showWorkerDescriptor($event, request.atenderFk)">
{{::request.atenderNickname}}
</span>
</vn-td>
2019-07-25 07:55:09 +00:00
<vn-td-editable disabled="request.isOk === 0" number>
2019-04-05 13:20:12 +00:00
<text>{{request.itemFk}}</text>
<field>
<vn-input-number
field="request.itemFk"
2019-04-09 11:47:13 +00:00
on-change="$ctrl.confirmRequest(request)">
</vn-input-number>
2019-04-05 13:20:12 +00:00
</field>
</vn-td-editable>
2019-07-25 07:55:09 +00:00
<vn-td>
<span
class="link"
ng-click="$ctrl.showItemDescriptor($event, request.itemFk)"
title="{{::request.itemDescription}}">
{{::request.itemDescription}}
</span>
</vn-td>
<vn-td-editable disabled="request.isOk === 0" number>
2019-04-09 11:47:13 +00:00
<text number>{{request.saleQuantity}}</text>
2019-04-05 13:20:12 +00:00
<field>
<vn-input-number
field="request.saleQuantity"
2019-04-09 11:47:13 +00:00
on-change="$ctrl.changeQuantity(request)">
</vn-input-number>
2019-04-05 13:20:12 +00:00
</field>
</vn-td-editable>
<vn-td>{{::$ctrl.getState(request.isOk)}}</vn-td>
<vn-td>
2019-07-25 07:55:09 +00:00
<vn-icon
ng-if="request.response.length"
vn-tooltip="{{request.response}}"
icon="insert_drive_file">
</vn-icon>
2019-04-05 13:20:12 +00:00
<vn-icon-button
2019-07-25 07:55:09 +00:00
ng-if="request.isOk != 0"
2019-04-05 13:20:12 +00:00
number
icon="thumb_down"
ng-click="$ctrl.showDenyReason($event, request.id)"
vn-tooltip="Discard">
</vn-icon-button>
</vn-td>
</vn-tr>
</vn-tbody>
</vn-table>
</vn-card>
<vn-pagination model="model"></vn-pagination>
</div>
</form>
<vn-worker-descriptor-popover
vn-id="workerDescriptor">
</vn-worker-descriptor-popover>
2019-04-05 13:20:12 +00:00
<vn-ticket-descriptor-popover
vn-id="ticketDescriptor">
</vn-ticket-descriptor-popover>
<vn-item-descriptor-popover
vn-id="itemDescriptor">
</vn-item-descriptor-popover>
2019-04-05 13:20:12 +00:00
<vn-dialog
vn-id="denyReason"
class="modal-form">
<tpl-body>
<vn-horizontal class="header">
<h5><span translate>Indicate the reasons to deny this request</span></h5>
</vn-horizontal>
<vn-horizontal class="vn-pa-md">
2019-04-05 13:20:12 +00:00
<vn-textarea
model="$ctrl.denyObservation">
</vn-textarea>
</vn-horizontal>
<vn-horizontal class="vn-pa-md">
2019-04-05 13:20:12 +00:00
<vn-button
label="Save"
ng-click="$ctrl.denyRequest()">
</vn-button>
</vn-horizontal>
</tpl-body>
</vn-dialog>