salix/modules/ticket/front/sale-tracking/index.html

273 lines
11 KiB
HTML
Raw Normal View History

2019-10-11 15:38:04 +00:00
<vn-crud-model
vn-id="model"
url="SaleTrackings/{{$ctrl.$params.id}}/filter"
limit="20"
2023-01-03 12:06:30 +00:00
data="$ctrl.sales"
order="concept ASC, quantity DESC"
2019-10-11 15:38:04 +00:00
auto-load="true">
</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>
<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>
<vn-th field="concept">Description</vn-th>
2019-10-11 15:38:04 +00:00
<vn-th field="quantity" number>Quantity</vn-th>
2023-02-06 13:03:38 +00:00
<vn-th field="parking" center>Parking</vn-th>
<vn-th></vn-th>
2019-10-11 15:38:04 +00:00
</vn-tr>
</vn-thead>
<vn-tbody>
2023-01-03 12:06:30 +00:00
<vn-tr ng-repeat="sale in $ctrl.sales">
<vn-td center>
<vn-chip
2023-06-01 13:01:38 +00:00
ng-class="{
'pink': sale.hasSaleGroupDetail,
'none': !sale.hasSaleGroupDetail,
2023-06-01 13:01:38 +00:00
}"
class="circleState"
vn-tooltip="sale group detail"
>
</vn-chip>
2023-06-01 13:01:38 +00:00
<vn-chip
ng-class="{
'notice': sale.isPreviousSelected,
'none': !sale.isPreviousSelected,
2023-06-01 13:01:38 +00:00
}"
class="circleState"
vn-tooltip="previous selected"
2023-06-01 13:01:38 +00:00
vn-click-stop="$ctrl.clickPreviousSelected($index)">
</vn-chip>
2023-06-01 13:01:38 +00:00
<vn-chip
ng-class="{
'dark-notice': sale.isPrevious,
'none': !sale.isPrevious,
2023-06-01 13:01:38 +00:00
}"
class="circleState"
vn-tooltip="previous"
vn-click-stop="$ctrl.clickPrevious($index)">
</vn-chip>
2023-06-01 13:01:38 +00:00
<vn-chip
ng-class="{
'warning': sale.isPrepared,
'none': !sale.isPrepared,
2023-06-01 13:01:38 +00:00
}"
class="circleState"
vn-tooltip="prepared"
vn-click-stop="$ctrl.clickPrepared($index)">
</vn-chip>
2023-06-01 13:01:38 +00:00
<vn-chip
ng-class="{
'yellow': sale.isControled,
'none': !sale.isControled,
2023-06-01 13:01:38 +00:00
}"
class="circleState"
vn-tooltip="checked"
vn-click-stop="$ctrl.clickControled($index)">
</vn-chip>
2023-06-01 13:01:38 +00:00
</vn-td>
2019-10-11 15:38:04 +00:00
<vn-td number>
<span
ng-click="itemDescriptor.show($event, sale.itemFk)"
2019-10-11 15:38:04 +00:00
class="link">
{{::sale.itemFk}}
2019-10-11 15:38:04 +00:00
</span>
</vn-td>
<vn-td vn-fetched-tags>
<div>
<vn-one title="{{::sale.concept}}">{{::sale.concept}}</vn-one>
<vn-one ng-if="::sale.subName">
<h3 title="{{::sale.subName}}">{{::sale.subName}}</h3>
</vn-one>
</div>
2019-10-11 15:38:04 +00:00
<vn-fetched-tags
max-length="6"
item="::sale"
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>
<vn-td center>{{::sale.parkingCode | dashIfEmpty}}</vn-td>
<vn-td actions>
<vn-icon-button
vn-click-stop="$ctrl.showSaleTracking(sale)"
vn-tooltip="Log states"
icon="history">
</vn-icon-button>
<vn-icon-button
vn-click-stop="$ctrl.showItemShelvingSale(sale)"
vn-tooltip="Shelvings sale"
icon="icon-inventory">
</vn-icon-button>
2019-10-11 15:38:04 +00:00
</vn-td>
</vn-tr>
</vn-tbody>
</vn-table>
</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
vn-id="item-descriptor"
warehouse-fk="$ctrl.ticket.warehouseFk"
ticket-fk="$ctrl.ticket.id">
</vn-item-descriptor-popover>
<vn-popup vn-id="saleTracking">
<vn-crud-model
vn-id="modelSaleTracking"
url="SaleTrackings/listSaleTracking"
link="{saleFk: $ctrl.saleId}"
limit="20"
2023-01-03 12:06:30 +00:00
data="saleTrackings"
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="saleTracking in saleTrackings">
<vn-td number>{{::saleTracking.quantity}}</vn-td>
<vn-td number>{{::saleTracking.originalQuantity}}</vn-td>
<vn-td expand>
<span
class="link"
ng-click="workerDescriptor.show($event, saleTracking.workerFk)">
{{::saleTracking.name | dashIfEmpty}}
</span>
</vn-td>
<vn-td shrink>{{::saleTracking.state}}</vn-td>
<vn-td expand>{{::saleTracking.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>
2023-06-05 07:43:39 +00:00
<vn-popup vn-id="itemShelvingSale" message="Shelvings sale">
<vn-crud-model
vn-id="modelSaleTracking"
url="ItemShelvingSales/filter"
link="{saleFk: $ctrl.saleId}"
limit="20"
data="$ctrl.itemShelvingSales"
auto-load="true">
</vn-crud-model>
2023-06-05 07:43:39 +00:00
<vn-data-viewer model="modelSaleTracking" class="vn-w-lg">
<vn-table>
<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">
2023-06-05 07:43:39 +00:00
<vn-td-editable number shrink>
<text>{{itemShelvingSale.quantity}}</text>
<field>
<vn-input-number class="dense" vn-focus
ng-model="itemShelvingSale.quantity"
on-change="$ctrl.updateItemShelvingSale(itemShelvingSale)">
</vn-input-number>
</field>
</vn-td-editable>
<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>
2023-06-05 07:43:39 +00:00
<!-- <vn-dialog
vn-id="itemShelvingSale"
message="Shelvings sale"
on-accept="$ctrl.sendPdfInvoice($data)">
<tpl-body>
<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" class="vn-w-lg">
<vn-table class="scrollable">
<vn-thead>
<vn-tr>
<vn-th field="quantity" number shrink>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-editable number shrink>
<text>{{itemShelvingSale.quantity}}</text>
<field>
<vn-input-number class="dense" vn-focus
ng-model="itemShelvingSale.quantity"
on-change="$ctrl.updateItemShelvingSale(sale)">
</vn-input-number>
</field>
</vn-td-editable>
<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>
</tpl-body>
<tpl-buttons>
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
<button response="accept" translate>Confirm</button>
</tpl-buttons>
</vn-dialog> -->