diff options
Diffstat (limited to 'admin/ogAdmSources/ogAdmWebCon/comandos/jscripts/CrearSoftIncremental.js')
-rw-r--r-- | admin/ogAdmSources/ogAdmWebCon/comandos/jscripts/CrearSoftIncremental.js | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/admin/ogAdmSources/ogAdmWebCon/comandos/jscripts/CrearSoftIncremental.js b/admin/ogAdmSources/ogAdmWebCon/comandos/jscripts/CrearSoftIncremental.js new file mode 100644 index 00000000..1b2bf2f3 --- /dev/null +++ b/admin/ogAdmSources/ogAdmWebCon/comandos/jscripts/CrearSoftIncremental.js @@ -0,0 +1,82 @@ +// ************************************************************************************************************************************************* +// Libreria de scripts de Javascript +// Copyright 2003-2005 José Manuel Alonso. Todos los derechos reservados. +// Fecha Creación:2003-2004 +// Fecha Última modificación: Marzo-2005 +// Nombre del fichero: CrearSoftIncremental.js +// Descripción : +// Este fichero implementa las funciones javascript del fichero CrearSoftIncremental.php (Comandos) +// ************************************************************************************************************************************************* +function confirmar(){ + if (comprobar_datos()){ + var cadenaip=document.fdatos.cadenaip.value; + var identificador=document.fdatos.identificador.value; + var nombrefuncion=document.fdatos.nombrefuncion.value; + var ejecutor=document.fdatos.ejecutor.value; + var tipotrama=document.fdatos.tipotrama.value; + var ambito=document.fdatos.ambito.value; + var idambito=document.fdatos.idambito.value; + var idperfilhard=document.fdatos.idperfilhard.value; + tb_conf=document.getElementById("tabla_conf"); + var ochecks=tb_conf.getElementsByTagName('INPUT') + var perfiles="" + for(var i=0;i<ochecks.length;i++){ + if(ochecks[i].checked){ + var particion=ochecks[i].value + desple=document.getElementById("desple_"+particion); + perfiles+=particion+"_"+desple.value+";" + } + } + var wurl="./gestores/gestor_CrearSoftIncremental.php" + wurl+="?cadenaip="+cadenaip+"&identificador="+identificador+"&nombrefuncion="+nombrefuncion+"&ejecutor="+ejecutor+"&tipotrama="+tipotrama+"&ambito="+ambito+"&idambito="+idambito+"&idperfilhard="+idperfilhard+"&perfiles="+perfiles + wurl+="&" +compone_urlejecucion(); + ifr=document.getElementById("iframes_comodin"); // Toma objeto Iframe + ifr.src=wurl; // LLama a la página gestora + } +} +//________________________________________________________________________________________________________ +// +// Cancela la edición +//________________________________________________________________________________________________________ + function cancelar(){ + alert(CTbMsg[0]); + location.href="../nada.php" + } +//________________________________________________________________________________________________________ +// +// Comprobar_datos +//________________________________________________________________________________________________________ +function comprobar_datos(){ + tb_conf=document.getElementById("tabla_conf"); + var ochecks=tb_conf.getElementsByTagName('INPUT') + var op=0 + for(var i=0;i<ochecks.length;i++){ + if(ochecks[i].checked){ + op++; + var particion=ochecks[i].value + desple=document.getElementById("desple_"+particion); + var p=desple.selectedIndex + if (p==0){ + alert(TbMsg[0]) + desple.focus() + return(false) + } + } + } + if(op==0){ + alert(TbMsg[1]) + return(false); + } + return(comprobar_datosejecucion()) +} +//________________________________________________________________________________________________________ +// +// Comprobar retorno +//________________________________________________________________________________________________________ +function resultado_crearsoftincremental(resul){ + if (!resul){ + alert(CTbMsg[1]); + return + } + alert(CTbMsg[2]); +} |