当前位置: 首页>>代码示例>>PHP>>正文


PHP Consulta::ConsultaVerRegistro方法代码示例

本文整理汇总了PHP中Consulta::ConsultaVerRegistro方法的典型用法代码示例。如果您正苦于以下问题:PHP Consulta::ConsultaVerRegistro方法的具体用法?PHP Consulta::ConsultaVerRegistro怎么用?PHP Consulta::ConsultaVerRegistro使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Consulta的用法示例。


在下文中一共展示了Consulta::ConsultaVerRegistro方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getMiRol

 function getMiRol()
 {
     $sql = "SELECT\r\n\t\t\t\tr.id_rol\r\n\t\t\t\tFROM\r\n\t\t\t\trol AS r\r\n\t\t\t\tInner Join usuarios AS u ON r.id_rol = u.id_rol\r\n\t\t\t\tWHERE\r\n\t\t\t\tu.id_usuario =  '" . $_SESSION['session'][0] . "'";
     $query = new Consulta($sql);
     $row = $query->ConsultaVerRegistro();
     return $row["id_rol"];
 }
开发者ID:electromanlord,项目名称:sgd,代码行数:7,代码来源:class.rol.php

示例2: FichaMeses

    function FichaMeses()
    {
        $this->anpid = $anpid;
        $this->axo_poa = $axo_poa;
        $this->id_user = $id_user;
        $sql = "SELECT m.*\r\nFROM\r\n`programacion_partidas_meses` AS `ppm`\r\nInner Join `programacion_partidas` AS `pp` ON `ppm`.`id_programacion_partidas` = `pp`.`id_programacion_partidas`\r\nInner Join `asignacion_ff_anp_objetivos` AS `afao` ON `afao`.`id_asignacion_ff_anp_objetivos` = `pp`.`id_ff_anp_subactividad`\r\nInner Join `asignacion_anp_objetivos` AS `aao` ON `aao`.`id_asignacion_anp_objetivos` = `afao`.`id_asignacion_anp_objetivos`\r\nInner Join `presupuesto_anp` AS `pa` ON `pa`.`id_presupuesto_anp` = `afao`.`id_presupuesto_anp`\r\nInner Join `presupuesto_ff` AS `pf` ON `pf`.`id_presupuesto_ff` = `pa`.`id_presupuesto_ff`\r\nInner Join `fuente_financiamiento` AS `ff` ON `ff`.`id_ff` = `pf`.`id_ff`\r\nInner Join `anp_objetivo_especifico` AS `aoesp` ON `aoesp`.`id_anp_objetivo_especifico` = `aao`.`id_anp_objetivo_especifico`\r\nInner Join `tarea` AS `t` ON `t`.`id_tarea` = `aao`.`id_tarea`\r\nInner Join `anp_objetivo_estrategico` AS `aoest` ON `aoest`.`id_anp_objetivo_estrategico` = `aoesp`.`id_anp_objetivo_estrategico`\r\nInner Join `objetivo_estrategico` AS `oe` ON `oe`.`id_objetivo_estrategico` = `aoest`.`id_objetivo_estrategico`\r\nInner Join `mes` AS `m` ON `ppm`.`id_mes` = `m`.`id_mes`\r\nWHERE\r\n`aao`.`id_anp` =  '" . $anpid . "' AND\r\n`aao`.`id_axo_poa` =  '" . $axo_poa . "'\r\n\r\nGROUP BY\r\n`ppm`.`id_mes`";
        $Q_m = new Consulta($sql);
        ?>
		
			
			
	<style type="text/css">
<!--
.Estilo1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}
body {
	background-color: #c0cccc;
}
body,td,th {
	color: #333300;
}
-->
    </style>
