{% extends '/layout/customer_layout.html.twig' %} {% import "macro/listing.html.twig" as listingMacro %} {% set labels = class_constants('App\\Label\\InventoryLabel') %} {% block title %}Inventory{% endblock %} {% block content %}
{{ listingMacro.filtersBtn( path('partnerarea_inventory_filters', app.request.query.all) ) }}
{% include('components/page_size_choice.html.twig') %}
{% for inventory in inventories %} {% else %} {% endfor %}
# {{ listingMacro.sortItem(sort, 'serial_number', labels.SERIAL_NUMBER) }} {{ listingMacro.sortItem(sort, 'so_number', labels.SO_NUMBER) }} {{ listingMacro.sortItem(sort, 'dispatch_date', labels.DISPATCH_DATE) }} {{ listingMacro.sortItem(sort, 'fom', labels.FOM) }} {{ listingMacro.sortItem(sort, 'phosphor_type.value', labels.PHOSPHOR_TYPE) }} {{ listingMacro.sortItem(sort, 'auto_gating', labels.AUTO_GATING) }} {{ listingMacro.sortItem(sort, 'emi', labels.EMI) }} {{ listingMacro.sortItem(sort, 'maxOutputBrightness', labels.MAX_OUTPUT_BRIGHTNESS) }} {{ listingMacro.sortItem(sort, 'luminanceGain', labels.LUMINANCE_GAIN) }} {{ listingMacro.sortItem(sort, 'centerResolution', labels.CENTER_RESOLUTION) }} {{ listingMacro.sortItem(sort, 'ebi', labels.EBI) }} {{ listingMacro.sortItem(sort, 'image_alignment', labels.IMAGE_ALIGNMENT) }} {{ listingMacro.sortItem(sort, 'mechanical_inspection', labels.MECHANICAL_INSPECTION) }} {{ listingMacro.sortItem(sort, 'snr', labels.SNR) }} {{ listingMacro.sortItem(sort, 'operational_life', labels.OPERATIONAL_LIFE) }}
{{ pagination.rowIndex(loop.index) }} {{ inventory.serialNumber }} {{ inventory.soNumber|default('-') }} {{ inventory.dispatchDate ? inventory.dispatchDate|date('d.m.Y') : '-' }} {{ inventory.fom ?? '-' }} {{ inventory.phosphorType ?? '-' }} {{ inventory.autoGating ? 'YES' : 'NO' }} {{ inventory.emi ? 'YES' : 'NO' }} {% if inventory.maxOutputBrightness is not null %}{{ inventory.maxOutputBrightness }}{{ labels.MAX_OUTPUT_BRIGHTNESS_UNIT|raw }}{% else %}-{% endif %} {% if inventory.luminanceGain is not null %}{{ inventory.luminanceGain }}{{ labels.LUMINANCE_GAIN_UNIT|raw }}{% else %}-{% endif %} {% if inventory.centerResolution is not null %}{{ inventory.centerResolution }}{{ labels.CENTER_RESOLUTION_UNIT|raw }}{% else %}-{% endif %} {% if inventory.ebi is not null %}{{ inventory.ebi ~ labels.EBI_UNIT }}{% else %}-{% endif %} {% if inventory.imageAlignment is not null %}{{ inventory.imageAlignment.label }}{% else %}-{% endif %} {% if inventory.mechanicalInspection is not null %}{{ inventory.mechanicalInspection.label }}{% else %}-{% endif %} {{ inventory.snr ?? '-' }} {{ operationalLife }}
no records found
{{ listingMacro.filtersModal( path('partnerarea_inventory_index') ) }} {% endblock %}