first commit

This commit is contained in:
MaddoScientisto 2026-03-14 20:04:39 +01:00
commit 4d332ef662
27586 changed files with 3281783 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<%@ taglib uri="/WEB-INF/ablia.tld" prefix="ab" %>
<%@ page language="java" import="com.ablia.jsp.*" %>
<%-- DICHIARAZIONE BEAN --%>
<jsp:useBean id="lang" class="java.lang.String" type="java.lang.String" scope="session" >
</jsp:useBean>
<jsp:useBean id="bean" class="com.ablia.contab.Documento" type="com.ablia.contab.Documento" scope="request" >
</jsp:useBean>
<%-- FINE DICHIARAZIONE BEAN --%>
<div class="row">
<div class="col-lg-4 col-xs-12">
<label for="txtRicerca">Note Disposizione:</label>
<br>
<textarea id="note" name="note" cols="60" rows="4"><%= bean.getNote() %></textarea>
</div>
<div class="col-lg-4 col-xs-12">
<label for="txtRicerca">Nota Articolo:</label>
<br>
<b><%= bean.getArticolo().getNotaArticolo() %></b>
</div>
<div class="col-lg-4 col-xs-12">
<label for="txtRicerca">Nota Tessuti:</label>
<br>
<b><%= bean.getArticolo().getNoteTessutiBaseHtml(lang) %></b>
</div>
</div>