本文整理汇总了PHP中Consulta::NumeroRegistros方法的典型用法代码示例。如果您正苦于以下问题:PHP Consulta::NumeroRegistros方法的具体用法?PHP Consulta::NumeroRegistros怎么用?PHP Consulta::NumeroRegistros使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Consulta
的用法示例。
在下文中一共展示了Consulta::NumeroRegistros方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: IF
function Documento_Reporte($id_documento_reporte)
{
$this->_id = $id_documento_reporte;
if ($this->_id > 0) {
$sql = "SELECT \r\n id_documento,\r\n numero_registro,\r\n numero_documento,\r\n remitente,\r\n asunto,\r\n tipo,\r\n folio,\r\n referencia,\r\n anexo,\r\n observacion,\r\n prioridad,\r\n fecha_documento,\r\n fecha_registro,\r\n IF( p.tiempo_horas_respuesta_prioridad, \r\n ADDDATE(dr.fecha_registro, \r\n p.tiempo_horas_respuesta_prioridad/24 )\r\n , '-') AS fecha_respuesta,\r\n estado\r\n FROM documentos_reporte dr\r\n LEFT JOIN prioridades as p ON p.nombre_prioridad = dr.prioridad\r\n WHERE id_documento_reporte = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_id_documento = $row['id_documento'];
$this->_codigo = $row['numero_registro'];
$this->_numero = $row['numero_documento'];
$this->_remitente = $row['remitente'];
$this->_asunto = $row['asunto'];
$this->_tipo = $row['tipo'];
$this->_numero_folio = $row['folio'];
$this->_referencia = $row['referencia'];
$this->_anexo = $row['anexo'];
$this->_observacion = $row['observacion'];
$this->_prioridad = $row['prioridad'];
$this->_fecha_documento = $row['fecha_documento'];
$this->_fecha_registro = $row['fecha_registro'];
$this->_fecha_respuesta = $row['fecha_respuesta'];
$this->_estado = $row['estado'];
$sql_movimientos = "SELECT * \r\n\t\t\t\t \t\t\t\t\tFROM movimientos \r\n\t\t\t\t\t\t\t\t\tWHERE id_documento_reporte = '" . $this->_id . "' \r\n\t\t\t\t\t\t\t\t\tORDER BY fecha_movimiento";
$query_movimientos = new Consulta($sql_movimientos);
while ($rowh = $query_movimientos->VerRegistro()) {
$this->_movimientos[] = array('id' => $rowh['id_documento_reporte'], 'origen' => $rowh['origen'], 'destino' => $rowh['destino'], 'accion' => $rowh['accion'], 'categoria' => $rowh['categoria'], 'usuario' => $rowh['usuario'], 'observacion' => $rowh['observacion'], 'fecha' => date('d/m/Y H:i', strtotime($rowh['fecha_movimiento'])), 'estado' => $rowh['estado'], 'tipo' => $rowh['tipo']);
}
}
}
}
示例2: Estado
function Estado($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT * FROM estados WHERE id_estado = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_nombre = $row['nombre_estado'];
$this->_abreviatura = $row['abrev_nombre_estado'];
}
}
}
示例3: Anp
function Anp($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT * FROM areaspro_dbsiganp1.anp WHERE id_anp = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_nombre = $row['nombre_anp'];
$this->_siglas = $row['siglas_anp'];
}
}
}
示例4: TipoDocumento
function TipoDocumento($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT * FROM tipos_documento WHERE id_tipo_documento = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_nombre = $row['nombre_tipo_documento'];
$this->_abreviatura = $row['abreviatura_tipo_documento'];
}
}
}
示例5: Rol
function Rol($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT * FROM rol WHERE id_rol = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_nombre = $row['nombre_rol'];
$this->_rol = new Rol($row['orden_rol']);
}
}
}
示例6: Pagina
function Pagina($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT * FROM paginas WHERE id_pagina = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_nombre = $row['nombre_pagina'];
$this->_url = $row['url_pagina'];
}
}
}
示例7: Area
function Area($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT * FROM areas WHERE id_area = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_nombre = $row['nombre_area'];
$this->_responsable = $row['id_responsable_area'];
$this->_abreviatura = $row['abve_nombre_area'];
}
}
}
示例8: Remitente
function Remitente($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT * FROM remitentes WHERE id_remitente = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_nombre = $row['nombre_remitente'];
$this->_abreviatura = $row['abreviatura_remitente'];
$this->_tipo = $row['tipo_remitente'];
}
}
}
示例9: Prioridad
function Prioridad($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT * FROM prioridades WHERE id_prioridad = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_nombre = $row['nombre_prioridad'];
$this->_tiempo_horas_respuesta = $row['tiempo_horas_respuesta_prioridad'];
$this->_color = $row['color_prioridad'];
}
}
}
示例10: Accion
function Accion($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT * FROM accion WHERE id_accion = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_nombre = $row['nombre_accion'];
$this->_abreviatura = $row['abreviatura_accion'];
$this->_descripcion = $row['descripcion_accion'];
$this->_estado = $row['estado_accion'];
}
}
}
示例11: DocumentoFinalizado
function DocumentoFinalizado($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT * FROM documento_finalizado WHERE id_documento_finalizado = '" . $this->_id . "'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_codigo = $row['codigo_documento_finalizado'];
$this->_id_documento = $row['id_documento'];
$this->_tipo = new TipoDocumento($row['id_tipo_documento']);
$this->_asunto = $row['asunto'];
$this->_fecha_finalizado = $row['fecha_registro_documento'];
$this->_usuario = $row['usuario'];
}
}
}
示例12: Borrador
function Borrador($id = 0)
{
$this->_id = $id;
if ($this->_id > 0) {
$sql = "SELECT\r\n b.id_borrador_respuesta AS id,\r\n b.id_documento AS id_documento,\r\n b.id_usuario AS id_usuario,\r\n b.descripcion_borrador_respuesta AS descripcion,\r\n b.fecha_borrador_respuesta AS fecha,\r\n b.categoria AS categoria,\r\n b.id_accion AS id_accion,\r\n b.id_area AS id_area,\r\n b.id_destino AS id_destino,\r\n b.aprobacion_respuesta_borrador AS aprobacion\r\n FROM\r\n borradores_respuesta AS b\r\n WHERE\r\n b.id_borrador_respuesta = '{$this->_id}'";
$query = new Consulta($sql);
if ($query->NumeroRegistros()) {
$row = $query->VerRegistro();
$this->_id_documento = $row['id_documento'];
$this->_id_usuario = $row['id_usuario'];
$this->_decripcion = $row['descripcion'];
$this->_fecha = $row['fecha'];
$this->_categoria = $row['categoria'];
$this->_id_accion = $row['id_accion'];
$this->_id_area = $row['id_area'];
$this->_id_destino = $row['id_destino'];
$this->_aprobacion = $row['aprobacion'];
}
}
}
示例13: TieneRegistroArchivo
function TieneRegistroArchivo($id_documento)
{
$sql = "SELECT\r\n\t\t\tda.id_documento_archivo\r\n\t\t\tFROM\r\n\t\t\tarch_documento_archivo AS da\r\n\t\t\tWHERE\r\n\t\t\tda.id_documento = '{$id_documento}'";
$query = new Consulta($sql);
if ($query->NumeroRegistros() > 0) {
return true;
} else {
return false;
}
}
示例14: copiaArchivadaUsuario
function copiaArchivadaUsuario()
{
$sql_arch = "SELECT\r\n\t\t\t\t\t a.id_documento\r\n\t\t\t\t\t FROM\r\n\t\t\t\t\t archivo_copia AS a\r\n\t\t\t\t\t WHERE\r\n\t\t\t\t\t a.id_documento = " . $this->_id . " AND\r\n\t\t\t\t\t a.id_area_duenia = " . $_SESSION['session'][5] . " AND\r\n\t\t\t\t\t a.id_usuario_duenio = " . $_SESSION['session'][0];
$query_arch = new Consulta($sql_arch);
if ($query_arch->NumeroRegistros() > 0) {
return true;
}
return false;
}
示例15: AccionesDetalle
function AccionesDetalle($ida)
{
$sql_areas = "Select * from categoria where display = 1 order by descripcion";
$query_areas = new Consulta($sql_areas);
?>
<form id="form_detalle_accion" name="form_detalle_accion" method="post" action="<?php
echo $_SERVER['PHP_SELF'];
?>
?opcion=addDetailAccion&id=<?php
echo $ida;
?>
">
<table width="55%" height="80" border="1" align="center">
<tr bgcolor="#6699CC">
<td width="90%"><div align="center">Nombre Categoria </div></td>
<td><div align="center">Activar</div></td>
</tr>
<?php
while ($row_areas = $query_areas->ConsultaVerRegistro()) {
$id = $row_areas["id_categoria"];
?>
<tr>
<td><div align="left">
<?php
echo $row_areas["descripcion"];
?>
</div></td>
<td width="93"><div align="center">
<?php
$sql_a_a = "select *\r\n from accion_categoria\r\n where id_accion = {$ida}\r\n and id_categoria = {$id}";
$query_a_a = new Consulta($sql_a_a);
$n = $query_a_a->NumeroRegistros();
?>
<input type="checkbox" name="opcion[]" value="<?php
echo $id;
?>
" <?php
if ($n == 1) {
echo "checked = checked";
}
?>
/>
</div></td>
</tr>
<?php
}
?>
<tr>
<td height="23" colspan="3"><div align="center">
<input type="submit" name="guardar" value="Guardar" class="boton" />
<input class="boton" type="reset" name="cancelar" value="Cancelar" onclick="javascript:window.history.go(-1)"/>
</div></td>
</tr>
</table>
</form>
<?php
}