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

49 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="lang" class="java.lang.String" type="java.lang.String" scope="session" >
</jsp:useBean>
<jsp:useBean id="nf" scope="request" type="java.text.NumberFormat" >
</jsp:useBean>
<jsp:useBean id="bean" class="it.acxent.tex.anag.ArticoloTessuto" type="it.acxent.tex.anag.ArticoloTessuto" 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 --%>
<input type="hidden" class="form-control input-sm" name="id_articoloTessutoColore" id="id_articoloTessutoColore" maxlength="2">
<div class="row" id="no-more-tables">
<div class="col-lg-3 col-xs-12" >
<label><acx:lang>Colore da aggiungere</acx:lang>:</label>
<acx:inputajax bean="null" boundcolumn="id_colore" action='<%="/admin/artConfig/Colore.abl?&searchTxt="%>'
nchar="0" returndata="id_colore,descrizioneColore" nextacion="addColore()"
usesubmit="false" usemono="false" javascriptmodify="" javascriptnew="nuovoColoreTessuto()" >
<div class="input-group input-group-sm">
<input name="descrizioneColore" type="text" class="form-control input-sm ajSearchText" id="descrizioneColore" value="" />
</div>
</acx:inputajax>
</div>
<div class="col-lg-2 col-xs-12" > <br>
<a href="javascript:addColore()" class="btn btn-primary pull-right"><acx:lang>Inserisci</acx:lang></a> </div>
</div>
<div class="row">
<div class="box-body table-responsive">
<table class="table table-bordered table-hover table-striped dataTable table-condensed">
<thead>
<tr>
<th>&nbsp;</th>
<th><acx:lang>Colore</acx:lang></th>
<th>Dispo</th>
</tr>
</thead>
<acx:whilevec rowbeanclass="it.acxent.tex.anag.ArticoloTessutoColore" vectumerator="listaTessutoColori">
<tr>
<td class="text-center comandi" ><div class="inline text-center hidden-print"> <a href="javascript:delColore(<%=rowBean.getId_articoloTessutoColore()%>,'<%= rowBean.getLastUpdTmstString() %>');"><i class="fa fa-trash-o fa-2x" title="<acx:lang>Cancella Record</acx:lang>"></i></a></div></td>
<td data-title="<acx:lang>Colore</acx:lang>"><%= rowBean.getColore().getDescrizioneCompleta(lang) %></td>
<td data-title="<acx:lang>Colore</acx:lang>"><%= rowBean.getQuantitaMagazzinoMovimentoHtml() %></td>
</tr>
</acx:whilevec>
</table>
</div>
</div>