First commit
This commit is contained in:
parent
cf97b64877
commit
cc69770608
1468 changed files with 265316 additions and 128 deletions
69
www/admin/art/_inc_articoloConfezione_tessuti.jsp
Normal file
69
www/admin/art/_inc_articoloConfezione_tessuti.jsp
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
<%@ 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.art.Articolo" type="it.acxent.art.Articolo" scope="request" >
|
||||
</jsp:useBean>
|
||||
<jsp:useBean id="beanATT" class="it.acxent.tex.anag.ArticoloArticoloTessuto" type="it.acxent.tex.anag.ArticoloArticoloTessuto" 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_articolo()==0%>">
|
||||
<h1>
|
||||
<acx:lang>Per inserire devi prima salvare il record</acx:lang>
|
||||
</h1>
|
||||
</acx:if>
|
||||
<acx:else>
|
||||
<input name="id_articoloArticoloTessuto" type="hidden" id="id_articoloArticoloTessuto" >
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h2><acx:lang>Inserisci i tessuti necessari per la creazione di 1 solo capo</acx:lang></h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-3 col-xs-6">
|
||||
<label>Scegli tessuto:</label>
|
||||
<br>
|
||||
<acx:inputajax bean="beanATT" boundcolumn="id_articoloTessuto" resultboundcolumn="id_articoloTessuto" action='/admin/tessuto/ArticoloTessuto.abl?flgTipoTessutoM=-2&searchTxt='
|
||||
nchar="0" nrow="40" returndata="" nextacion="mtATT"
|
||||
usesubmit="false" usemono="false" javascriptmodify="" javascriptnew="">
|
||||
<div class="input-group input-group-sm">
|
||||
<input name="descrizioneGreggio" type="text" class="form-control input-sm ajSearchText" id="descrizioneGreggio" value="" />
|
||||
</div>
|
||||
</acx:inputajax>
|
||||
</div>
|
||||
<div class="col-lg-2 col-xs-6">
|
||||
<label for="txtRicerca">Mt:</label>
|
||||
<br>
|
||||
<input type="text" class="form-control input-sm" id="mtATT" name="mtATT" maxlength="10" value="<%= nf.format(beanATT.getMtATT()) %>" nextFocus="addTessutoConfezione()">
|
||||
</div>
|
||||
<div class="col-lg-1"> <a class="btn btn-primary btn-sm btn-associative pull-right" href="javascript:addTessutoConfezione()">Inserisci </a> </div>
|
||||
</div>
|
||||
<div class="row" >
|
||||
<div class="col-xs-12">
|
||||
<div class="box-body table-responsive mobileSwitch" name="lista" id='<%=CR.getFlgMobileView()==1?"no-more-tables":""%>'>
|
||||
<table class="table table-bordered table-hover table-striped dataTable table-condensed">
|
||||
<thead>
|
||||
<tr>
|
||||
<th> </th>
|
||||
<th>Elenco tessuti </th>
|
||||
<th>Mt.</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<acx:whilevec rowbeanclass="it.acxent.tex.anag.ArticoloArticoloTessuto" vectumerator="listaArticoliTessuto">
|
||||
<tr>
|
||||
<td class="text-center comandi" ><div class="inline text-center hidden-print"> <a href="javascript:delTessutoConfezione(<%=rowBean.getId_articoloArticoloTessuto()%>,'<%= rowBean.getLastUpdTmstString() %>');"><i class="fa fa-trash-o fa-2x" title="<acx:lang>Cancella Record</acx:lang>"></i></a> </div></td>
|
||||
<td data-title="Tessuto Acc."><%=rowBean.getArticoloTessuto().getDescrizioneCompleta()%></td>
|
||||
<td data-title="Tessuto Acc."><%=nf.format(rowBean.getMtATT())%></td>
|
||||
</tr>
|
||||
</acx:whilevec>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</acx:else>
|
||||
Loading…
Add table
Add a link
Reference in a new issue