23 lines
No EOL
850 B
Text
23 lines
No EOL
850 B
Text
<!-- _inc_clifor_note.jsp -->
|
|
<%@ taglib uri="/WEB-INF/acxent.tld" prefix="acx" %>
|
|
<%@ page language="java" import="it.acxent.jsp.*" %>
|
|
|
|
<%-- DICHIARAZIONE BEAN --%>
|
|
<jsp:useBean id="bean" class="it.acxent.anag.Clifor" type="it.acxent.anag.Clifor" scope="request" >
|
|
</jsp:useBean>
|
|
|
|
<%-- FINE DICHIARAZIONE BEAN --%>
|
|
|
|
<%-- RIGA 1 --%>
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<label for="descrizione">Note interne:</label>
|
|
<br>
|
|
<textarea id="nota" name="nota" cols="50" rows="4" class="form-control input-sm"><%= bean.getNota() %></textarea>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<label for="descrizione">Note per <%=bean.getTipo()%>:</label>
|
|
<br>
|
|
<textarea id="notaPerCliente" name="notaPerCliente" cols="50" rows="4" class="form-control input-sm"><%= bean.getNotaPerCliente() %></textarea>
|
|
</div>
|
|
</div> |