2018-11-27 14:02:54 +00:00
|
|
|
<vn-crud-model auto-load="false"
|
2018-07-17 06:44:31 +00:00
|
|
|
vn-id="model"
|
2020-03-18 07:35:59 +00:00
|
|
|
url="Tickets/{{$ctrl.$params.id}}/getSales"
|
2018-10-22 06:23:10 +00:00
|
|
|
data="$ctrl.sales">
|
2018-07-17 06:44:31 +00:00
|
|
|
</vn-crud-model>
|
2019-09-05 07:00:55 +00:00
|
|
|
<vn-watcher
|
|
|
|
vn-id="watcher"
|
|
|
|
data="$ctrl.sales">
|
|
|
|
</vn-watcher>
|
2020-05-06 12:38:09 +00:00
|
|
|
<div class="vn-w-xl">
|
2019-10-04 22:16:57 +00:00
|
|
|
<vn-card class="vn-pa-lg">
|
2020-04-28 12:26:02 +00:00
|
|
|
<vn-horizontal class="header">
|
|
|
|
<vn-tool-bar class="vn-mb-md">
|
|
|
|
<vn-button
|
|
|
|
disabled="!$ctrl.isEditable"
|
|
|
|
label="Ok"
|
|
|
|
vn-http-click="$ctrl.onStateOkClick()"
|
|
|
|
vn-tooltip="Change ticket state to 'Ok'">
|
|
|
|
</vn-button>
|
|
|
|
<vn-button-menu
|
|
|
|
disabled="!$ctrl.isEditable"
|
|
|
|
label="State"
|
|
|
|
value-field="id"
|
|
|
|
url="States/editableStates"
|
|
|
|
on-change="$ctrl.onStateChange(value)">
|
|
|
|
</vn-button-menu>
|
|
|
|
<vn-button-menu
|
|
|
|
ng-show="$ctrl.isChecked"
|
|
|
|
vn-id="more-button"
|
|
|
|
label="More"
|
|
|
|
show-filter="false"
|
|
|
|
value-field="callback"
|
|
|
|
translate-fields="['name']"
|
|
|
|
on-change="$ctrl.onMoreChange(value)"
|
|
|
|
on-open="$ctrl.onMoreOpen()">
|
|
|
|
</vn-button-menu>
|
|
|
|
<vn-button
|
|
|
|
disabled="!$ctrl.isChecked || !$ctrl.isEditable"
|
|
|
|
ng-click="deleteLines.show()"
|
|
|
|
vn-tooltip="Remove lines"
|
|
|
|
icon="delete">
|
|
|
|
</vn-button>
|
|
|
|
<vn-button
|
|
|
|
disabled="!$ctrl.isChecked || !$ctrl.isEditable"
|
2020-05-25 12:45:26 +00:00
|
|
|
ng-click="$ctrl.showTransferPopover($event)"
|
2020-04-28 12:26:02 +00:00
|
|
|
vn-tooltip="Transfer lines"
|
|
|
|
icon="call_split">
|
|
|
|
</vn-button>
|
|
|
|
</vn-tool-bar>
|
|
|
|
<vn-one class="taxes" ng-if="$ctrl.sales.length > 0">
|
|
|
|
<p><vn-label translate>Subtotal</vn-label> {{$ctrl.subtotal | currency: 'EUR':2}}</p>
|
|
|
|
<p><vn-label translate>VAT</vn-label> {{$ctrl.VAT | currency: 'EUR':2}}</p>
|
|
|
|
<p><vn-label><strong>Total</strong></vn-label> <strong>{{$ctrl.total | currency: 'EUR':2}}</strong></p>
|
|
|
|
</vn-one>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th shrink>
|
|
|
|
<vn-multi-check
|
|
|
|
model="model">
|
|
|
|
</vn-multi-check>
|
|
|
|
</vn-th>
|
|
|
|
<vn-th shrink></vn-th>
|
|
|
|
<vn-th shrink></vn-th>
|
|
|
|
<vn-th number>Id</vn-th>
|
|
|
|
<vn-th>Quantity</vn-th>
|
|
|
|
<vn-th>Item</vn-th>
|
|
|
|
<vn-th number>Price</vn-th>
|
|
|
|
<vn-th number>Disc</vn-th>
|
|
|
|
<vn-th number>Amount</vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="sale in $ctrl.sales">
|
2019-07-02 10:12:15 +00:00
|
|
|
<vn-td shrink>
|
2020-04-28 12:26:02 +00:00
|
|
|
<vn-check
|
|
|
|
ng-model="sale.checked">
|
|
|
|
</vn-check>
|
2019-07-02 10:12:15 +00:00
|
|
|
</vn-td>
|
2020-04-28 12:26:02 +00:00
|
|
|
<vn-td shrink>
|
|
|
|
<a ui-sref="claim.card.basicData({id: sale.claim.claimFk})">
|
|
|
|
<vn-icon
|
|
|
|
ng-show="sale.claim.claimFk"
|
|
|
|
icon="icon-claims"
|
2020-05-08 12:01:49 +00:00
|
|
|
vn-tooltip="{{::$ctrl.$t('Claim')}}: {{::sale.claim.claimFk}}">
|
2020-04-28 12:26:02 +00:00
|
|
|
</vn-icon>
|
|
|
|
</a>
|
|
|
|
<vn-icon
|
|
|
|
ng-show="sale.visible < 0 || sale.available < 0"
|
|
|
|
color-main
|
|
|
|
icon="warning"
|
2020-05-08 12:01:49 +00:00
|
|
|
vn-tooltip="Visible: {{::sale.visible || 0}} <br> {{::$ctrl.$t('Available')}}: {{::sale.available || 0}}">
|
2020-04-28 12:26:02 +00:00
|
|
|
</vn-icon>
|
|
|
|
<vn-icon ng-show="sale.reserved"
|
2020-05-08 12:01:49 +00:00
|
|
|
icon="icon-reserve"
|
|
|
|
vn-tooltip="{{::$ctrl.$t('Reserved')}}">
|
2020-04-28 12:26:02 +00:00
|
|
|
</vn-icon>
|
2019-09-06 09:43:15 +00:00
|
|
|
</vn-td>
|
2020-04-28 12:26:02 +00:00
|
|
|
<vn-td shrink>
|
|
|
|
<img
|
|
|
|
ng-src="{{::$root.imagePath}}/50x50/{{sale.image}}"
|
|
|
|
zoom-image="{{::$root.imagePath}}/1600x900/{{sale.image}}"
|
|
|
|
on-error-src/>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td vn-focus number>
|
|
|
|
<span class="link" ng-if="sale.id"
|
2020-05-08 12:01:49 +00:00
|
|
|
ng-click="descriptor.show($event, sale.itemFk, sale.id)">
|
2020-04-28 12:26:02 +00:00
|
|
|
{{sale.itemFk}}
|
|
|
|
</span>
|
|
|
|
<vn-autocomplete
|
|
|
|
ng-if="!sale.id"
|
|
|
|
vn-focus
|
|
|
|
vn-one
|
|
|
|
url="Items"
|
|
|
|
ng-model="sale.itemFk"
|
|
|
|
show-field="name"
|
|
|
|
value-field="id"
|
|
|
|
search-function="$ctrl.itemSearchFunc($search)"
|
|
|
|
on-change="$ctrl.onChangeQuantity(sale)"
|
|
|
|
order="id DESC"
|
|
|
|
tabindex="1">
|
|
|
|
<tpl-item>
|
|
|
|
{{id}} - {{name}}
|
|
|
|
</tpl-item>
|
|
|
|
</vn-autocomplete>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td-editable ng-if="sale.id" disabled="!$ctrl.isEditable" number>
|
|
|
|
<text>{{sale.quantity}}</text>
|
|
|
|
<field>
|
|
|
|
<vn-input-number class="dense"
|
|
|
|
vn-focus
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="sale.quantity"
|
2020-04-28 12:26:02 +00:00
|
|
|
on-change="$ctrl.onChangeQuantity(sale)">
|
2019-09-06 09:43:15 +00:00
|
|
|
</vn-input-number>
|
2020-04-28 12:26:02 +00:00
|
|
|
</field>
|
|
|
|
</vn-td-editable>
|
|
|
|
<vn-td ng-if="!sale.id" number>
|
|
|
|
<vn-input-number
|
|
|
|
ng-model="sale.quantity"
|
|
|
|
on-change="$ctrl.onChangeQuantity(sale)"
|
|
|
|
tabindex="2">
|
|
|
|
</vn-input-number>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td-editable disabled="!sale.id || !$ctrl.isEditable" expand>
|
|
|
|
<text>
|
|
|
|
<vn-fetched-tags
|
|
|
|
max-length="6"
|
|
|
|
item="sale.item"
|
|
|
|
name="sale.concept"
|
|
|
|
sub-name="sale.subName">
|
|
|
|
</vn-fetched-tags>
|
|
|
|
</text>
|
|
|
|
<field>
|
|
|
|
<vn-textfield class="dense"
|
|
|
|
vn-id="concept"
|
|
|
|
ng-model="sale.concept"
|
|
|
|
on-change="$ctrl.updateConcept(sale)">
|
|
|
|
</vn-textfield>
|
|
|
|
</field>
|
|
|
|
</vn-td-editable>
|
|
|
|
<vn-td number>
|
|
|
|
<span ng-class="{'link': $ctrl.isEditable}"
|
|
|
|
title="{{$ctrl.isEditable ? 'Edit price' : ''}}"
|
|
|
|
ng-click="$ctrl.showEditPricePopover($event, sale)">
|
|
|
|
{{sale.price | currency: 'EUR':2}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td number>
|
|
|
|
<span ng-class="{'link': !$ctrl.isLocked}"
|
|
|
|
title="{{!$ctrl.isLocked ? 'Edit discount' : ''}}"
|
|
|
|
ng-click="$ctrl.showEditDiscountPopover($event, sale)"
|
|
|
|
ng-if="sale.id">
|
|
|
|
{{(sale.discount / 100) | percentage}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td number>
|
|
|
|
{{$ctrl.getSaleTotal(sale) | currency: 'EUR':2}}
|
|
|
|
</vn-td>
|
|
|
|
</vn-tr>
|
2019-07-02 10:12:15 +00:00
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
2020-05-06 12:38:09 +00:00
|
|
|
<div>
|
|
|
|
<vn-icon-button
|
|
|
|
vn-none
|
2019-07-02 10:12:15 +00:00
|
|
|
vn-tooltip="Add item"
|
|
|
|
vn-bind="+"
|
|
|
|
icon="add_circle"
|
|
|
|
ng-click="$ctrl.add()"
|
|
|
|
disabled="!$ctrl.isEditable">
|
|
|
|
</vn-icon-button>
|
2020-05-06 12:38:09 +00:00
|
|
|
</div>
|
2018-03-22 17:02:48 +00:00
|
|
|
</vn-card>
|
2020-05-06 12:38:09 +00:00
|
|
|
</div>
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-float-button
|
|
|
|
ng-show="$ctrl.isEditable"
|
|
|
|
ng-click="$ctrl.newOrderFromTicket()"
|
|
|
|
icon="add"
|
|
|
|
vn-tooltip="Add item"
|
|
|
|
vn-bind="+"
|
|
|
|
fixed-bottom-right>
|
|
|
|
</vn-float-button>
|
|
|
|
<vn-item-descriptor-popover
|
|
|
|
vn-id="descriptor"
|
2020-04-30 10:48:52 +00:00
|
|
|
warehouse-fk="$ctrl.ticket.warehouseFk",
|
|
|
|
ticket-fk="$ctrl.ticket.id">
|
2019-10-11 15:38:04 +00:00
|
|
|
</vn-item-descriptor-popover>
|
2018-06-06 14:54:40 +00:00
|
|
|
|
2019-10-11 15:38:04 +00:00
|
|
|
<!-- Edit Price Popover -->
|
2019-10-26 23:30:01 +00:00
|
|
|
<vn-popover
|
2019-10-11 15:38:04 +00:00
|
|
|
vn-id="edit-price-popover"
|
|
|
|
on-open="$ctrl.getManaSalespersonMana()"
|
|
|
|
on-close="$ctrl.mana = null">
|
|
|
|
<div class="edit-price">
|
2019-02-26 16:32:32 +00:00
|
|
|
<vn-spinner
|
|
|
|
ng-if="$ctrl.mana == null"
|
|
|
|
style="padding: 1em;"
|
|
|
|
enable="true">
|
|
|
|
</vn-spinner>
|
|
|
|
<div ng-if="$ctrl.mana != null">
|
2019-10-14 12:17:18 +00:00
|
|
|
<section class="header vn-pa-md">
|
2019-02-26 16:32:32 +00:00
|
|
|
<h5>MANÁ: {{$ctrl.mana | currency: 'EUR':0}}</h5>
|
2019-10-14 12:17:18 +00:00
|
|
|
</section>
|
2019-10-04 22:16:57 +00:00
|
|
|
<div class="vn-pa-md">
|
2019-05-29 10:41:26 +00:00
|
|
|
<vn-input-number
|
2019-02-26 16:32:32 +00:00
|
|
|
vn-focus
|
|
|
|
label="Price"
|
2020-05-25 11:49:24 +00:00
|
|
|
ng-model="$ctrl.newPrice"
|
2019-05-29 10:41:26 +00:00
|
|
|
step="0.01"
|
2019-10-08 21:57:02 +00:00
|
|
|
on-change="$ctrl.updatePrice()"
|
|
|
|
suffix="€">
|
2019-05-29 10:41:26 +00:00
|
|
|
</vn-input-number>
|
2019-02-26 16:32:32 +00:00
|
|
|
<div class="simulator">
|
|
|
|
<p class="simulatorTitle" translate>New price</p>
|
2019-06-17 10:13:05 +00:00
|
|
|
<p>{{$ctrl.newPrice | currency: 'EUR':2}}</p>
|
2019-02-26 16:32:32 +00:00
|
|
|
</div>
|
2018-06-28 13:17:50 +00:00
|
|
|
</div>
|
2018-06-06 14:54:40 +00:00
|
|
|
</div>
|
2019-10-11 15:38:04 +00:00
|
|
|
</div>
|
|
|
|
</vn-popover>
|
2018-06-06 14:54:40 +00:00
|
|
|
|
2019-10-11 15:38:04 +00:00
|
|
|
<!-- Edit Popover -->
|
2019-10-26 23:30:01 +00:00
|
|
|
<vn-popover
|
2019-10-11 15:38:04 +00:00
|
|
|
vn-id="edit-popover"
|
|
|
|
on-open="$ctrl.getManaSalespersonMana()"
|
|
|
|
on-close="$ctrl.mana = null">
|
|
|
|
<div class="edit-price">
|
2019-02-26 16:32:32 +00:00
|
|
|
<vn-spinner
|
|
|
|
ng-if="$ctrl.mana == null"
|
|
|
|
style="padding: 1em;"
|
|
|
|
enable="true">
|
|
|
|
</vn-spinner>
|
|
|
|
<vn-ticket-sale-edit-discount
|
|
|
|
ng-if="$ctrl.mana != null"
|
|
|
|
mana="$ctrl.mana"
|
|
|
|
bulk="false"
|
|
|
|
edit="$ctrl.edit"
|
|
|
|
on-hide="$ctrl.hideEditPopover()">
|
|
|
|
</vn-ticket-sale-edit-discount>
|
2019-10-11 15:38:04 +00:00
|
|
|
</div>
|
|
|
|
</vn-popover>
|
2018-06-28 13:17:50 +00:00
|
|
|
|
2019-10-11 15:38:04 +00:00
|
|
|
<!-- Transfer Popover -->
|
|
|
|
<vn-popover vn-id="transfer">
|
|
|
|
<div class="vn-pa-md transfer">
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-one>
|
|
|
|
<h4 translate>Sales to transfer</h4>
|
|
|
|
<vn-table>
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th number shrink>Id</vn-th>
|
|
|
|
<vn-th>Item</vn-th>
|
|
|
|
<vn-th number shrink>Quantity</vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="sale in $ctrl.transfer.sales">
|
|
|
|
<vn-td number shrink>{{::sale.itemFk | zeroFill:6}}</vn-td>
|
|
|
|
<vn-td>
|
|
|
|
<span title="{{::sale.concept}}">{{::sale.concept}}</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td-editable number shrink>
|
|
|
|
<text>{{sale.quantity}}</text>
|
|
|
|
<field>
|
|
|
|
<vn-input-number
|
|
|
|
vn-focus
|
|
|
|
ng-model="sale.quantity">
|
|
|
|
</vn-input-number>
|
|
|
|
</field>
|
|
|
|
</vn-td-editable>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
|
|
|
</vn-one>
|
|
|
|
<vn-one>
|
2018-06-06 14:54:40 +00:00
|
|
|
<vn-horizontal>
|
2019-10-11 15:38:04 +00:00
|
|
|
<h4 vn-one translate>Destination ticket</h4>
|
|
|
|
<vn-icon vn-none
|
2019-11-10 10:08:44 +00:00
|
|
|
color-marginal
|
2019-10-11 15:38:04 +00:00
|
|
|
vn-tooltip="You have to allow pop-ups in your web browser to use this functionality"
|
|
|
|
icon="info">
|
|
|
|
</vn-icon>
|
2018-07-09 07:48:00 +00:00
|
|
|
</vn-horizontal>
|
2019-10-11 15:38:04 +00:00
|
|
|
<table class="vn-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th number>Id</th>
|
|
|
|
<th number>F. envio</th>
|
|
|
|
<th number>Agencia</th>
|
|
|
|
<th number>Almacen</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr ng-if="$ctrl.transfer.lastActiveTickets.length === 0" >
|
|
|
|
<td colspan="4" style="text-align: center" translate>No results</td>
|
|
|
|
</tr>
|
|
|
|
<tr
|
|
|
|
class="clickable"
|
|
|
|
ng-repeat="ticket in $ctrl.transfer.lastActiveTickets track by ticket.id"
|
|
|
|
ng-click="$ctrl.transferSales(ticket.id)">
|
|
|
|
<td number>{{::ticket.id}}</td>
|
2019-10-18 23:18:25 +00:00
|
|
|
<td number>{{::ticket.shipped | date: 'dd/MM/yyyy'}}</td>
|
2019-10-11 15:38:04 +00:00
|
|
|
<td number>{{::ticket.agencyName}}</td>
|
|
|
|
<td number>{{::ticket.warehouseName}}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-02-11 07:19:03 +00:00
|
|
|
<form name="form">
|
|
|
|
<vn-horizontal class="vn-py-md">
|
|
|
|
<vn-input-number vn-one
|
|
|
|
label="Transfer to ticket"
|
|
|
|
ng-model="$ctrl.transfer.ticketId"
|
|
|
|
type="number">
|
|
|
|
</vn-input-number>
|
|
|
|
<vn-icon-button vn-none
|
|
|
|
icon="arrow_forward_ios"
|
|
|
|
ng-click="$ctrl.transferSales($ctrl.transfer.ticketId)">
|
|
|
|
</vn-icon-button>
|
|
|
|
</vn-horizontal>
|
|
|
|
</form>
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-horizontal class="vn-py-md">
|
|
|
|
<vn-button
|
|
|
|
label="New ticket"
|
|
|
|
ng-click="$ctrl.transferSales()">
|
|
|
|
</vn-button>
|
|
|
|
</vn-horizontal>
|
|
|
|
</vn-one>
|
|
|
|
</vn-horizontal>
|
|
|
|
</div>
|
|
|
|
</vn-popover>
|
|
|
|
|
|
|
|
<!-- Edit Dialog -->
|
|
|
|
<vn-dialog
|
|
|
|
vn-id="editDialog"
|
|
|
|
class="edit"
|
|
|
|
on-open="$ctrl.getManaSalespersonMana()"
|
|
|
|
on-close="$ctrl.mana = null">
|
|
|
|
<tpl-body>
|
|
|
|
<vn-spinner
|
|
|
|
ng-if="$ctrl.mana == null"
|
|
|
|
style="padding: 1em;"
|
|
|
|
enable="true">
|
|
|
|
</vn-spinner>
|
|
|
|
<vn-ticket-sale-edit-discount
|
|
|
|
ng-if="$ctrl.mana != null"
|
|
|
|
mana="$ctrl.mana"
|
|
|
|
bulk="true"
|
|
|
|
edit="$ctrl.edit"
|
|
|
|
on-hide="$ctrl.hideEditDialog()">
|
|
|
|
</vn-ticket-sale-edit-discount>
|
|
|
|
</tpl-body>
|
|
|
|
</vn-dialog>
|
|
|
|
|
|
|
|
<!-- SMS Dialog -->
|
2020-02-10 08:36:40 +00:00
|
|
|
<vn-ticket-sms
|
2019-10-11 15:38:04 +00:00
|
|
|
vn-id="sms"
|
|
|
|
sms="$ctrl.newSMS">
|
2020-02-10 08:36:40 +00:00
|
|
|
</vn-ticket-sms>
|
2019-03-29 06:29:09 +00:00
|
|
|
|
2019-06-05 11:39:15 +00:00
|
|
|
<vn-confirm
|
2018-07-02 12:14:16 +00:00
|
|
|
vn-id="delete-lines"
|
|
|
|
question="You are going to delete lines of the ticket"
|
|
|
|
message="Continue anyway?"
|
2019-10-30 15:57:14 +00:00
|
|
|
on-response="$ctrl.onRemoveLinesClick($response)">
|
2018-11-14 13:31:56 +00:00
|
|
|
</vn-confirm>
|
2019-10-11 15:38:04 +00:00
|
|
|
|
2019-06-05 11:39:15 +00:00
|
|
|
<vn-confirm
|
2019-05-24 13:30:50 +00:00
|
|
|
vn-id="delete-ticket"
|
|
|
|
question="Do you want to delete it?"
|
|
|
|
message="This ticket is now empty"
|
2019-10-30 15:57:14 +00:00
|
|
|
on-response="$ctrl.transferSales($ctrl.transfer.ticketId, $response)">
|
2019-10-11 15:38:04 +00:00
|
|
|
</vn-confirm>
|