<form id="form1" name="form1" method="post" action="">
  <label>
  <div align="center"><span class="Estilo1">Seleccione el Mes</span><br />
    <select name="idmes" onchange="submit()">
      <option value="0">Elija el Mes</option>
	 <?php 
        while ($row_m = $Q_m->ConsultaVerRegistro()) {
            if ($_POST[idmes] == $row_m[0]) {
                $select = "selected";
            } else {
                $select = "";
            }
            ?>
	
						<option value="<?php 
            echo $row_m[0];
            ?>
" <?php 
            echo $select;
            ?>
 ><?php 
            echo $row_m[1];
            ?>
</option><?php 
        }
        ?>
 
    </select>
  </div>
  </label>
</form>		
	<?php 
    }
开发者ID:electromanlord,项目名称:sgd,代码行数:58,代码来源:Copia+de+reporte_meses.php

示例3: getObjetivosEstrategicos

 function getObjetivosEstrategicos()
 {
     $result;
     $sql = "SELECT * FROM objetivo_estrategico  ";
     $query = new Consulta($sql);
     while ($row = $query->ConsultaVerRegistro()) {
         $result[] = array('id' => $row['id_objetivo_estrategico'], 'nombre' => $row['nombre_objetivo_estrategico'], 'codigo' => $row['codigo_objetivo_estrategico'], 'indicador' => $row['indicador_objetivo_estrategico'], 'unidad_medida' => $row['id_unidad_medida']);
     }
     return $result;
 }
开发者ID:electromanlord,项目名称:sgd,代码行数:10,代码来源:class.objetivos_estrategicos.php

示例4: Consulta

 function mostrar_PresupuestoMensual($ftefto)
 {
     $gsqlp = $this->SqlFtt($ftefto);
     $sqlg = $gsqlp;
     $selmescampos = $this->setsql($gsqlp);
     //OBJ Estrat ///////////////////////////////////////////////////////////////////////
     //die ()
     $sqlprg = $this->set_sql("oe.*", $gsqlp, "oe.id_objetivo_estrategico", "codigo_objetivo_estrategico");
     $query = new Consulta($sqlprg);
     while ($row_prg = $query->ConsultaVerRegistro()) {
         //$prg=table_row($row_prg[id_programa],"objetivo_estrategico");
         $prg[total_monto] = $row_prg[total_monto];
         $gsqlsp = $gsqlp . " AND oe.id_objetivo_estrategico='" . $row_prg[id_objetivo_estrategico] . "'";
         $this->setsql($gsqlsp);
         $this->registro_programa($row_prg, $ftefto);
         //SUB PROGRAMA///////////////////////////////////////////////////////////////////////
         $sql_sb = $this->set_sql("aoesp.*", $gsqlsp, "aoesp.id_anp_objetivo_especifico ", "codigo_objetivo_especifico");
         $query_sb = new Consulta($sql_sb);
         while ($row_sb = $query_sb->ConsultaVerRegistro()) {
             //$sbprg=table_row($row_sb[id_subprograma],"subprograma");
             $gsqla = $gsqlsp . " AND aoesp.id_anp_objetivo_especifico='" . $row_sb[id_anp_objetivo_especifico] . "'";
             $this->setsql($gsqla);
             //regitro sub programa
             $this->registro_subprograma($row_prg, $row_sb, $ftefto);
             //ACTIVIDAD///////////////////////////////////////////////////////////////////////
             $sql_a = $this->set_sql("t.*,aao.*,afao.*", $gsqla, "t.id_tarea", "nro_asignacion");
             $query_a = new Consulta($sql_a);
             while ($row_a = $query_a->ConsultaVerRegistro()) {
                 //$actividad=table_row($row_a[id_actividad],"actividad");
                 $gsqlsa = $gsqla . "  AND t.id_tarea='" . $row_a[id_tarea] . "'";
                 $this->setsql($gsqlsa);
                 $this->registro_actividad($row_prg, $row_sb, $row_a, $ftefto);
                 /*		//SUB ACTIVIDAD ///////////////////////////////////////////////////////////////////////
                 									$sql_sa=$this->set_sql("sa.id_subactividad, sa.nombre_subactividad,
                 											 sa.codigo_completo_subactividad, asb.id_anp_subactividad, asb.id_anp,asb.id_axo_poa ",
                 											 $gsqlsa,	"fas.id_anp_subactividad","sa.id_subactividad");
                 				//die($sql_sa);							
                 											$query_sa=new Consulta($sql_sa);
                 											while($row_sa=$query_sa->ConsultaVerRegistro()){ 
                 												$gsqlsaa= $gsqlsa." AND sa.id_subactividad='".$row_sa[id_subactividad]."'";
                 												$this->setsql($gsqlsaa);
                 												$this->registro_subactividad($row_sa,$ftefto);
                 											}//fin SubActividad*/
             }
             // fin actividad
         }
         //fin sub programa
     }
     //fin programa
     $this->setsql($sqlg);
     $this->fin_de_registros($ftefto);
 }
