enteHeader.jsp 686 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<%@ include file="/project/include.jsp" %>
	
<script type="text/javascript">
	function postClientValidation() {
		var activeSlave = bui_datamanagement.getMode().getActiveSlave();
		if (!bui_datamanagement.getMode().isView() && activeSlave == null) {
			if (!checkCodiceFiscaleEnte()) {
				return false;
			}
		}				
		return true;
	}

	function goToStrutturaOrganizzativaFromEnte() {
		var idEnte = cpGetMasterColumnValueOfCurrentRow('id');
		buiOpenNewDataManagementAsHiddenChild('strutture.strutturaOrganizzativa', 
			'init=it.cedaf.icare.strutture.model.datamanagement.StrutturaOrganizzativaFromEnteInitializer&idEnte=' + idEnte + shellGetSelectedRowParam()); 
	}

</script>