2019-10-11 15:38:04 +00:00
|
|
|
<vn-crud-model
|
2018-07-03 13:00:33 +00:00
|
|
|
vn-id="model"
|
2022-12-28 11:16:23 +00:00
|
|
|
url="sales"
|
|
|
|
filter="::$ctrl.filter"
|
2020-03-18 07:35:59 +00:00
|
|
|
link="{ticketFk: $ctrl.$params.id}"
|
2018-07-03 13:00:33 +00:00
|
|
|
limit="20"
|
2019-10-11 15:38:04 +00:00
|
|
|
data="sales"
|
2022-12-28 11:16:23 +00:00
|
|
|
order="concept ASC"
|
2019-10-11 15:38:04 +00:00
|
|
|
auto-load="true">
|
2018-07-03 13:00:33 +00:00
|
|
|
</vn-crud-model>
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-data-viewer model="model">
|
2021-01-28 14:10:47 +00:00
|
|
|
<vn-card class="vn-w-lg">
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
2022-12-28 11:16:23 +00:00
|
|
|
<vn-th field="isChecked" center>Is checked</vn-th>
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-th field="itemFk" number>Item</vn-th>
|
2022-12-28 11:16:23 +00:00
|
|
|
<vn-th field="concept">Description</vn-th>
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-th field="quantity" number>Quantity</vn-th>
|
2022-12-28 11:16:23 +00:00
|
|
|
<vn-th></vn-th>
|
|
|
|
<vn-th></vn-th>
|
2019-10-11 15:38:04 +00:00
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="sale in sales">
|
2022-12-28 11:16:23 +00:00
|
|
|
<vn-td center>
|
|
|
|
<span class="chip {{::$ctrl.chipHasSaleGroupDetail(sale.id)}} vn-mx-xs chip2" vn-tooltip="has saleGroupDetail"></span>
|
|
|
|
<span class="chip {{::$ctrl.chipIsPreviousSelected()}} vn-ml-xs" vn-tooltip="is previousSelected"></span>
|
|
|
|
<span class="chip {{::$ctrl.chipIsPrevious()}} vn-mr-xs" vn-tooltip="is previous"></span>
|
|
|
|
<span class="chip {{::$ctrl.chipIsPrepared()}} vn-mx-xs" vn-tooltip="is prepared"></span>
|
|
|
|
<span class="chip {{::$ctrl.chipIsControled()}} vn-mx-xs" vn-tooltip="is controled"></span>
|
2019-10-11 15:38:04 +00:00
|
|
|
</vn-td>
|
|
|
|
<vn-td number>
|
|
|
|
<span
|
2022-12-28 11:16:23 +00:00
|
|
|
ng-click="$ctrl.showItemDescriptor($event, sale)"
|
2019-10-11 15:38:04 +00:00
|
|
|
class="link">
|
2022-12-28 11:16:23 +00:00
|
|
|
{{::sale.itemFk | zeroFill:6}}
|
2019-10-11 15:38:04 +00:00
|
|
|
</span>
|
|
|
|
</vn-td>
|
2021-09-23 15:19:47 +00:00
|
|
|
<vn-td vn-fetched-tags>
|
|
|
|
<div>
|
|
|
|
<vn-one title="{{::sale.item.name}}">{{::sale.item.name}}</vn-one>
|
|
|
|
<vn-one ng-if="::sale.item.subName">
|
|
|
|
<h3 title="{{::sale.item.subName}}">{{::sale.item.subName}}</h3>
|
|
|
|
</vn-one>
|
|
|
|
</div>
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-fetched-tags
|
|
|
|
max-length="6"
|
|
|
|
item="::sale.item"
|
2021-01-28 14:10:47 +00:00
|
|
|
tabindex="-1">
|
2019-10-11 15:38:04 +00:00
|
|
|
</vn-fetched-tags>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td number>{{::sale.quantity}}</vn-td>
|
2022-12-28 11:16:23 +00:00
|
|
|
<vn-td center>
|
|
|
|
<vn-icon-button
|
|
|
|
vn-click-stop="$ctrl.showSaleTracking(sale)"
|
|
|
|
vn-tooltip="Sale tracking"
|
|
|
|
icon="history">
|
|
|
|
</vn-icon-button>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td>
|
|
|
|
<vn-icon-button
|
|
|
|
vn-click-stop="$ctrl.showItemShelvingSale(sale)"
|
|
|
|
vn-tooltip="ItemShelvings sale"
|
|
|
|
icon="icon-inventory">
|
|
|
|
</vn-icon-button>
|
2019-10-11 15:38:04 +00:00
|
|
|
</vn-td>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
2018-07-03 13:00:33 +00:00
|
|
|
</vn-card>
|
2019-10-11 15:38:04 +00:00
|
|
|
</vn-data-viewer>
|
2020-04-25 09:50:04 +00:00
|
|
|
<vn-item-descriptor-popover
|
2021-05-21 13:31:28 +00:00
|
|
|
vn-id="item-descriptor"
|
2022-12-28 11:16:23 +00:00
|
|
|
warehouse-fk="$ctrl.ticket.warehouseFk"
|
|
|
|
ticket-fk="$ctrl.ticket.id">
|
2019-02-15 11:39:21 +00:00
|
|
|
</vn-item-descriptor-popover>
|
2022-12-28 11:16:23 +00:00
|
|
|
|
|
|
|
<vn-popup vn-id="saleTracking">
|
|
|
|
<vn-crud-model
|
|
|
|
vn-id="modelSaleTracking"
|
|
|
|
url="SaleTrackings/listSaleTracking"
|
|
|
|
link="{saleFk: $ctrl.saleId}"
|
|
|
|
limit="20"
|
|
|
|
data="sales"
|
|
|
|
order="itemFk DESC"
|
|
|
|
auto-load="true">
|
|
|
|
</vn-crud-model>
|
|
|
|
<vn-data-viewer model="modelSaleTracking">
|
|
|
|
<vn-card class="vn-w-lg">
|
|
|
|
<vn-table model="modelSaleTracking">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th field="quantity" number>Quantity</vn-th>
|
|
|
|
<vn-th field="originalQuantity" number>Original</vn-th>
|
|
|
|
<vn-th field="workerFk">Worker</vn-th>
|
|
|
|
<vn-th field="state" shrink>State</vn-th>
|
|
|
|
<vn-th field="created" expand>Created</vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="sale in sales">
|
|
|
|
<vn-td number>{{::sale.quantity}}</vn-td>
|
|
|
|
<vn-td number>{{::sale.originalQuantity}}</vn-td>
|
|
|
|
<vn-td expand>
|
|
|
|
<span
|
|
|
|
class="link"
|
|
|
|
ng-click="workerDescriptor.show($event, sale.workerFk)">
|
|
|
|
{{::sale.userNickname | dashIfEmpty}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink>{{::sale.state}}</vn-td>
|
|
|
|
<vn-td expand>{{::sale.created | date: 'dd/MM/yyyy HH:mm'}}</vn-td>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
|
|
|
</vn-card>
|
|
|
|
</vn-data-viewer>
|
|
|
|
<vn-item-descriptor-popover
|
|
|
|
vn-id="item-descriptor"
|
|
|
|
warehouse-fk="$ctrl.ticket.warehouseFk">
|
|
|
|
</vn-item-descriptor-popover>
|
|
|
|
<vn-worker-descriptor-popover
|
|
|
|
vn-id="worker-descriptor">
|
|
|
|
</vn-worker-descriptor-popover>
|
|
|
|
</vn-popup>
|
|
|
|
|
|
|
|
<vn-popup vn-id="itemShelvingSale">
|
|
|
|
<vn-crud-model
|
|
|
|
vn-id="modelSaleTracking"
|
|
|
|
url="ItemShelvingSales/filter"
|
|
|
|
link="{saleFk: $ctrl.saleId}"
|
|
|
|
limit="20"
|
|
|
|
data="$ctrl.itemShelvingSales"
|
|
|
|
auto-load="true">
|
|
|
|
</vn-crud-model>
|
|
|
|
<vn-data-viewer model="modelSaleTracking">
|
|
|
|
<vn-card class="vn-w-lg">
|
|
|
|
<vn-table model="modelSaleTracking">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th field="quantity" number>Quantity</vn-th>
|
|
|
|
<vn-th field="workerFk">Worker</vn-th>
|
|
|
|
<vn-th field="shelving" shrink>Shelving</vn-th>
|
|
|
|
<vn-th field="parking" shrink>Parking</vn-th>
|
|
|
|
<vn-th field="created" expand>Created</vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="itemShelvingSale in $ctrl.itemShelvingSales">
|
|
|
|
<vn-td number>{{::itemShelvingSale.quantity}}</vn-td>
|
|
|
|
<vn-td expand>
|
|
|
|
<span
|
|
|
|
class="link"
|
|
|
|
ng-click="workerDescriptor.show($event, itemShelvingSale.userFk)">
|
|
|
|
{{::itemShelvingSale.name | dashIfEmpty}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink>{{::itemShelvingSale.shelvingFk}}</vn-td>
|
|
|
|
<vn-td shrink>{{::itemShelvingSale.code}}</vn-td>
|
|
|
|
<vn-td expand>{{::itemShelvingSale.created | date: 'dd/MM/yyyy HH:mm'}}</vn-td>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
|
|
|
</vn-card>
|
|
|
|
</vn-data-viewer>
|
|
|
|
<vn-worker-descriptor-popover
|
|
|
|
vn-id="worker-descriptor">
|
|
|
|
</vn-worker-descriptor-popover>
|
|
|
|
</vn-popup>
|