开发者ID:electromanlord,项目名称:sgd,代码行数:52,代码来源:presupuestomensual.cls.php

示例5: UnidadMedida

 function UnidadMedida($id = 0)
 {
     $this->id = $id;
     if ($this->id > 0) {
         $sql = " SELECT * FROM unidad_medida";
         $query = new Consulta($sql);
         if ($query->numregistros() > 0) {
             $row = $query->ConsultaVerRegistro();
             $this->nombre = $row['nombre_unidad_medida'];
             $this->descripcion = $row['descripcion_unidad_medida'];
         }
     }
 }
开发者ID:electromanlord,项目名称:sgd,代码行数:13,代码来源:class.unidad_medida.php

示例6: IndiceListarModulos

 function IndiceListarModulos($id = '')
 {
     if (empty($id)) {
         $sql = "select * from modulos ORDER BY id_modulo";
     } else {
         $sql = "select * from modulos where id_modulo ='{$id}' ORDER BY id_modulo";
     }
     $query = new Consulta($sql);
     if ($query->numcampos() > 0) {
         while ($rows = $query->ConsultaVerRegistro()) {
             $prg[] = array('id' => $rows['id_modulo'], 'nombre' => $rows['nombre_modulo'], 'descripcion' => $rows['descripcion_modulo'], 'carpeta' => $rows['carpeta_modulo']);
         }
     }
     return $prg;
 }
开发者ID:electromanlord,项目名称:sgd,代码行数:15,代码来源:index.cls.php

示例7: GuardarFinalizado

function GuardarFinalizado($cod, $id, $tipo)
{
    $fecha_actual = time() - 3600;
    $fecha = date("Y-m-d H:i:s", $fecha_actual);
    $sql = "UPDATE documento_finalizado\r\n\t\t\tSET \r\n\t\t\tcodigo_documento_finalizado='" . $cod . "',\r\n\t\t\tfecha_finalizado = '" . $fecha . "'\r\n\t\t\tWHERE id_documento_finalizado=" . $id;
    $query = new Consulta($sql);
    if ($query->RespuestaConsulta()) {
        $sql_u = "SELECT ultimo_numero\r\n\t\t\t\t  FROM numero_documentos_respuesta\r\n\t\t\t\t  WHERE tipo_documento = " . $tipo;
        $query_u = new Consulta($sql_u);
        $row_u = $query_u->ConsultaVerRegistro();
        $ultimo = $row_u["ultimo_numero"];
        $sql_n = "UPDATE numero_documentos_respuesta\r\n\t\t\t\t SET ultimo_numero='" . ($ultimo + 1) . "'\r\n\t\t\t\t WHERE tipo_documento=" . $tipo;
        $query_n = new Consulta($sql_n);
    }
    return $query_n->RespuestaConsulta();
}
开发者ID:electromanlord,项目名称:sgd,代码行数:16,代码来源:AjaxFinalizado.php

