{% extends 'base.html.twig' %}
{% set titleName = "Live Details " %}
{% block title %} POWER DATA | Live : {{ batch.numberOfLot }} {% endblock %}
{% block page %} {{ batch.numberOfLot }} {% endblock %}
{% block breadcrumb %} {% if titleName != "Home" %} {{ titleName }} / {{ batch.numberOfLot }} {% endif %} {% endblock %}
{% block css %}
{% if batch.status > 1 %}
{% endif %}
{% endblock %}
{% block content %}
Date: {{ batch.createdAt|date }}
{% set index = 1 %}
{% for order in batch.liveLines %}
Num
FullName
Phone
Shipping
Created At
Canal
Action
{% set index = index + 1 %}
{% endfor %}
{{ index }}
{{ order.fullName }}
{{ order.phone }}
{{ order.shippingPrice }}
{{ order.createdAt|date("d/m/Y H:i") }}
{{ order.canal.name is defined ? order.canal.name :'' }}
{% if (is_granted('ROLE_ADMIN') or is_granted('ROLE_LIVE_MANAGER') ) and (batch.status == 1 or batch.status == 2) and order.status.category < 4 %}
{% endif %}
{% set index = 1 %}
{% for order in batch.liveLines %}
Num
Full Name
Phone
Shipping
Created At
Canal
Action
{% set index = index + 1 %}
{% endfor %}
{{ index }}
{{ order.fullName }}
{{ order.phone }}
{{ order.shippingPrice }}
{{ order.createdAt|date("d/m/Y H:i") }}
{{ order.canal.name is defined ? order.canal.name :'' }}
{% if (is_granted('ROLE_ADMIN') or is_granted('ROLE_LIVE_MANAGER') ) and (batch.status == 1) %}
{% endif %}
Num
Full Name
Phone
Shipping
Created At
Canal
Action