{% extends "::base.html.twig" %} {% form_theme form inline_form_theme %} {% block title 'List Of Filed Accountabilities' %} {% block newStyles %} {% endblock %} {% block content %} {{ include(workplan_links, {'show_search': false}, with_context = false) }} {{ form(form) }}
List Of Filed Accs
{% for activity in pagination %} {% set id = activity.getId() %} {% if tactic is not null %} {% set selid = tactic.id %} {% else %} {% set selid = 0 %} {% endif %} {{ activity.getSerial() }}
{{ activity.getTitle() }}
{{ activity.getAccStatusLabel() }} {# {{ currency ~ ' ' ~ receipt.getTotalAccFor()|number_format(2) }}
#}
{% else %} There are no activities in this queue currently. {% endfor %}
{{ knp_pagination_render(pagination) }}
Acc Details
{% if tactic is not null %} {% set id = tactic.id %} {% for doc in tactic.documents if doc.isAReceipt() %} {% set filepath = app.request.schemeAndHttpHost ~ '/uploads/' ~ doc.path %} {% set did = doc.id %}
{{ doc.title }}
View Download {# #}
Status{{ doc.getStatusLabel() }}
Total Amount{{ currency ~ ' ' ~ doc.getTotalAccFor()|number_format(2) }}
Uploaded On{{ doc.uploadedOn|date(date_format) }}
Uploaded By{{ doc.uploader }}
{% for line in doc.reqnLines %} {% endfor %}
Document Requisition Lines
ItemAmount ({{ currency }})
{{ line.requisitionLine.getItemDetails() }} {{ line.amount|number_format(2) }}
{% endfor %} {% else %} Please click on an activity in the left panel to view its details here. {% endif %}
{% endblock %} {% block javascripts %} {{ form_javascript(form) }} {% endblock %}