示例8: Consulta

    function carga_combo($sql, $nom, $next = '', $msg_d = '-- Seleccione --', $msg_v = '-- Sin Opciones --')
    {
        $q = new Consulta($sql);
        if ($q->numregistros() == 0) {
            ?>
			<select name="<?php 
            echo $nom;
            ?>
"><option value=''><?php 
            echo $msg_v;
            ?>
</option></select>
<?php 
        } else {
            ?>
	<select name="<?php 
            echo $nom;
            ?>
" onchange="carga_combo(this,'<?php 
            echo $next;
            ?>
')" > 
		<option value='' selected ><?php 
            echo $msg_d;
            ?>
</option>
		<?php 
            while ($r = $q->ConsultaVerRegistro()) {
                ?>
			<option value='<?php 
                echo $r[0];
                ?>
'><?php 
                echo urlencode($r[1]);
                ?>
</option>
		<?php 
            }
            ?>
</select><?php 
        }
        //if hay registros
    }
开发者ID:electromanlord,项目名称:sgd,代码行数:43,代码来源:ajax.cls.php

示例9: Consulta

 function mostrar_Presupuesto()
 {
     $gsqlp = $this->SqlFtt($this->ftefto);
     $sqlg = $gsqlp;
     $this->setsql($gsqlp);
     //Partida ///////////////////////////////////////////////////////////////////////
     $sqlprtd = $this->set_sql("pp.id_partida, codigo_partida,nombre_partida", $gsqlp, "pp.id_partida", "partida.codigo_partida", "partida");
     //die ($sqlprtd);
     $query = new Consulta($sqlprtd);
     while ($row_prtd = $query->ConsultaVerRegistro()) {
         $gsqlsp = $gsqlp . " AND pp.id_partida='" . $row_prtd[id_partida] . "'";
         $this->setsql($gsqlsp);
         //die ($this->sql);
         $this->registro_partida($row_prtd);
     }
     //fin Partida
     $this->setsql($sqlg);
     $this->fin_de_registros();
 }
开发者ID:electromanlord,项目名称:sgd,代码行数:19,代码来源:presupuestoporpartidamensual.cls.php

示例10: Consulta

 function mostrar_Presupuesto()
 {
     $gsqlp = $this->SqlFts;
     $sqlg = $gsqlp;
     $this->setsql($gsqlp);
     //OBJ Estrat ///////////////////////////////////////////////////////////////////////
     //die ()
     $sqlprg = $this->set_sql("oe.*,m.*", $gsqlp, "oe.id_objetivo_estrategico", "codigo_objetivo_estrategico");
     $query = new Consulta($sqlprg);
     while ($row_prg = $query->ConsultaVerRegistro()) {
         //$prg=table_row($row_prg[id_programa],"objetivo_estrategico");
         $prg[total_monto] = $row_prg[total_monto];
         $gsqlsp = $gsqlp . " AND m.id_mes='" . $_POST[idmes] . "' and oe.id_objetivo_estrategico='" . $row_prg[id_objetivo_estrategico] . "'";
         $this->setsql($gsqlsp);
         $this->registro_programa($row_prg, $ftefto);
         //OBJETIVO ESPECIFICO///////////////////////////////////////////////////////////////////////
         $sql_sb = $this->set_sql("aoesp.*,m.*", $gsqlsp, "aoesp.id_anp_objetivo_especifico ", "codigo_objetivo_especifico");
         $query_sb = new Consulta($sql_sb);
         while ($row_sb = $query_sb->ConsultaVerRegistro()) {
             //$sbprg=table_row($row_sb[id_subprograma],"subprograma");
             $gsqla = $gsqlsp . " AND aoesp.id_anp_objetivo_especifico= '" . $row_sb[id_anp_objetivo_especifico] . "' AND m.id_mes='" . $_POST[idmes] . "'";
             $this->setsql($gsqla);
             //regitro sub programa
             $this->registro_subprograma($row_prg, $row_sb, $ftefto);
             //TAREA///////////////////////////////////////////////////////////////////////
             $sql_a = $this->set_sql("t.*,aao.*,afao.*,m.*", $gsqla, "t.id_tarea", "aao.nro_asignacion");
             $query_a = new Consulta($sql_a);
             while ($row_a = $query_a->ConsultaVerRegistro()) {
                 //$actividad=table_row($row_a[id_actividad],"actividad");
                 $gsqlsa = $gsqla . "  AND t.id_tarea='" . $row_a[id_tarea] . "'  AND m.id_mes='" . $_POST[idmes] . "'";
                 $this->setsql($gsqlsa);
                 $this->registro_actividad($row_prg, $row_sb, $row_a, $ftefto);
             }
             // fin actividad
         }
         //fin sub programa
     }
     //fin programa
     $this->setsql($sqlg);
     $this->fin_de_registros($ftefto);
 }
开发者ID:electromanlord,项目名称:sgd,代码行数:41,代码来源:presupuestomensualporpartidas_original.cls.php

示例11: Consulta

    echo $row[indicador_objetivo_estrategico];
    ?>
</td>
	<td align="center"><?php 
    echo $row[id_unidad_medida];
    ?>
</td>
	<td align="right"><?php 
    echo $row[meta_anp_objetivo_estrategico];
    ?>
</td>
</tr><tr><td colspan="6">
<?php 
    $sql_ = "SELECT * FROM anp_objetivo_especifico aoe, anp_objetivo_especifico_meta m \r\n\t\t\t\tWHERE id_anp_objetivo_estrategico='" . $id . "' AND id_axo_poa='" . $_SESSION['inrena_4']['2'] . "'\r\n\t\t\t\t\tAND m.id_anp_objetivo_especifico=aoe.id_anp_objetivo_especifico\r\n\t\t\t\tORDER BY codigo_objetivo_especifico  ";
    $Q_ = new Consulta($sql_);
    while ($r = $Q_->ConsultaVerRegistro()) {
        $ids = $r[id_anp_objetivo_especifico];
        ?>
			<tr class='reg1'>
			<td><?php 
        echo $row[codigo_objetivo_estrategico] . "." . $r[codigo_objetivo_especifico];
        ?>
</td>
			<td align="left"><?php 
        echo $r[nombre_objetivo_especifico];
        ?>
</td>
			<td align="left"><?php 
        echo $r[indicador_objetivo_especifico];
        ?>
</td>
开发者ID:electromanlord,项目名称:sgd,代码行数:31,代码来源:reporte_objetivos_estrategicos_1.php

示例12: ListarFts

 function ListarFts()
 {
     $sqlfft = $this->SqlFtt($this->ftefto);
     $sql = $this->set_sql("pf.id_ff", $sqlfft, "pf.id_ff", "pf.id_ff");
     $query = new Consulta($sql);
     while ($row_Fts = $query->ConsultaVerRegistro()) {
         $row = table_row($row_Fts['id_ff'], "fuente_financiamiento", "id_ff");
         $Fts[] = array('id_ff' => $row['id_ff'], 'nombre_ff' => $row['nombre_ff'], 'siglas_ff' => $row['siglas_ff']);
     }
     return $Fts;
 }
开发者ID:electromanlord,项目名称:sgd,代码行数:11,代码来源:objetivosestrategicos.cls.php

示例13: Consulta

		<tr class="Estilo33">
			<td width="36%" height="23" align="right">&nbsp;</td>
			<td height="23" colspan="3" align="right"><div align="right"><b>
			  <?php 
echo $rowreg[1];
?>
		    </b></div></td>
	    </tr>
        <tr class="Estilo33">
			<td height="20" colspan="4" align="center"><span class="titulo">Hoja de Tramite</span></td>
        </tr>
        <tr class="Estilo1">
			<?php 
$sql_remi = "Select * FROM remitentes AS r \r\n\t\t\t\t\t\t\tINNER JOIN tipo_remitente AS tr ON tr.id_tipo_remitente = r.id_tipo_remitente \r\n\t\t\t\t\t\t\tWHERE r.id_remitente='" . $rowreg['id_remitente'] . "'";
$q_remi = new Consulta($sql_remi);
$rowremi = $q_remi->ConsultaVerRegistro();
?>
			<td align="left" class="primeracolumna">
			  	<span class="Estilo15">Origen</span>			</td>
			<td colspan="3" align="left" class="detalle" >
		  		<span class="Estilo16"><?php 
echo $rowremi['tipo_remitente_nombre'];
?>
</span>			</td>
        </tr>
        <tr class="Estilo1">
			<td align="left" class="primeracolumna">
		  		<span class="Estilo15">Fecha de Registro</span>			</td>
			<td colspan="3" align="left" class="detalle">
				<span class="Estilo16"><?php 
echo $rowreg['fecha_registro_documento'];
开发者ID:electromanlord,项目名称:sgd,代码行数:31,代码来源:ficha_registro.php

示例14: Consulta

        <?php 
echo $doc_reporte->getAsunto();
?>
      </div></td>
    </tr>
    <tr>
      <td  height="21" align="center"><div align="left" class="Estilo22">Doc. Digitalizado </div></td>
      <td align="center"><div align="center" class="Estilo22">:</div></td>
      <td  height="21" colspan="4" align="center">
	  <div align="left">
        <?php 
$escaneo = "SELECT *\r\n\t\t\t\t\t\tfrom documentos_escaneados de\r\n\t\t\t\t\t\twhere de.id_documento = " . $doc_reporte->getIdDocumento();
$qescaneo = new Consulta($escaneo);
$index = 1;
$doc = new Documento($doc_reporte->getIdDocumento());
while ($row_reg = $qescaneo->ConsultaVerRegistro()) {
    if (is_null($row_reg['fecha_escaneo'])) {
        $ref = "Escaneo/" . $row_reg['nombre_documento_escaneado'];
    } else {
        $ref = "../sad/Escaneado_completo/" . $doc->getCodigo() . "/" . $row_reg['nombre_documento_escaneado'];
    }
    ?>
			<a href="<?php 
    echo $ref;
    ?>
"	id="<?php 
    echo $row_reg["id_documento_escaneado"];
    ?>
" target="_blank"><?php 
    echo $index;
    ?>
开发者ID:electromanlord,项目名称:sgd,代码行数:31,代码来源:detalle_documento.php

示例15: Busqueda

    function Busqueda($campo, $valor)
    {
        if ($campo == "nombre_remitente") {
            $where = $campo == "nombre_remitente" ? " AND remitentes.nombre_remitente like '%{$valor}%' " : "";
        } else {
            $where = $campo != "" ? " AND d.{$campo} like '%{$valor}%' " : "";
        }
        $sql_reg = "SELECT * FROM documentos d\r\n                Inner Join remitentes ON remitentes.id_remitente = d.id_remitente\r\n                Inner Join estados ON estados.id_estado = d.id_estado\r\n                Inner Join tipos_documento ON tipos_documento.id_tipo_documento = d.id_tipo_documento\r\n                " . $where . " ORDER BY d.id_documento DESC";
        $query_reg = new Consulta($sql_reg);
        ?>

<div class="ui-jqgrid ui-widget ui-widget-content ui-corner-all">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" id="tabla_despacho" class="gview_frmgrid">
	<tr>
		<td>
			<table width="100%" class="ui-jqgrid-htable" cellpadding="0" cellspacing="0">
				<tr bgcolor="#6699CC" class="ui-widget-header ui-th-column grid_resize" height="25">
					<th width="16%" class="ui-widget-header ui-th-column grid_resize">Reg. Nro</th>
					<th width="26%" class="ui-widget-header ui-th-column grid_resize">Remitente</th>
					<th width="28%" class="ui-widget-header ui-th-column grid_resize">Documento</th>
					<th width="13%" class="ui-widget-header ui-th-column grid_resize">Registrado</th>
					<th width="6%" class="ui-widget-header ui-th-column grid_resize">Estado</th>
					<th class="ui-widget-header ui-th-column grid_resize">Ubicacion  Original</th>
				</tr>			
			</table>
		</td>
	</tr>
	<tr class="ui-jqgrid-bdiv">
		<td>
			<table id="frmgrid" width="100%" class="ui-jqgrid-btable" cellpadding="0" cellspacing="0">

        <?php 
        while ($row_reg = $query_reg->ConsultaVerRegistro()) {
            $id = $row_reg[0];
            $estado = $row_reg["id_estado"];
            $tooltip = "";
            if (!empty($row_reg['asunto_documento'])) {
                $tooltip = "title ='" . $row_reg['asunto_documento'] . "' class='tip'";
            }
            ?>
        <tr class="ui-widget-content1 jqgrow <?php 
            echo $estado == 12 ? "Estilo2 fila_finalizada" : "Estilo2";
            ?>
">
            <td <?php 
            echo $tooltip;
            ?>
 width="16%">
				<div align="center">
				<?php 
            $cod = $row_reg[1];
            if ($estado != 12) {
                ?>
						<a href="escaneo_acceso_registro.php?opcion=edit&id=<?php 
                echo $id;
                ?>
">
						<?php 
                echo $cod;
                ?>
</a>
					 <?php 
            } else {
                echo $cod;
            }
            ?>
				</div>
			</td>
            <td width="26%">
				<input size="48"  value="<?php 
            echo $row_reg["nombre_remitente"];
            ?>
"/>
			</td>
            <td width="28%">
				<input size="43" value="<?php 
            echo $row_reg["numero_documento"];
            ?>
"/>
			</td>
            <td width="13%">
				<input name="text" type="text" style="text-align:center; width:100%" value="<?php 
            echo date('d/m/Y H:i', strtotime($row_reg['fecha_registro_documento']));
            ?>
" size="3"/>
			</td>
            <td width="6%" align="center">
				<input name="text2" type="text" style="text-align:center; width:100%" value="<?php 
            echo $row_reg['abrev_nombre_estado'];
            ?>
" size="3"/>
			</td>
            <?php 
            $sql_ultimo = "SELECT Max(`hd`.`id_historial_documento`) AS `ultimo`\r\n                            FROM\r\n                            `historial_documentos` AS `hd`\r\n                            where hd.id_documento='" . $row_reg['id_documento'] . "'\r\n                            GROUP BY\r\n                            `hd`.`id_documento`";
            $query_ultimo = new Consulta($sql_ultimo);
            $ultimo = $query_ultimo->ConsultaVerRegistro();
            $sql_data = " SELECT hd.id_documento,\r\n                            a.nombre_area,\r\n                            a.abve_nombre_area\r\n                            FROM historial_documentos AS hd\r\n                            Inner Join areas AS a ON a.id_area = hd.id_area\r\n                            where hd.id_historial_documento='" . $ultimo['ultimo'] . "'";
            $query_data = new Consulta($sql_data);
            $data = $query_data->ConsultaVerRegistro();
            $sql_usu = "SELECT Max(`ha`.`id_historial_atencion`) AS `ultimo`,\r\n                            `ha`.`id_documento`\r\n                            FROM `historial_atencion` AS `ha`\r\n                            WHERE ha.original_historial_atencion =  '1' and\r\n                            ha.id_documento='" . $row_reg['id_documento'] . "'\r\n                            GROUP BY\r\n                            `ha`.`id_documento`\t";
//.........这里部分代码省略.........
开发者ID:electromanlord,项目名称:sgd,代码行数:101,代码来源:class.escaneos.php


注:本文中的Consulta::ConsultaVerRegistro方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。