salix/modules/ticket/front/descriptor/index.html

196 lines
6.9 KiB
HTML
Raw Normal View History

2020-05-06 12:38:09 +00:00
<vn-descriptor-content
module="ticket"
description="$ctrl.ticket.client.name">
2020-11-09 13:52:25 +00:00
<slot-dot-menu>
<vn-ticket-descriptor-menu ticket-id="$ctrl.ticket.id" reload="$ctrl.cardReload()"/>
</slot-dot-menu>
<slot-body>
2019-01-21 14:21:24 +00:00
<div class="attributes">
<vn-label-value
label="State"
2020-06-23 11:40:49 +00:00
value="{{$ctrl.ticket.ticketState.state.name}}">
2019-01-21 14:21:24 +00:00
</vn-label-value>
<vn-label-value
2020-09-03 13:11:16 +00:00
label="Sales person">
<span
ng-click="workerDescriptor.show($event, $ctrl.ticket.client.salesPersonFk)"
class="link">
{{$ctrl.ticket.client.salesPersonUser.name}}
2020-09-03 13:11:16 +00:00
</span>
2019-01-21 14:21:24 +00:00
</vn-label-value>
<vn-label-value
label="Shipped"
value="{{$ctrl.ticket.shipped | date: 'dd/MM/yyyy HH:mm' }}">
2019-01-21 14:21:24 +00:00
</vn-label-value>
<vn-label-value
label="Agency"
2019-01-21 14:21:24 +00:00
value="{{$ctrl.ticket.agencyMode.name}}">
</vn-label-value>
<vn-label-value
label="Warehouse"
2019-01-21 14:21:24 +00:00
value="{{$ctrl.ticket.warehouse.name}}">
</vn-label-value>
<vn-label-value
label="Alias"
2019-01-21 14:21:24 +00:00
value="{{$ctrl.ticket.nickname}}">
</vn-label-value>
</div>
<div class="icons">
<vn-icon
2019-01-21 14:21:24 +00:00
vn-tooltip="Client inactive"
icon="icon-disabled"
ng-class="{bright: $ctrl.ticket.client.isActive == false}">
2018-09-04 09:49:00 +00:00
</vn-icon>
<vn-icon
2019-01-30 13:13:47 +00:00
vn-tooltip="Client frozen"
2019-01-21 14:21:24 +00:00
icon="icon-frozen"
ng-class="{bright: $ctrl.ticket.client.isFreezed == true}">
2018-09-04 09:49:00 +00:00
</vn-icon>
<vn-icon
2019-01-21 14:21:24 +00:00
vn-tooltip="Client has debt"
icon="icon-risk"
ng-class="{bright: $ctrl.ticket.client.debt > $ctrl.ticket.client.credit}">
2018-09-04 09:49:00 +00:00
</vn-icon>
<vn-icon
2019-01-21 14:21:24 +00:00
vn-tooltip="Client not checked"
icon="icon-no036"
ng-class="{bright: $ctrl.ticket.client.isTaxDataChecked == false}">
</vn-icon>
<vn-icon
vn-tooltip="Deleted ticket"
icon="icon-deletedTicket"
ng-class="{bright: $ctrl.ticket.isDeleted == true}">
</vn-icon>
2019-01-21 14:21:24 +00:00
</div>
<div class="quicklinks">
<div ng-transclude="btnOne">
<vn-quick-link
tooltip="Client card"
state="['client.card.summary', {id: $ctrl.ticket.clientFk}]"
icon="person">
</vn-quick-link>
</div>
<div ng-transclude="btnTwo">
2020-07-03 11:28:49 +00:00
<vn-quick-link
tooltip="Client ticket list"
state="['ticket.index', {q: $ctrl.filter}]"
icon="icon-ticket">
</vn-quick-link>
</div>
<div ng-transclude="btnThree">
<vn-quick-link
tooltip="New order"
state="['order.create', {clientFk: $ctrl.ticket.clientFk}]"
icon="icon-basketadd">
</vn-quick-link>
</div>
<div ng-transclude="btnFour">
<vn-quick-link
ng-if="$ctrl.ticket.stowaway"
tooltip="Ship stowaways"
state="['ticket.card.summary', {id: $ctrl.ticket.stowaway.shipFk}]"
icon="icon-stowaway">
</vn-quick-link>
</div>
2020-07-03 11:28:49 +00:00
<div ng-transclude="btnFour">
<vn-quick-link
ng-if="$ctrl.ticket.ship"
tooltip="Stowaway"
state="['ticket.card.summary', {id: $ctrl.ticket.ship.id}]"
icon="icon-stowaway">
</vn-quick-link>
</div>
</div>
2019-10-18 19:36:30 +00:00
<div style="text-align: center">
2019-01-21 14:21:24 +00:00
<vn-button-menu
ng-if="$ctrl.ticket.ship.length > 1"
vn-id="stowaways-button"
2019-02-01 10:42:31 +00:00
icon="icon-stowaway"
2019-01-21 14:21:24 +00:00
show-filter="false"
show-field="id"
value-field="id"
vn-tooltip="Ship stowaways"
tooltip-position="up"
2019-01-21 14:21:24 +00:00
data="$ctrl.ticket.ship"
on-change="$ctrl.goToTicket(value)">
</vn-button-menu>
</div>
</slot-body>
</vn-descriptor-content>
2020-11-09 13:52:25 +00:00
<!-- <vn-confirm
2018-11-08 14:20:42 +00:00
vn-id="deleteConfirmation"
on-accept="$ctrl.deleteTicket()"
2018-11-08 14:20:42 +00:00
question="You are going to delete this ticket"
2019-04-08 08:57:01 +00:00
message="This ticket will be removed from current route! Continue anyway?">
2020-11-09 13:52:25 +00:00
</vn-confirm> -->
<!-- <vn-confirm
2020-10-07 09:00:26 +00:00
vn-id="restoreConfirmation"
on-accept="$ctrl.restoreTicket()"
question="You are going to restore this ticket"
2020-10-08 11:42:20 +00:00
message="Are you sure you want to restore this ticket?">
2020-11-09 13:52:25 +00:00
</vn-confirm> -->
<!-- <vn-confirm
2019-12-17 07:38:36 +00:00
vn-id="deleteStowaway"
on-accept="$ctrl.deleteStowaway()"
question="Delete stowaway"
message="Are you sure you want to delete this stowaway?">
2020-11-09 13:52:25 +00:00
</vn-confirm> -->
<vn-confirm
vn-id="confirmDialog"
on-accept="$ctrl.returnDialog()"
question="Pickup order"
message="Do you want to send it directly?">
</vn-confirm>
2020-11-09 13:52:25 +00:00
<!-- <vn-confirm
2019-04-26 06:52:43 +00:00
vn-id="makeInvoiceConfirmation"
on-accept="$ctrl.makeInvoice()"
2019-04-12 11:54:31 +00:00
question="You are going to invoice this ticket"
message="Are you sure you want to invoice this ticket?">
</vn-confirm>
2019-04-26 06:52:43 +00:00
<vn-confirm
vn-id="regenerateInvoiceConfirmation"
on-accept="$ctrl.regenerateInvoice()"
2019-04-26 06:52:43 +00:00
question="You are going to regenerate the invoice"
message="Are you sure you want to regenerate the invoice?">
2020-11-09 13:52:25 +00:00
</vn-confirm> -->
<!-- <vn-confirm
vn-id="confirmDeliveryNote"
2019-11-06 08:32:54 +00:00
on-accept="$ctrl.sendDeliveryNote()"
2019-11-20 05:53:37 +00:00
question="Are you sure you want to send it?"
message="Send Delivery Note">
2020-11-09 13:52:25 +00:00
</vn-confirm> -->
<!-- <vn-confirm
vn-id="recalculateComponentsConfirmation"
2019-11-20 05:53:37 +00:00
on-accept="$ctrl.recalculateComponents()"
question="Are you sure you want to recalculate the components?"
message="Recalculate components">
2020-11-09 13:52:25 +00:00
</vn-confirm> -->
<!-- <vn-ticket-sms
vn-id="sms"
sms="$ctrl.newSMS">
2020-11-09 13:52:25 +00:00
</vn-ticket-sms> -->
<!-- <vn-add-stowaway
vn-id="addStowaway"
card-reload="$ctrl.cardReload()"
ticket="$ctrl.ticket">
2020-11-09 13:52:25 +00:00
</vn-add-stowaway> -->
<!-- <vn-dialog
vn-id="changeShippedDialog"
2020-05-06 12:38:09 +00:00
on-accept="$ctrl.changeShipped()"
message="Change shipped hour">
<tpl-body>
<vn-input-time
ng-model="$ctrl.newShipped"
label="Shipped hour"
vn-focus>
</vn-input-time>
</tpl-body>
<tpl-buttons>
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
<button response="accept" translate>Save</button>
</tpl-buttons>
2020-09-03 13:11:16 +00:00
</vn-dialog>
<vn-worker-descriptor-popover
vn-id="workerDescriptor">
2020-11-09 13:52:25 +00:00
</vn-worker-descriptor-popover> -->