Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.69 KB | None | 0 0
  1. <p:dataTable
  2. id="rgmStoricoContrattiSogettoCapogruppoDataTable"
  3. value="#{storicoSoggettoProdottoBean.sogegettoProdottoList}"
  4. var="soggetto"
  5. rendered="#{storicoSoggettoProdottoBean.isNdgMemberOfGroup()}"
  6. styleClass="common_datagrid"
  7. emptyMessage="Nessun valore presente"
  8. sortBy="#{soggetto.denominazione}" >
  9.  
  10. <p:column headerText="Soggetto">
  11. <p:commandLink
  12. value="#{soggetto.denominazione} #{soggetto.ndg} - #{soggetto.ndgCapogruppo}"
  13. actionListener="#{storicoSoggettoProdottoBean.redirectSoggetoProdotto(request.contextPath, soggetto)}"
  14. immediate="true"
  15. process="@this"
  16. style="font-size: 11px !important;" />
  17. </p:column>
  18.  
  19. <p:column headerText="Rating And./Cerved" width="67" style="text-align: center">
  20. <h:outputText value="#{soggetto.rating} / #{soggetto.ratingCerved}" />
  21. </p:column>
  22.  
  23. <p:column headerText="Perfez. storico" width="60" style="text-align: right">
  24. <h:outputText value="#{soggetto.perfezionato}">
  25. <f:convertNumber type="currency" currencySymbol="€"/>
  26. </h:outputText>
  27. </p:column>
  28.  
  29. <p:column headerText="Accord." width="60" style="text-align: right">
  30. <h:outputText value="#{soggetto.accordato}">
  31. <f:convertNumber type="currency" currencySymbol="€"/>
  32. </h:outputText>
  33. </p:column>
  34.  
  35. <p:column headerText="Utilizz." width="60" style="text-align: right">
  36. <h:outputText value="#{soggetto.utilizzato}">
  37. <f:convertNumber type="currency" currencySymbol="€"/>
  38. </h:outputText>
  39. </p:column>
  40.  
  41. <p:column headerText="Sconfino" width="60" style="text-align: right">
  42. <h:outputText value="#{soggetto.sconfino}">
  43. <f:convertNumber type="currency" currencySymbol="€"/>
  44. </h:outputText>
  45. </p:column>
  46.  
  47. <p:column headerText="In proposta" width="60" style="text-align: right">
  48. <h:outputText value="#{soggetto.inProposta}">
  49. <f:convertNumber type="currency" currencySymbol="€"/>
  50. </h:outputText>
  51. </p:column>
  52.  
  53. <p:column headerText="Garanzie bancarie" width="60" style="text-align: right">
  54. <h:outputText value="#{soggetto.garanzieBancarie}">
  55. <f:convertNumber type="currency" currencySymbol="€"/>
  56. </h:outputText>
  57. </p:column>
  58.  
  59. <p:column headerText="Rischio indiretto vs gruppo" width="87" style="text-align: center;">
  60. <h:outputText rendered="#{soggetto.rischioIndirettoVsGruppo == true}" value="SÍ" style="color: green; font-weight: bold;" />
  61. </p:column>
  62.  
  63. <p:column headerText="Rischio indiretto vs terzi" width="60" style="text-align: right">
  64. <h:outputText value="#{soggetto.rischioIndirettoVsTerzi}">
  65. <f:convertNumber type="currency" currencySymbol="€"/>
  66. </h:outputText>
  67. </p:column>
  68.  
  69. <p:column headerText="Rischio pond." width="60" style="text-align: right">
  70. <h:outputText value="#{soggetto.rischioPonderato}">
  71. <f:convertNumber type="currency" currencySymbol="€"/>
  72. </h:outputText>
  73. </p:column>
  74.  
  75. <p:column width="25">
  76. <p:commandButton
  77. action="#{storicoSoggettoProdottoBean.redirectToStoricoPlafond(request.contextPath, soggetto)}"
  78. immediate="true"
  79. process="@this"
  80. icon="fa fa-file-text-o"
  81. styleClass="imageButton"
  82. style="height: 12px;" />
  83. </p:column>
  84.  
  85. <p:summaryRow>
  86. <p:column styleClass="totaleRowColor" style="text-align: right;">
  87. <h:outputText value="Totale:" style="font-weight: bold; text-transform: uppercase;" />
  88. </p:column>
  89.  
  90. <p:column styleClass="totaleRowColor" width="67" />
  91.  
  92. <p:column styleClass="totaleRowColor" style="text-align: right;" width="60">
  93. <h:outputText value="#{storicoSoggettoProdottoBean.perfezionatoSoggettoSum}">
  94. <f:convertNumber type="currency" currencySymbol="€"/>
  95. </h:outputText>
  96. </p:column>
  97.  
  98. <p:column styleClass="totaleRowColor" style="text-align: right;" width="60">
  99. <h:outputText value="#{storicoSoggettoProdottoBean.accordatoSoggettoSum}">
  100. <f:convertNumber type="currency" currencySymbol="€"/>
  101. </h:outputText>
  102. </p:column>
  103.  
  104. <p:column styleClass="totaleRowColor" style="text-align: right;" width="60">
  105. <h:outputText value="#{storicoSoggettoProdottoBean.utilizzatoSoggettoSum}">
  106. <f:convertNumber type="currency" currencySymbol="€"/>
  107. </h:outputText>
  108. </p:column>
  109.  
  110. <p:column styleClass="totaleRowColor" style="text-align: right;" width="60">
  111. <h:outputText value="#{storicoSoggettoProdottoBean.sconfinoSoggettoSum}">
  112. <f:convertNumber type="currency" currencySymbol="€"/>
  113. </h:outputText>
  114. </p:column>
  115.  
  116. <p:column styleClass="totaleRowColor" style="text-align: right;" width="60">
  117. <h:outputText value="#{storicoSoggettoProdottoBean.inPropostaSoggettoSum}">
  118. <f:convertNumber type="currency" currencySymbol="€"/>
  119. </h:outputText>
  120. </p:column>
  121.  
  122. <p:column styleClass="totaleRowColor" style="text-align: right;" width="60">
  123. <h:outputText value="#{storicoSoggettoProdottoBean.garanzieBancarieSoggettoSum}">
  124. <f:convertNumber type="currency" currencySymbol="€"/>
  125. </h:outputText>
  126. </p:column>
  127.  
  128. <p:column styleClass="totaleRowColor" width="87" />
  129.  
  130. <p:column styleClass="totaleRowColor" style="text-align: right;" width="60">
  131. <h:outputText value="#{storicoSoggettoProdottoBean.rischioIndirettoVsTerziSoggettoSum}">
  132. <f:convertNumber type="currency" currencySymbol="€"/>
  133. </h:outputText>
  134. </p:column>
  135.  
  136. <p:column styleClass="totaleRowColor" style="text-align: right;" width="60">
  137. <h:outputText value="#{storicoSoggettoProdottoBean.rischioPonderatoSoggettoSum}">
  138. <f:convertNumber type="currency" currencySymbol="€"/>
  139. </h:outputText>
  140. </p:column>
  141.  
  142. <p:column styleClass="totaleRowColor" width="25" />
  143. </p:summaryRow>
  144.  
  145. <p:dataTable sortBy="#{1}" ...>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement