{% extends 'base.html.twig' %} {% block title %}{{ poolOrder.confirmationNumber }} | View Pool Order | {{ parent() }}{% endblock %} {% block body %}

Pool Orders > View: {{ poolOrder.confirmationNumber }}



{{ include('factory_admin/poolOrder/_pool_order_info_table.html.twig') }}
{% if poolOrder.pool %} Unlink This Pool Order From Pool
{% set pool = poolOrder.pool %} {{ include('factory_admin/pool/_pool_info_table.html.twig') }} {% elseif poolOrder.status != 'Canceled' %}
Pools available to be linked with this Pool Order.
{% for pool in availablePools %} {# @var pool \App\Entity\Pool #} {% endfor %}
Pool Location Production Date
{{ pool.serialNumber }} {{ pool.location ? pool.location }} {{ pool.productionDate|date('m/d/Y') }} Link This Pool To Current Order
{% endif %} {% endblock %}