salix/modules/order/front/index/index.html

94 lines
3.7 KiB
HTML
Raw Normal View History

2018-07-18 12:38:43 +00:00
<vn-crud-model
vn-id="model"
2019-02-27 11:03:54 +00:00
url="/api/Orders/filter"
2018-07-18 12:38:43 +00:00
limit="20"
2019-02-27 11:03:54 +00:00
data="orders"
order="landed DESC, clientFk"
2019-02-27 11:03:54 +00:00
auto-load="false">
2018-07-18 12:38:43 +00:00
</vn-crud-model>
2019-01-30 22:47:06 +00:00
<div class="content-block">
<div class="vn-list">
<vn-card pad-medium-h>
2019-02-27 11:03:54 +00:00
<vn-searchbar
panel="vn-order-search-panel"
2019-02-27 11:03:54 +00:00
on-search="$ctrl.onSearch($params)"
2019-04-12 12:33:08 +00:00
info="Search orders by id"
vn-focus>
</vn-searchbar>
</vn-card>
</div>
2019-02-10 21:52:35 +00:00
<vn-card margin-medium-v>
2019-02-27 11:03:54 +00:00
<vn-table
model="model"
auto-load="false">
2018-07-18 12:38:43 +00:00
<vn-thead>
<vn-tr>
<vn-th field="id" number>Id</vn-th>
2018-07-18 12:38:43 +00:00
<vn-th field="clientFk">Client</vn-th>
2019-05-15 06:33:27 +00:00
<vn-th field="salesPersonFk">Sales person</vn-th>
2019-02-10 21:52:35 +00:00
<vn-th field="isConfirmed" center>Confirmed</vn-th>
2018-10-08 12:38:16 +00:00
<vn-th field="sourceApp">Created from</vn-th>
2019-02-10 21:52:35 +00:00
<vn-th field="created" center>Created</vn-th>
<vn-th field="landed" default-order="DESC" center>Landed</vn-th>
2018-10-08 12:38:16 +00:00
<vn-th field="companyFk">Company</vn-th>
<vn-th center>Total</vn-th>
2018-07-18 12:38:43 +00:00
</vn-tr>
</vn-thead>
<vn-tbody>
<vn-tr ng-repeat="order in orders" class="clickable searchResult"
2018-10-10 10:58:27 +00:00
ui-sref="order.card.summary({id: {{::order.id}}})">
2019-02-10 21:52:35 +00:00
<vn-td number>{{::order.id}}</vn-td>
<vn-td expand>
<span class="link" ng-click="$ctrl.showClientDescriptor($event, order.clientFk)">
2019-02-27 11:03:54 +00:00
{{::order.clientName}}
2018-09-06 10:47:25 +00:00
</span>
</vn-td>
<vn-td expand>
<span
class="link"
ng-click="$ctrl.showWorkerDescriptor($event, order.salesPersonFk)">
2019-02-27 11:03:54 +00:00
{{::order.workerNickname | dashIfEmpty}}
</span>
</vn-td>
2019-02-10 21:52:35 +00:00
<vn-td center>
2018-10-08 12:38:16 +00:00
<vn-check
field="order.isConfirmed"
disabled="true">
</vn-check>
</vn-td>
<vn-td>{{::order.sourceApp}}</vn-td>
2019-02-10 21:52:35 +00:00
<vn-td center>{{::order.created | date:'dd/MM/yyyy HH:mm'}}</vn-td>
<vn-td center>{{::order.landed | date:'dd/MM/yyyy'}}</vn-td>
2019-02-27 11:03:54 +00:00
<vn-td>{{::order.companyCode}}</vn-td>
<vn-td number>{{::order.total | currency: 'EUR': 2 | dashIfEmpty}}</vn-td>
2019-02-10 21:52:35 +00:00
<vn-td shrink>
2018-10-10 12:03:56 +00:00
<vn-icon-button
ng-click="$ctrl.preview($event, order)"
vn-tooltip="Preview"
icon="desktop_windows">
</vn-icon-button>
</vn-td>
2018-07-18 12:38:43 +00:00
</vn-tr>
</vn-tbody>
</vn-table>
</vn-card>
2019-01-20 17:48:03 +00:00
<vn-pagination model="model"></vn-pagination>
2018-07-18 12:38:43 +00:00
</div>
2018-10-10 12:03:56 +00:00
<a ui-sref="order.create" vn-bind="+" vn-tooltip="New order" fixed-bottom-right>
2019-01-20 15:47:04 +00:00
<vn-float-button icon="add"></vn-float-button>
2018-07-18 12:38:43 +00:00
</a>
2019-01-20 15:47:04 +00:00
<vn-client-descriptor-popover
vn-id="clientDescriptor">
2019-01-20 15:47:04 +00:00
</vn-client-descriptor-popover>
<vn-worker-descriptor-popover
vn-id="workerDescriptor"
worker-fk="$ctrl.selectedWorker">
</vn-worker-descriptor-popover>
<vn-dialog
vn-id="summary"
2019-01-20 15:47:04 +00:00
class="dialog-summary">
<tpl-body>
<vn-order-summary order="$ctrl.selectedOrder"></vn-order-summary>
</tpl-body>
2019-09-05 11:06:40 +00:00
</vn-dialog>
<vn-scroll-up></vn-scroll-up>