39 lines
1.9 KiB
Text
39 lines
1.9 KiB
Text
<!-- _inc_clifor_con.jsp -->
|
|
<%@ taglib uri="/WEB-INF/acxent.tld" prefix="acx" %>
|
|
<%@ page language="java" import="it.acxent.jsp.*" %>
|
|
<%-- DICHIARAZIONE BEAN --%>
|
|
<jsp:useBean id="bean" class="it.acxent.anag.Clifor" type="it.acxent.anag.Clifor" scope="request" >
|
|
</jsp:useBean>
|
|
<jsp:useBean id="df" class="it.acxent.util.SimpleDateFormat" scope="request" type="it.acxent.util.SimpleDateFormat" >
|
|
</jsp:useBean>
|
|
<%-- FINE DICHIARAZIONE BEAN --%>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12 text-center"> <a class="btn btn-success" href="javascript:nuovoContratto();">NUOVO CONTRATTO</a> </div>
|
|
</div>
|
|
<%-- RIGA 1 --%>
|
|
<div class="row">
|
|
<div class="box-body scroll-300 col-lg-12" id="no-more-tables">
|
|
<table class="table table-bordered table-hover table-striped dataTable table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th> </th>
|
|
<th>Tipo contratto</th>
|
|
<th>Data Inizio</th>
|
|
<th>Data Scad.</th>
|
|
<th>Tel. associati</th>
|
|
</tr>
|
|
</thead>
|
|
<acx:whilevec rowbeanclass="it.acxent.anag.Contratto" vectumerator="listaContratti">
|
|
<tr>
|
|
<td class="comandi" align="center"><div class="inline text-center hidden-print"> <a href="Contratto.abl?cmd=md&id_contratto=<%=rowBean.getId_contratto()%>"> <i class="fa fa-pencil-square-o" aria-hidden="true"></i> </a> </div></td>
|
|
<td data-title="Tipo contratto"><acx:if wherecondition="<%=rowBean.getFlgStato()==1%>"> <i class="fa fa-check" aria-hidden="true" title="Attivo"></i> </acx:if>
|
|
<%= rowBean.getTipoContratto().getDescrizione() %></td>
|
|
<td data-title="Data Inizio"><%= df.format(rowBean.getDataInizioContratto()) %></td>
|
|
<td data-title="Data Scad."><%= df.format(rowBean.getDataScadenzaContratto()) %></td>
|
|
<td data-title="Tel. associati"><%= rowBean.getTelefoniAssociati() %></td>
|
|
</tr>
|
|
</acx:whilevec>
|
|
</table>
|
|
</div>
|
|
</div>
|