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

79 lines
4.4 KiB
Text

<%@ taglib uri="/WEB-INF/acxent.tld" prefix="acx" %>
<%@ page language="java" import="it.acxent.jsp.*" %>
<jsp:useBean id="bean" class="it.acxent.art.Articolo" type="it.acxent.art.Articolo" scope="request" >
</jsp:useBean>
<jsp:useBean id="lang" class="java.lang.String" type="java.lang.String" scope="session" >
</jsp:useBean>
<jsp:useBean id="mag_fisico" class="it.acxent.anag.MagFisico" type="it.acxent.anag.MagFisico" scope="request" >
</jsp:useBean>
<jsp:useBean id="beanAV" class="it.acxent.art.ArticoloVariante" type="it.acxent.art.ArticoloVariante" scope="request" >
</jsp:useBean>
<jsp:useBean id="list" scope="request" class="it.acxent.util.Vectumerator" type="it.acxent.util.Vectumerator">
</jsp:useBean>
<jsp:useBean id="productInfo" class="java.lang.String" type="java.lang.String" scope="session" >
</jsp:useBean>
<jsp:useBean id="msg" class="java.lang.String" type="java.lang.String" scope="request" >
</jsp:useBean>
<jsp:useBean id="logon" class="java.lang.String" type="java.lang.String" scope="request" >
</jsp:useBean>
<jsp:useBean id="grantMsg" class="java.lang.String" type="java.lang.String" scope="request" >
</jsp:useBean>
<jsp:useBean id="nf" scope="request" type="java.text.NumberFormat" >
</jsp:useBean>
<jsp:useBean id="df" class="it.acxent.util.SimpleDateFormat" scope="request" type="it.acxent.util.SimpleDateFormat" >
</jsp:useBean>
<!--<script language="JavaScript" src="_js/acxent-articolo.js">
</script>
<acx:if_logon_ok trueifnotsecure="true"> <!--
<script language="JavaScript">alert("inizio");
</script>
-->
<section class="content">
<div class="row">
<div col="lg-12">
<acx:if wherecondition="<%=beanAV.getId_articoloVariante()>0%>"> <strong>Dettaglio Articolo Variante <%= beanAV.getDescrizioneCompleta() %></strong> <br>
Quantit&agrave; totale in magazzino: <strong><%=beanAV.getQuantitaMagazzinoMovimentoHtml()%></strong> </acx:if>
<acx:else> <strong>Dettaglio Articolo <%= bean.getDescrizioneCompleta() %></strong> <br>
Quantit&agrave; totale in magazzino: <strong><%=bean.getQuantitaMagazzinoMovimentoHtml()%></strong> </acx:else>
</div>
</div>
<div class="row">
<div col="lg-12">
<table class="table table-bordered table-hover table-striped dataTable table-condensed">
<tr>
<acx:if wherecondition="<%= bean.getTipo().getFlgUsaVarianti()==1 %>">
<th align="left">Variante </th>
<th align="left" >Codice</th>
</acx:if>
<acx:if wherecondition="<%= bean.getTipo().getFlgUsaTagliaEffettivo()==2 %>">
<th align="left" >Taglia</th>
</acx:if>
<th align="left" >Disp.</th>
<%=mag_fisico.getHtmlTableHeaderInterni()%>
</tr>
<acx:whilevec rowbeanclass="it.acxent.contab.RigaDocumento" vectumerator="listaArticoliVarianteMovimentoRD">
<tr>
<acx:if wherecondition="<%= bean.getTipo().getFlgUsaVarianti()==1 %>">
<td align="left" ><acx:if wherecondition="<%=rowBean.getArticoloVariante().getFlgNascondi()==1%>"> <i class="fa fa-ban" title="Nascosto"></i> </acx:if>
<acx:if wherecondition="<%=rowBean.getArticoloVariante().getId_vetrina()>0%>"> <i class="fa fa-picture-o" title="Vetrina <%=rowBean.getArticoloVariante().getVetrina().getDescrizione()%>"></i> </acx:if>
<%= rowBean.getArticoloVariante().getDescrizione(lang) %></td>
<td align="left" class="testoPiccolissimo"><%= rowBean.getArticoloVariante().getCodiceVariante() %>
<acx:if wherecondition='<%=!rowBean.getArticoloVariante().getCodiciAlternativiV().equals("")%>'><%= rowBean.getArticoloVariante().getCodiciAlternativiV() %></acx:if></td>
</acx:if>
<acx:if wherecondition="<%= bean.getTipo().getFlgUsaTagliaEffettivo()==2 %>">
<td class="testoPiccolissimo" align="left"><%= rowBean.getArticoloTaglia().getTaglia().getDescrizione() %></td>
</acx:if>
<td align="left" ><acx:if wherecondition="<%= bean.getTipo().getFlgUsaTagliaEffettivo()==2 %>"><%= rowBean.getArticoloTaglia().getQuantitaMagazzinoMovimentoHtml()%></acx:if>
<acx:else><%= rowBean.getArticoloVariante().getQuantitaMagazzinoMovimentoHtml()%></acx:else></td>
<%=rowBean.getArticoloVariante().getHtmlTableDispoMagInterni()%>
</tr>
</acx:whilevec>
<tr>
<td bordercolor="#FFCCFF" colspan="3"></td>
</tr>
</table>
</div>
</div>
</section>
</acx:if_logon_ok>