+
+
+
+
+ {{ t('ticket.summary.state') }}
+
+ {{ ticket.ticketState.state.name }}
+
+
+
+
+
+ {{ t('ticket.summary.salesPerson') }}
+ {{ ticket.client.salesPersonUser.name }}
+
+
+
+
+ {{ t('ticket.summary.agency') }}
+ {{ ticket.agencyMode.name }}
+
+
+
+
+ {{ t('ticket.summary.zone') }}
+ {{ ticket.routeFk }}
+
+
+
+
+ {{ t('ticket.summary.warehouse') }}
+ {{ ticket.warehouse.name }}
+
+
+
+
+ {{ t('ticket.summary.invoice') }}
+ {{ ticket.refFk }}
+
+
+
+
+
+
+
+
+ {{ t('ticket.summary.shipped') }}
+ {{ toDate(ticket.shipped) }}
+
+
+
+
+ {{ t('ticket.summary.landed') }}
+ {{ toDate(ticket.landed) }}
+
+
+
+
+ {{ t('ticket.summary.packages') }}
+ {{ ticket.packages }}
+
+
+
+
+ {{ t('ticket.summary.consigneePhone') }}
+ {{ ticket.address.phone }}
+
+
+
+
+ {{ t('ticket.summary.consigneeMobile') }}
+ {{ ticket.address.mobile }}
+
+
+
+
+ {{ t('ticket.summary.clientPhone') }}
+ {{ ticket.client.phone }}
+
+
+
+
+ {{ t('ticket.summary.clientMobile') }}
+ {{ ticket.client.mobile }}
+
+
+
+
+ {{ t('ticket.summary.consignee') }}
+ {{ formattedAddress() }}
+
+
+
+
+
+
+
+
+
+ {{ note.observationType.description }}
+
+
+ {{ note.description }}
+
+
+
+
+
+
+
+
+
+ {{ t('ticket.summary.subtotal') }}
+ {{ toCurrency(ticket.totalWithoutVat) }}
+
+
+
+
+ {{ t('ticket.summary.vat') }}
+ {{
+ toCurrency(ticket.totalWithVat - ticket.totalWithoutVat)
+ }}
+
+
+
+
+ {{ t('ticket.summary.total') }}
+ {{ toCurrency(ticket.totalWithVat) }}
+
+
+
+
+
+
+
+
+
+ {{ t('ticket.summary.packages') }}
+
+
+
+
+
+ {{ t('ticket.summary.created') }}
+ {{ t('ticket.summary.package') }}
+ {{ t('ticket.summary.quantity') }}
+
+
+
+
+ {{ toDate(props.row.created) }}
+ {{ props.row.packaging.item.name }}
+ {{ props.row.quantity }}
+
+
+
+
+
+
+
+
+ {{ t('ticket.summary.services') }}
+
+
+
+
+
+ {{ t('ticket.summary.quantity') }}
+ {{ t('ticket.summary.description') }}
+ {{ t('ticket.summary.price') }}
+ {{ t('ticket.summary.taxClass') }}
+ {{ t('ticket.summary.amount') }}
+
+
+
+
+ {{ props.row.quantity }}
+ {{ props.row.description }}
+ {{ toCurrency(props.row.price) }}
+ {{ props.row.taxClass.description }}
+ {{ toCurrency(props.row.quantity * props.row.price) }}
+
+
+
+
+
+
+
+
+
+
+ {{ t('ticket.summary.request') }}
+
+
+
+
+
+ {{ t('ticket.summary.description') }}
+ {{ t('ticket.summary.created') }}
+ {{ t('ticket.summary.requester') }}
+ {{ t('ticket.summary.atender') }}
+ {{ t('ticket.summary.quantity') }}
+ {{ t('ticket.summary.price') }}
+ {{ t('ticket.summary.item') }}
+ Ok
+
+
+
+
+ {{ props.row.description }}
+ {{ toDate(props.row.created) }}
+ {{ props.row.requester.user.name }}
+ {{ props.row.atender.user.name }}
+ {{ props.row.quantity }}
+ {{ toCurrency(props.row.price) }}
+ -
+ {{ props.row.sale.itemFk }}
+
+
+
+
+
+
+
+