70 lines
3.7 KiB
Text
70 lines
3.7 KiB
Text
<%@ taglib uri="/WEB-INF/acxent.tld" prefix="acx" %>
|
|
<%@ page language="java" import="it.acxent.jsp.*" %>
|
|
|
|
<!-- SCRIPT PERSONALIZZATI DELLA PAGINA -->
|
|
|
|
<input name="pageTitle" type="hidden" id="pageTitle" value="Colore">
|
|
<!-- pagine di dettaglio -->
|
|
<jsp:useBean id="lang" class="java.lang.String" type="java.lang.String" scope="session" >
|
|
</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="list" scope="request" class="it.acxent.util.Vectumerator" type="it.acxent.util.Vectumerator">
|
|
</jsp:useBean>
|
|
<jsp:useBean id="df" class="it.acxent.util.SimpleDateFormat" scope="request" type="it.acxent.util.SimpleDateFormat" >
|
|
</jsp:useBean>
|
|
<jsp:useBean id="nf" scope="request" type="java.text.NumberFormat" >
|
|
</jsp:useBean>
|
|
|
|
<!-- Modal content-->
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
<h4 class="modal-title">Tessuto </h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form name="tessutoModal" id="tessutoModal" method="post">
|
|
<input type="hidden" name="actionPage" id="actionPage" value="../tesssuto/ArticoloTessuto.abl">
|
|
<input name="pageType" type="hidden" id="pageType" value="D">
|
|
<input name="lastUpdTmst" id="lastUpdTmst" type="hidden" value="<%= bean.getLastUpdTmstString() %>">
|
|
<input name="currentTab" type="hidden" id="currentTab" value="<%= bean.getCurrentTab() %>">
|
|
<input name="currentFocus" type="hidden" id="currentFocus" value="<%= bean.getCurrentFocus() %>">
|
|
<input type="hidden" id="id_articoloTessuto" name="id_articoloTessuto" maxlength="" value="<%=bean.getId_articoloTessuto()%>">
|
|
<input type="hidden" id="descrizioneColore" name="descrizioneColore" maxlength="" value="<%=bean.getDescrizioneCompleta(lang)%>">
|
|
|
|
<input type="hidden" id="dummy" name="dummy" maxlength="" >
|
|
|
|
<div class="row">
|
|
<!-- <div class="col-lg-4 col-xs-6">
|
|
<label>Tipologia:</label>
|
|
<br>
|
|
<select class="form-control input-sm select2" style="width: 100%;" name="flgTipoAT" id="flgTipoAT" onChange="refresh()">
|
|
<acx:optionflg boundcolumn="flgTipoAT" valuelist="0,1"> </acx:optionflg>
|
|
</select>
|
|
</div>-->
|
|
<div class="col-lg-4 col-xs-6">
|
|
<label for="txtRicerca">Codice:</label>
|
|
<br>
|
|
<input name="codiceAT" type="text" class="form-control input-sm" id="codiceAT" value="<%= bean.getCodiceAT() %>" maxlength="30" >
|
|
</div>
|
|
<div class="col-lg-4 col-xs-6">
|
|
<label for="txtRicerca">Descrizione:</label>
|
|
<br>
|
|
<input name="descrizione" type="text" class="form-control input-sm" id="descrizione" value="<%= bean.getDescrizione() %>" maxlength="30" defaultFocus="focus">
|
|
</div>
|
|
<div class="col-lg-3">
|
|
<label>Prezzo base:</label>
|
|
<br>
|
|
<input name="prezzoBase" type="text" class="form-control input-sm numberinput" id="prezzoBase" value="<%= nf.format(bean.getPrezzoBase()) %>" <%= Ab.jsCrS() %>>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer"> <a class="btn btn-default" href="javascript:saveTessuto()"> <i class="fa fa-floppy-o" title="Salva Record"></i> Salva</a>
|
|
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-sign-out" aria-hidden="true"></i> Chiudi</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="../tessuto/_js/tex-articoloTessutoE.js"></script>
|