valueAnagrafe.jsp 746 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
<%@ include file="/project/include.jsp" %>	
<script type="text/javascript" src="${j:getResourceUrlOfModule('anagrafiche','js/soggettoUtils.js')}"></script>	

<c:choose>
	<c:when test="${empty dto_valore}">
		Il valore dell'anagrafe centrale corrisponde al valore in Icaro
	</c:when>
	<c:otherwise>
		<table cellpadding="0" cellspacing="3">
			<tr>
				<td class="form-label">
					Valore anagrafe
				</td>
				<td class="form-values">
					${dto_valore}
				</td>
			</tr>
		</table>
		<br/>	
		<br/>
		<center>
		<shell:button text="Aggiorna valore in Icaro" img="anagrafiche.nucleoStorico" 
				title="Aggiorna valore in Icaro" href="javascript:parent.aggiornaValoreIcaro(${dto_functionParam});"/>
		</center>	
	</c:otherwise>		
</c:choose>