{{ reqnLine.getItemDetails() }}
{% if reqnLine.vendor is not null %}
{{ reqnLine.vendor.name }}
{% endif %}
|
{{ reqnLine.getAmount()|number_format(2) }} |
{{ reqnLine.getTaxSpecs() }} |
{{ reqnLine.getTotalBudget()|number_format(2) }} |
{{ reqnLine.getAmountPaid()|number_format(2) }} |
{% if del == 1 %}
{% if reqnLine.numOfTrails() > 0 %}
Trail
{{ include('AlsuiteProjectBundle:RequisitionLine:trails.html.twig',
{'id': id, 'reqnLine': reqnLine, 'modal': 'rlineTrail'})
}}
{% endif %}
{% if level is null %}
{% set route = path('reqn_del', {'line': id}) %}
{% else %}
{% set route = path('reqn_del', {'line': id, 'level': level.getId()}) %}
{% endif %}
Delete
{{ include('AlsuiteProjectBundle:RequisitionLine:del.html.twig',
{'id': id, 'action': 'Delete', 'object': 'Requisition Line', 'modal': 'delReqnLine',
'route': route})
}}
|
{% endif %}
{# if mng_payouts is defined and mng_payouts == 1 and
reqnLine.getAmountPaid() < reqnLine.getAmountThatCanBeReleased() and
not tactic.isDone() %}
{% if reqnLine.parent is null %}
Add Payment
{% endif %}
|
{% endif #}
{% else %}