diff --git a/funciones/conex.php b/funciones/conex.php index aeb00c5..b5c129f 100644 --- a/funciones/conex.php +++ b/funciones/conex.php @@ -1,6 +1,6 @@ "; }else {$continuar_editando ="";} +if($ignorar_areas[0] !='1'){ +$script_pie =" + +$('.next').click(function(){ + + var nextId = $(this).parents('.tab-pane').next().attr('id'); + $('[href=#'+nextId+']').tab('show'); + return false; + +}) +$('.prev').click(function(){ + + var prevId = $(this).parents('.tab-pane').prev().attr('id'); + $('[href=#'+prevId+']').tab('show'); + return false; + +}) + + +$('a[data-toggle=\"tab\"]').on('shown.bs.tab', function (e) { + + //update progress + var step = $(e.target).data('step'); + var percent = (parseInt(step) / $fila ) * 100; + + $('.progress-bar').css({width: percent + '%'}); + $('.progress-bar').text('Paso ' + step + ' de $fila' ); + + //e.relatedTarget // previous tab + +}) + +$('.first').click(function(){ + + $('#myWizard a:first').tab('show') + +}) + + +"; +$nombre_container = "myWizard"; $fila=0; while( $row = mysqli_fetch_array( $sql ) ) { @@ -11022,11 +11068,16 @@ while( $row = mysqli_fetch_array( $sql ) ) { } $fila = $fila +1; - //$producto = remplacetas('farmacia_cum','id',$row[id_producto],'fabricante_importador') ; - ///// para pasar el parametro de medicamentos al formulario no pos se adiciona ".func_get_arg(2)." + $campos = formulario_area_campos($perfil,$row['campo_area'],"$control_edit",$ubicacion); - if($fila==1) {$activo='active'; $anterior="";}else{$activo=''; $anterior ="";} - if($fila == $cantidad) { $boton=" + + + if($fila==1) {$activo='active'; $anterior="";} + else{$activo=''; + $anterior =""; + } + if($fila == $cantidad) { + $boton="
@@ -11092,102 +11143,105 @@ $controladores .= "
  • "; - } +}/// fin del while //// botonera form $metadatos = json_encode($metadatos); -$muestra_form = " - -
    -
    -
    -
    - Paso 1 de $fila -
    -
    - - -
    - - - - - - .
    - $resultado_campos -
    -
    - -
    - +$encabezado_formulario = " +
    +
    + Paso 1 de $fila +
    + "; + +}else{ + $boton=" + +
    +
    + $continuar_editando +
    + +
    +
    + +
    Grabar
    +
    +
    +
    +
    +
    Cancelar
    +
    +
    +"; +while( $row = mysqli_fetch_array( $sql ) ) { - - "; + if( $row['obligatorio'] == '1'){$obligatorio="*";}else {$obligatorio='X';} + if($row['multiple'] =="1" ){ + $campos = "".formulario_campos_render_multiple($row['id_campo'],$perfil,$control_edit,$ubicacion,''); + }else{ + $campos = "".formulario_campos_render($row['id_campo'],$perfil,$control_edit,'','',"$ubicacion",''); + } +$resultado_campos .= "$campos"; +$resultado_solo_campos .= "$campos"; +//$campos .="$row[campo_nombre]"; +} +// $muestra_form ="$campos
    "; +} //// fin botonera form } + $muestra_form = " + +
    +
    + $encabezado_formulario + +
    + + + + + + .
    + $resultado_campos + $boton +
    +
    + +
    + +
    + + + +