First commit

This commit is contained in:
MaddoScientisto 2026-04-07 18:02:17 +02:00
commit cc69770608
1468 changed files with 265316 additions and 128 deletions

View file

@ -0,0 +1,23 @@
<!-- _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>