{% if firstCountingLines is not null and firstCountingLines|length > 0 %}
{% for line in firstCountingLines %}
{{ line.counting }} |
{{ line.emplacement }} |
{{ line.qty }} |
{{ line.new == 1 ? 'True' : 'False' }} |
{{ line.createdBy.firstname ~ ' '~ line.createdBy.lastname }} |
{{ line.createdAt|date("d/m/Y") }} |
{% endfor %}
{% if firstResult is not null and firstResult|length > 0 %}
=> |
RESULT |
Valid : {{ firstResult.valid? 'True' : 'False'}} |
Problem : {{ firstResult.problem}} |
|
|
{% endif %}
| | | | | |
{% endif %}
{% if secondCountingLines is not null and secondCountingLines|length > 0 %}
{% for line in secondCountingLines %}
{{ line.counting }} |
{{ line.emplacement }} |
{{ line.qty }} |
{{ line.new == 1 ? 'True' : 'False' }} |
{{ line.createdBy.firstname ~ ' '~ line.createdBy.lastname }} |
{{ line.createdAt|date("d/m/Y") }} |
{% endfor %}
{% if secondResult is not null and secondResult|length > 0 %}
=> |
RESULT |
Valid : {{ secondResult.valid? 'True' : 'False'}} |
Problem : {{ secondResult.problem}} |
|
|
{% endif %}
| | | | | |
{% endif %}
{% if thirdCountingLines is not null and thirdCountingLines|length > 0 %}
{% for line in thirdCountingLines %}
{{ line.counting }} |
{{ line.emplacement }} |
{{ line.qty }} |
{{ line.new == 1 ? 'True' : 'False' }} |
{{ line.createdBy.firstname ~ ' '~ line.createdBy.lastname }} |
{{ line.createdAt|date("d/m/Y") }} |
{% endfor %}
{% if thirdResult is not null and thirdResult|length > 0 %}
=> |
RESULT |
Valid : {{ thirdResult.valid? 'True' : 'False'}} |
Problem : {{ thirdResult.problem}} |
|
|
{% endif %}
| | | | | |
{% endif %}