{% extends 'custom_easyadmin_layout.html.twig' %} {% block main %}
| {{ "invoiceProduct.product" | trans }} | {{ "invoiceProduct.barcode" | trans }} | {{ "invoiceProduct.ordered_quantity" | trans }} | {{ "invoiceProduct.scanned_quantity" | trans }} | {{ "invoiceProduct.date_scanned" | trans }} |
|---|---|---|---|---|
| {{ invoiceProduct.getProduct().getBrand() }} {{ invoiceProduct.getProduct().getTitle() }} | {{ invoiceProduct.getProduct().allBarcodesAsString() }} | {{ invoiceProduct.getOrderedQuantity() }} | {{ invoiceProduct.getScannedQuantity() }} | {% if (invoiceProduct.scanDate is not null) %} {{ invoiceProduct.getScanDate().format('Y-m-d H:i:s') }} {% endif %} |
| {{ "invoice_packing_component.packing_component" | trans }} | {{ "invoice_packing_component.barcode" | trans }} | {{ "invoice_packing_component.used_quantity" | trans }} |
|---|---|---|
| {{ invoicePackingComponent.getPackingComponent().getName() }} | {{ invoicePackingComponent.getPackingComponent().getBarcode() }} | {{ invoicePackingComponent.getUsedQuantity() }} |
| {{ "invoice_addon.name" | trans }} | {{ "invoice_addon.barcode" | trans }} | |
|---|---|---|
| {{ invoiceAddon.getAddon().getName() }} | {{ invoiceAddon.getBarcode() }} | {% if invoice.getInvoiceCardAddon() and invoice.getInvoiceCardAddon().getAddon().getCode() == invoiceAddon.getAddon().getCode() %} {{ 'serialize' | trans }} {% endif %} |