54 lines
2.6 KiB
Text
54 lines
2.6 KiB
Text
<%@ 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.art.Articolo" type="it.acxent.art.Articolo" scope="request" >
|
|
</jsp:useBean>
|
|
<%-- FINE DICHIARAZIONE BEAN --%>
|
|
|
|
<div class="row">
|
|
<div class="box-body scroll-300 col-lg-12" id="no-more-tables">
|
|
<table class="table table-striped" style="border: 1px solid #ededed;">
|
|
<tr>
|
|
<th>Articolo</th>
|
|
<th>Seriale<a name="caratt"> </a></th>
|
|
<acx:ifparm codice="TAGLIE" value="1" >
|
|
<th>Taglia</th>
|
|
</acx:ifparm>
|
|
<th>Costo Medio</th>
|
|
<th>Magazz.</th>
|
|
<acx:if wherecondition="<%= bean.getTipo().getTipologiaArticolo().getFlgUdm()==1%>">
|
|
<th>Nr.</th>
|
|
</acx:if>
|
|
<acx:if wherecondition="<%= bean.getTipo().getTipologiaArticolo().getFlgUdm()==2%>">
|
|
<th>Kg.</th>
|
|
</acx:if>
|
|
<acx:if wherecondition="<%= bean.getTipo().getTipologiaArticolo().getFlgUdm()==3%>">
|
|
<th>Mt.</th>
|
|
</acx:if>
|
|
</tr>
|
|
<acx:whilevec rowbeanclass="it.acxent.contab.Movimento" vectumerator="listaDisponibilita">
|
|
<tr>
|
|
<td align="left" width="36%">${listaDisponibilita.getIndex()} - <%= rowBean.getArticolo().getDescrizioneCompleta() %></td>
|
|
<td align="left" width="15%"><%= rowBean.getSeriale() %></td>
|
|
<acx:ifparm codice="TAGLIE" value="1" >
|
|
<td align="left" width="15%"><%= rowBean.getArticoloTaglia().getTaglia().getDescrizione() %></td>
|
|
</acx:ifparm>
|
|
<td align="left" width="15%">--</td>
|
|
<td align="left" width="15%"><%= rowBean.getMagFisico().getDescrizione() %></td>
|
|
<acx:if wherecondition="<%= bean.getTipo().getTipologiaArticolo().getFlgUdm()==1%>">
|
|
<td align="right" width="15%" <%= rowBean.getNr()<0?"class='red'":""%>><%= nf.format(rowBean.getNr()) %></td>
|
|
</acx:if>
|
|
<acx:if wherecondition="<%= bean.getTipo().getTipologiaArticolo().getFlgUdm()==2%>">
|
|
<td align="right" width="15%" <%= rowBean.getKg()<0?"class='red'":""%>><%= nf.format(rowBean.getKg()) %></td>
|
|
</acx:if>
|
|
<acx:if wherecondition="<%= bean.getTipo().getTipologiaArticolo().getFlgUdm()==3%>">
|
|
<td align="right" width="15%" <%= rowBean.getMt()<0?"class='red'":""%>><%= nf.format(rowBean.getMt()) %></td>
|
|
</acx:if>
|
|
</tr>
|
|
</acx:whilevec>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|