Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
6 | Andrea | 1 | <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> |
2 | <%@ taglib prefix="s" uri="/struts-tags" %> |
||
3 | |||
4 | <script type="text/javascript"> |
||
5 | <!--// |
||
6 | function caricaRicerca() { |
||
7 | formObj = document.getElementById('caricaRicercaForm'); |
||
8 | formObj.submit(); |
||
9 | } |
||
10 | //--> |
||
11 | </script> |
||
12 | |||
13 | <s:form id="caricaRicercaForm" theme="simple" action="consultazioneStatistiche!preparaMaschera.action"> |
||
14 | <s:hidden id="codCom_ric" name="codCom" /> |
||
15 | <s:hidden id="codProv_ric" name="codProvinciaSelezionata" /> |
||
16 | <s:hidden id="mese_ric" name="ricerca.mese" /> |
||
17 | <s:hidden id="anno_ric" name="ricerca.anno" /> |
||
18 | </s:form> |
||
19 | |||
20 | <s:form id="scaricaCsvForm" theme="simple" action="consultazioneStatistiche!creaDocumentoCsv.action"> |
||
21 | <s:hidden id="codCom_csv" name="codCom" /> |
||
22 | <s:hidden id="codProv_csv" name="codProvinciaSelezionata" /> |
||
23 | <s:hidden id="mese_csv" name="ricerca.mese" /> |
||
24 | <s:hidden id="anno_csv" name="ricerca.anno" /> |
||
25 | </s:form> |
||
26 | |||
27 | <div id="content"> |
||
28 | <div id="richiesta"> |
||
29 | <div id="pdf"> |
||
30 | <a href="javascript:document.getElementById('scaricaCsvForm').submit();"> |
||
31 | <img alt="" onmouseout="htm()" onmouseover="stmb(-1,0)" src="img/csv_icon.gif" /></a> |
||
32 | |||
33 | <img alt="" onmouseout="htm()" onmouseover="stmb(-1,0)" src="img/s3help.gif" /> |
||
34 | </div> |
||
35 | <h1>Consultazione statistiche</h1> |
||
36 | <h2>Passo 2 di 2 - Consultazione statistiche UIU per comune</h2> |
||
37 | Ricerca effettuata nel Comune di <strong><s:property value="risultatoRicerca.comune.nome"/></strong> |
||
38 | (<strong><s:property value="risultatoRicerca.comune.siglaProv"/></strong>) |
||
39 | (codice Belfiore: <strong><s:property value="risultatoRicerca.comune.codCom" /></strong>) |
||
40 | <ul> |
||
41 | <li> |
||
42 | Criteri di ricerca ยป |
||
43 | Mese / Anno di Estrazione |
||
44 | <strong> |
||
45 | <s:property value="ricerca.mese" /> / |
||
46 | <s:property value="ricerca.anno" /> |
||
47 | </strong> |
||
48 | </li> |
||
49 | </ul> |
||
50 | </div> |
||
51 | <s:iterator id="stat" value="risultatoRicerca.risultatoRicerca"> |
||
52 | <table style="margin-bottom: 30px;" summary="Contiene i risultati della ricerca per Comune" class="ListaSoggetti"> |
||
53 | <caption> |
||
54 | <strong>RISULTATI RICERCA PER IL COMUNE DI |
||
55 | <s:property value="key.nome" /> |
||
56 | (<s:property value="key.siglaProv" />) |
||
57 | codice Belfiore: <s:property value="key.codCom" /> |
||
58 | </strong> |
||
59 | </caption> |
||
60 | <tr> |
||
61 | <th onmouseout="htm()" onmouseover="stmb(-1,0)" title="Categoria">Categoria</th> |
||
62 | <th onmouseout="htm()" onmouseover="stmb(-1,0)" title="Immobili">Immobili</th> |
||
63 | <th onmouseout="htm()" onmouseover="stmb(-1,0)" title="Consistenza">Consistenza</th> |
||
64 | <th onmouseout="htm()" onmouseover="stmb(-1,0)" title="Rendita">Rendita</th> |
||
65 | </tr> |
||
66 | <s:iterator id="statCom" value="value"> |
||
67 | <tr> |
||
68 | <td><s:property value="#statCom.categoria.codCategoria" /></td> |
||
69 | <td><s:property value="#statCom.immobili" /></td> |
||
70 | <td><s:property value="#statCom.consistenza" /></td> |
||
71 | <td><s:property value="#statCom.renditaInEuro" /></td> |
||
72 | </tr> |
||
73 | </s:iterator> |
||
74 | </table> |
||
75 | </s:iterator> |
||
76 | <div> |
||
77 | <input type="button" value="Indietro" onclick="caricaRicerca()" /> |
||
78 | </div> |
||
79 | </div> |
||
80 |