+
+
+
+
+ {{ 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') }}
+ {{ dashIfEmpty(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.saleLines') }}
+
+
+
+
+
+ {{ t('ticket.summary.item') }}
+ {{ t('ticket.summary.visible') }}
+ {{ t('ticket.summary.available') }}
+ {{ t('ticket.summary.quantity') }}
+ {{ t('ticket.summary.description') }}
+ {{ t('ticket.summary.price') }}
+ {{ t('ticket.summary.discount') }}
+ {{ t('ticket.summary.amount') }}
+ {{ t('ticket.summary.packing') }}
+
+
+
+
+
+
+ {{ t('ticket.summary.claim') }}:
+ {{ props.row.claim.claimFk }}
+
+
+ {{ t('ticket.summary.claim') }}:
+ {{ props.row.claimBeginning.claimFk }}
+
+
+ {{ t('ticket.summary.visible') }}: {{ props.row.visible }}
+
+
+ {{ t('ticket.summary.reserved') }}
+
+
+ {{ t('ticket.summary.itemShortage') }}
+
+
+ {{ t('ticket.summary.hasComponentLack') }}
+
+
+ {{ zeroFill(props.row.itemFk, 6) }}
+ {{ props.row.visible }}
+ {{ props.row.available }}
+ {{ props.row.quantity }}
+
+ {{ props.row.concept }}
+
+
+ {{ props.row.price }}
+ {{ props.row.discount }} %
+ {{
+ toCurrency(
+ props.row.quantity *
+ props.row.price *
+ ((100 - props.row.discount) / 100)
+ )
+ }}
+
+ {{ dashIfEmpty(props.row.item.itemPackingTypeFk) }}
+
+
+
+
+
+
+
+
+ {{ 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) }}
+ -
+ {{
+ zeroFill(props.row.sale.itemFk, 6)
+ }}
+
+
+
+
+
+
+