<%@page import="pt.ist.bennu.core.domain.util.Money"%> <%@page import="pt.ist.expenditureTrackingSystem.domain.acquisitions.CPVReference"%> <%@page import="java.util.Map.Entry"%> <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> <%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %> <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %> <%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %> <%@ taglib uri="http://fenix-ashes.ist.utl.pt/fenix-renderers" prefix="fr" %>

:     :     :

: <%= supplier.getSupplierLimit().toFormatString() %>     :     : : :

| | | |



<% Money total = Money.ZERO; for (final Entry entry : supplier.getAllocationsByCPVReference().entrySet()) { final CPVReference cpvReference = entry.getKey(); final Money value = entry.getValue(); total = total.add(value); %> <% } %>
<%= cpvReference == null ? "" : cpvReference.getCode() %> <%= cpvReference == null ? "" : cpvReference.getDescription() %> <%= value.toFormatString() %>
<%= total.toFormatString() %>