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

203 lines
6.9 KiB
HTML
Raw Normal View History

2019-01-21 14:21:24 +00:00
<div class="vn-descriptor">
<div class="header">
<a translate-attr="{title: 'Return to module index'}" ui-sref="ticket.index">
2018-04-10 05:39:43 +00:00
<vn-icon icon="chevron_left"></vn-icon>
</a>
2018-09-04 09:49:00 +00:00
<a translate-attr="{title: 'Preview'}" ui-sref="ticket.card.summary({id: $ctrl.ticket.id})">
2018-04-10 05:39:43 +00:00
<vn-icon icon="desktop_windows"></vn-icon>
</a>
2018-11-08 14:20:42 +00:00
<vn-icon-menu
vn-id="more-button"
icon="more_vert"
show-filter="false"
value-field="callback"
translate-fields="['name']"
data="$ctrl.moreOptions"
on-change="$ctrl.onMoreChange(value)"
on-open="$ctrl.onMoreOpen()">
</vn-icon-menu>
2018-05-31 06:57:25 +00:00
</div>
2019-01-21 14:21:24 +00:00
<div class="body">
<div class="attributes">
<h5>{{::$ctrl.client.name}}</h5>
<vn-label-value label="Id"
value="{{$ctrl.ticket.id}}">
</vn-label-value>
<vn-label-value label="Client"
value="{{$ctrl.ticket.client.name}}">
</vn-label-value>
<vn-label-value label="State"
value="{{$ctrl.ticket.state.state.name}}">
</vn-label-value>
<vn-label-value label="Sales person"
value="{{$ctrl.ticket.client.salesPerson.user.nickname}}">
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 vn-one
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>
2019-01-21 14:21:24 +00:00
<vn-icon vn-one
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>
2019-01-21 14:21:24 +00:00
<vn-icon vn-one
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>
2019-01-21 14:21:24 +00:00
<vn-icon vn-one
vn-tooltip="Client not checked"
icon="icon-no036"
ng-class="{bright: $ctrl.ticket.client.isTaxDataChecked == false}">
</vn-icon>
<vn-icon vn-one
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>
2019-10-18 19:36:30 +00:00
<vn-quick-links
links="$ctrl.quicklinks">
</vn-quick-links>
<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>
</div>
</div>
2019-10-26 23:30:01 +00:00
<vn-popup vn-id="addTurn">
<div class="vn-pa-md">
<h5 style="text-align: center">
<span translate>In which day you want to add the ticket?</span>
</h5>
<vn-tool-bar class="vn-mt-md">
<vn-button
label="Monday"
ng-click="$ctrl.addTurn(0)">
</vn-button>
<vn-button
label="Tuesday"
ng-click="$ctrl.addTurn(1)">
</vn-button>
<vn-button
label="Wednesday"
ng-click="$ctrl.addTurn(2)">
</vn-button>
<vn-button
label="Thursday"
ng-click="$ctrl.addTurn(3)">
</vn-button>
<vn-button
label="Friday"
ng-click="$ctrl.addTurn(4)">
</vn-button>
<vn-button
label="Saturday"
ng-click="$ctrl.addTurn(5)">
</vn-button>
<vn-button
label="Sunday"
ng-click="$ctrl.addTurn(6)">
</vn-button>
</vn-tool-bar>
</div>
</vn-popup>
2018-11-08 14:20:42 +00:00
<vn-confirm
vn-id="deleteConfirmation"
2019-10-30 15:57:14 +00:00
on-response="$ctrl.deleteTicket($response)"
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?">
2019-01-18 12:36:13 +00:00
</vn-confirm>
2019-10-18 19:36:30 +00:00
<vn-add-stowaway
vn-id="addStowaway"
2019-09-25 09:26:12 +00:00
card-reload="$ctrl.cardReload()"
ticket="$ctrl.ticket">
</vn-add-stowaway>
2019-10-18 19:36:30 +00:00
<vn-remove-stowaway
vn-id="removeStowaway"
card-reload="$ctrl.cardReload()"
ticket="$ctrl.ticket">
2019-10-10 06:07:11 +00:00
</vn-remove-stowaway>
<vn-confirm
vn-id="confirm-dialog"
2019-10-30 15:57:14 +00:00
on-response="$ctrl.returnDialog($response)"
question="Pickup order"
message="Do you want to send it directly?">
</vn-confirm>
<vn-dialog
vn-id="changeShippedDialog"
2019-10-30 15:57:14 +00:00
on-response="$ctrl.changeShipped($response)">
<tpl-body>
<div>
<h5 style="text-align: center">
<span translate>Change shipped hour</span>
</h5>
<vn-input-time
vn-id="newShipped"
vn-one
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.newShipped"
2019-10-26 23:30:01 +00:00
label="Shipped hour"
vn-focus>
</vn-input-time>
</div>
</tpl-body>
<tpl-buttons>
2019-10-30 15:57:14 +00:00
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
<button response="accept" translate>Save</button>
</tpl-buttons>
</vn-dialog>
2019-04-12 11:54:31 +00:00
<!-- Make invoice dialog -->
<vn-confirm
2019-04-26 06:52:43 +00:00
vn-id="makeInvoiceConfirmation"
2019-10-30 15:57:14 +00:00
on-response="$ctrl.makeInvoice($response)"
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>
<!-- Make invoice dialog -->
2019-04-26 06:52:43 +00:00
<!-- Regenerate invoice dialog -->
<vn-confirm
vn-id="regenerateInvoiceConfirmation"
2019-10-30 15:57:14 +00:00
on-response="$ctrl.regenerateInvoice($response)"
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?">
</vn-confirm>
<!-- Regenerate invoice dialog -->
<!-- SMS Dialog -->
<vn-client-sms vn-id="sms" sms="$ctrl.newSMS"></vn-client-sms>
2019-09-06 09:06:44 +00:00
<!-- SMS Dialog -->
<vn-confirm
vn-id="confirm-delivery-note"
2019-11-06 08:32:54 +00:00
on-accept="$ctrl.sendDeliveryNote()"
2019-09-06 09:06:44 +00:00
question="Send Delivery Note"
message="Are you sure you want to send it?">
</vn-confirm>