Regalamiunsorriso/www/admin/anag/_inc_clifor_magFisico.jsp
2026-04-07 18:02:17 +02:00

40 lines
1.7 KiB
Text

<!-- _inc_clifor_magFisico.jsp -->
<%@ taglib uri="/WEB-INF/acxent.tld" prefix="acx" %>
<%@ page language="java" import="it.acxent.jsp.*" %>
<%-- DICHIARAZIONE BEAN --%>
<jsp:useBean id="nf" scope="request" type="java.text.NumberFormat" >
</jsp:useBean>
<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 --%>
<acx:if wherecondition="<%=bean.getId_clifor()==0%>">
<h1>Per specificare il listino, prima devi salvarlo!</h1>
</acx:if>
<acx:else>
<div class="row">
<div class="col-lg-12">
<label for="txtRicerca"></label>
<input name="id_magFisico" type="hidden" id="id_magFisico" readonly>
<p><strong>Magazzini <%=bean.getTipo().toUpperCase()%></strong></p>
</div>
</div>
<div class="row"></div>
<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">
<tr>
<th>&nbsp;</th>
<th>Magazzino</th>
</tr>
<acx:whilevec rowbeanclass="it.acxent.anag.MagFisico" vectumerator="listaMagFisico">
<tr>
<td class="comandi text-center"><div class="inline text-center hidden-print"> <a href="javascript:modMagFisico('<%=rowBean.getId_magFisico()%>');"><i class="fa fa-edit fa-2x" title="<acx:lang>Modifica Record</acx:lang>"></i></a> </div></td>
<td data-title='Magazzino'><%=(rowBean.getDescrizioneCompleta()) %></td>
</tr>
</acx:whilevec>
</table>
</div>
</div>
</acx:else>