本文整理汇总了PHP中usuario::obtenerNombre方法的典型用法代码示例。如果您正苦于以下问题:PHP usuario::obtenerNombre方法的具体用法?PHP usuario::obtenerNombre怎么用?PHP usuario::obtenerNombre使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类usuario
的用法示例。
在下文中一共展示了usuario::obtenerNombre方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: verRpteExcel
function verRpteExcel()
{
$id = VAR3;
$where = "";
$tab_extransferencia = new tab_exptransferencia();
$result = $tab_extransferencia->dbSelectBySQL("select* from tab_exptransferencia where str_id={$id}");
$cantidad = count($result);
$valor3 = "";
$t = 1;
foreach ($result as $row) {
$valor3 .= "tab_expediente.exp_id={$row->exp_id}";
if ($t < $cantidad) {
$valor3 .= " or ";
}
$t++;
}
$where .= " AND {$valor3} ";
$sql = "SELECT\r\n f.fon_codigo,\r\n f.fon_cod,\r\n (SELECT fon_codigo from tab_fondo WHERE fon_id=f.fon_par) ||'.'|| f.fon_codigo ||'.'||tab_unidad.uni_cod ||'.'|| tab_tipocorr.tco_codigo ||'.'||tab_series.ser_codigo||'.'||\r\n tab_expediente.exp_codigo AS codigo,\r\n (NULLIF(tab_expediente.exp_codigo,'')::int) as cantidad,\r\n tab_soltransferencia.str_id,\r\n tab_soltransferencia.str_fecha,\r\n tab_soltransferencia.uni_id,\r\n tab_soltransferencia.unid_id,\r\n tab_soltransferencia.str_nrocajas,\r\n tab_soltransferencia.str_totpzas,\r\n tab_soltransferencia.str_totml,\r\n tab_soltransferencia.str_nroreg,\r\n tab_soltransferencia.str_fecini,\r\n tab_soltransferencia.str_fecfin,\r\n tab_soltransferencia.str_estado,\r\n tab_soltransferencia.usu_id,\r\n tab_soltransferencia.usud_id,\r\n tab_soltransferencia.str_direccion,\r\n tab_soltransferencia.str_telefono,\r\n tab_expisadg.exp_fecha_exi,\r\n tab_expisadg.exp_fecha_exf,\r\n tab_expisadg.exp_anioi,\r\n tab_expisadg.exp_aniof,\r\n tab_expisadg.exp_titulo,\r\n tab_series.ser_codigo,\r\n tab_unidad.uni_codigo,\r\n tab_unidad.uni_id,\r\n tab_unidad.uni_par,\r\n tab_unidad.uni_cod,\r\n tab_unidad.uni_descripcion,\r\n f.fon_cod,\r\n tab_series.ser_categoria,\r\n tab_expisadg.exp_titulo,\r\n tab_expediente.exp_obs,\r\n tab_series.ser_id,\r\n tab_series.ser_par,\r\n tab_expediente.exp_id\r\n FROM\r\n tab_unidad\r\n INNER JOIN tab_fondo as f ON tab_unidad.fon_id = f.fon_id\r\n INNER JOIN tab_series ON tab_series.uni_id = tab_unidad.uni_id\r\n INNER JOIN tab_expediente ON tab_expediente.ser_id = tab_series.ser_id\r\n INNER JOIN tab_expisadg ON tab_expisadg.exp_id = tab_expediente.exp_id\r\n INNER JOIN tab_exptransferencia ON tab_expediente.exp_id = tab_exptransferencia.exp_id\r\n INNER JOIN tab_soltransferencia ON tab_soltransferencia.str_id = tab_exptransferencia.str_id\r\n INNER JOIN tab_tipocorr ON tab_tipocorr.tco_id = tab_series.tco_id\r\n WHERE\r\n tab_soltransferencia.str_estado = 2 AND\r\n tab_expediente.exp_estado = 1 {$where} order by tab_expediente.exp_id ";
$usua = new usuario();
$subfondo = new fondo();
$seccion = new unidad();
$expedientes = new expediente();
$archivo = new tab_archivo();
$archivo2 = new tab_archivo();
$query = $archivo->dbSelectBySQL($sql);
$query2 = $archivo2->dbSelectBySQL($sql);
foreach ($query2 as $ids) {
$usu_id = $ids->usu_id;
$uni_id = $ids->uni_id;
$uni_par = $ids->uni_par;
$uni_cod = $ids->uni_cod;
$str_telefono = $ids->str_telefono;
$str_id = $ids->str_id;
$str_fecha = $ids->str_fecha;
$str_direccion = $ids->str_direccion;
$uni_descripcion = $ids->uni_descripcion;
}
$usuarioOrigen = $usua->obtenerNombre($usu_id);
$usuarioDestino = $usua->obtenerNombre($usu_id);
$fond = $subfondo->obtenerfon($usu_id);
$ob_seccion = $seccion->obtenerSeccion($uni_id);
$cadena = "";
$cadena = "<br/><br/><br/><br/><br/><br/><br/>";
$cadena .= '<table width="740" border="1">';
$cadena .= '<tr>';
$cadena .= '<td colspan="10" align="center" ><b>';
$cadena .= 'FORMULARIO DE RELACION DE TRANSFERENCIAS</b><br /></td>';
$cadena .= '</tr>';
$cadena .= '<tr>';
$cadena .= '<td colspan="9" align="right" style=border:none ><b>';
$cadena .= 'Nº de transferencia:</b></td><td align="center">' . $str_id . '</td>';
$cadena .= '</tr>';
// $cadena.='<tr>';
// $cadena.='<td colspan="10" align="right" ><b>';
// $cadena.='<b>Nº de transferencia:</b> '.$str_id.'</td>';
// $cadena.='</tr>';
$cadena .= '<tr>';
$cadena .= '<td colspan="5"><blockquote>';
$cadena .= '<b>Subfondo:</b> ' . $fond . '<br />';
$cadena .= '<b>Sección:</b> ';
$explode = explode(".", $uni_cod);
$contado = count($explode);
$codigo = "";
for ($t = 0; $t < $contado - 1; $t++) {
$codigo .= $explode[$t];
if ($t < $contado - 2) {
$codigo .= ".";
}
}
$codigo2 = $codigo;
if (strlen($codigo) == 1) {
$codigo = $codigo . ".0";
} else {
$estraer_codigo = explode(".", $codigo);
$codigo = $estraer_codigo[0] . ".0";
}
$tab_unidad = new Tab_unidad();
$unidad = new unidad();
$sqlUni2 = "SELECT\r\n tab_unidad.uni_descripcion\r\n FROM\r\n tab_unidad\r\n WHERE\r\n tab_unidad.uni_cod = '{$codigo}'";
$codigoss = explode(".", $codigo2);
$cantcodigo2 = count($codigoss);
if ($cantcodigo2 == 1) {
$codigo2 = "{$codigo2}.1";
}
$sqlUni1 = "SELECT\r\n tab_unidad.uni_descripcion\r\n FROM\r\n tab_unidad\r\n WHERE\r\n tab_unidad.uni_cod = '{$codigo2}'";
$resultadott = $tab_unidad->dbSelectBySQL($sqlUni2);
$resultadott1 = $tab_unidad->dbSelectBySQL($sqlUni1);
$ca1 = "";
foreach ($resultadott1 as $rowss2) {
$ca1 = $rowss2->uni_descripcion;
}
foreach ($resultadott as $rowss) {
$ca = $rowss->uni_descripcion;
}
$variable = $ca;
$excluirparent = explode("(", $variable);
if ($excluirparent[1] == "") {
$ca = $ca;
} else {
$excluirultimoparent = $excluirparent[1] . "x";
//.........这里部分代码省略.........
示例2: verRpteExcel
function verRpteExcel()
{
header("Content-type: application/vnd.ms-excel; name='excel'");
header("Content-Disposition: filename=transferencia_expedientes.xls");
header("Pragma: no-cache");
header("Expires: 0");
$id = VAR3;
$where = "";
$tab_extransferencia = new tab_exptransferencia();
$result = $tab_extransferencia->dbSelectBySQL("select* from tab_exptransferencia where str_id={$id}");
$cantidad = count($result);
$valor3 = "";
$t = 1;
foreach ($result as $row) {
$valor3 .= "tab_expediente.exp_id={$row->exp_id}";
if ($t < $cantidad) {
$valor3 .= " or ";
}
$t++;
}
$where .= " AND {$valor3} ";
$sql = "SELECT\r\n f.fon_codigo,\r\n f.fon_cod,\r\n (SELECT fon_codigo from tab_fondo WHERE fon_id=f.fon_par) ||'.'|| f.fon_codigo ||'.'||tab_unidad.uni_cod ||'.'|| tab_tipocorr.tco_codigo ||'.'||tab_series.ser_codigo||'.'||\r\n tab_expediente.exp_codigo AS codigo,\r\n (NULLIF(tab_expediente.exp_codigo,'')::int) as cantidad,\r\n tab_soltransferencia.str_id,\r\n tab_soltransferencia.str_fecha,\r\n tab_soltransferencia.uni_id,\r\n tab_soltransferencia.unid_id,\r\n tab_soltransferencia.str_nrocajas,\r\n tab_soltransferencia.str_totpzas,\r\n tab_soltransferencia.str_totml,\r\n tab_soltransferencia.str_nroreg,\r\n tab_soltransferencia.str_fecini,\r\n tab_soltransferencia.str_fecfin,\r\n tab_soltransferencia.str_estado,\r\n tab_soltransferencia.usu_id,\r\n tab_soltransferencia.usud_id,\r\n tab_soltransferencia.str_direccion,\r\n tab_soltransferencia.str_telefono,\r\n tab_expisadg.exp_fecha_exi,\r\n tab_expisadg.exp_fecha_exf,\r\n tab_expisadg.exp_anioi,\r\n tab_expisadg.exp_aniof,\r\n tab_expisadg.exp_titulo,\r\n tab_series.ser_codigo,\r\n tab_unidad.uni_codigo,\r\n tab_unidad.uni_id,\r\n tab_unidad.uni_par,\r\n tab_unidad.uni_cod,\r\n tab_unidad.uni_descripcion,\r\n f.fon_cod,\r\n tab_series.ser_categoria,\r\n tab_expisadg.exp_titulo,\r\n tab_expediente.exp_obs,\r\n tab_series.ser_id,\r\n tab_series.ser_par,\r\n tab_expediente.exp_id\r\n FROM\r\n tab_unidad\r\n INNER JOIN tab_fondo as f ON tab_unidad.fon_id = f.fon_id\r\n INNER JOIN tab_series ON tab_series.uni_id = tab_unidad.uni_id\r\n INNER JOIN tab_expediente ON tab_expediente.ser_id = tab_series.ser_id\r\n INNER JOIN tab_expisadg ON tab_expisadg.exp_id = tab_expediente.exp_id\r\n INNER JOIN tab_exptransferencia ON tab_expediente.exp_id = tab_exptransferencia.exp_id\r\n INNER JOIN tab_soltransferencia ON tab_soltransferencia.str_id = tab_exptransferencia.str_id\r\n INNER JOIN tab_tipocorr ON tab_tipocorr.tco_id = tab_series.tco_id\r\n WHERE\r\n tab_soltransferencia.str_estado = 2 \r\n AND tab_expediente.exp_estado = 1 \r\n {$where} \r\n ORDER BY f.fon_cod,\r\n tab_unidad.uni_cod,\r\n tab_series.ser_orden, \r\n tab_series.ser_codigo, \r\n tab_expediente.exp_codigo::int ";
$usua = new usuario();
$subfondo = new fondo();
$seccion = new unidad();
$expedientes = new expediente();
$archivo = new tab_archivo();
$archivo2 = new tab_archivo();
$query = $archivo->dbSelectBySQL($sql);
$query2 = $archivo2->dbSelectBySQL($sql);
$usu_id = "";
$usud_id = "";
$uni_id = "";
foreach ($query2 as $ids) {
$usu_id = $ids->usu_id;
$usud_id = $ids->usud_id;
$uni_id = $ids->uni_id;
$uni_par = $ids->uni_par;
$uni_cod = $ids->uni_cod;
$str_telefono = $ids->str_telefono;
$str_id = $ids->str_id;
$str_fecha = $ids->str_fecha;
$str_direccion = $ids->str_direccion;
$uni_descripcion = $ids->uni_descripcion;
}
$usuarioOrigen = $usua->obtenerNombre($usu_id);
$usuarioDestino = $usua->obtenerNombre($usud_id);
$fond = $subfondo->obtenerfon($usu_id);
$ob_seccion = $seccion->obtenerSeccion($uni_id);
$cadena = "";
$cadena .= '<table width="740" border="1">';
$cadena .= '<tr>';
$cadena .= '<td colspan="10" align="center" ><b>';
$cadena .= 'FORMULARIO DE RELACION DE TRANSFERENCIAS</b><br /></td>';
$cadena .= '</tr>';
$cadena .= '<tr>';
$cadena .= '<td colspan="9" align="right" style=border:none ><b>';
$cadena .= 'Nro. de transferencia:</b></td><td align="center">' . $str_id . '</td>';
$cadena .= '</tr>';
$cadena .= '<tr>';
$cadena .= '<td colspan="5">';
$cadena .= '<b>Subfondo:</b> ' . $fond . '<br />';
$cadena .= '<b>Sección:</b> ';
$explode = explode(".", $uni_cod);
$contado = count($explode);
$codigo = "";
for ($t = 0; $t < $contado - 1; $t++) {
$codigo .= $explode[$t];
if ($t < $contado - 2) {
$codigo .= ".";
}
}
$codigo2 = $codigo;
if (strlen($codigo) == 1) {
$codigo = $codigo . ".0";
} else {
$estraer_codigo = explode(".", $codigo);
$codigo = $estraer_codigo[0] . ".0";
}
$tab_unidad = new Tab_unidad();
$unidad = new unidad();
$sqlUni2 = "SELECT\r\n tab_unidad.uni_descripcion\r\n FROM\r\n tab_unidad\r\n WHERE\r\n tab_unidad.uni_cod = '{$codigo}'";
$codigoss = explode(".", $codigo2);
$cantcodigo2 = count($codigoss);
if ($cantcodigo2 == 1) {
$codigo2 = "{$codigo2}.1";
}
$sqlUni1 = "SELECT\r\n tab_unidad.uni_descripcion\r\n FROM\r\n tab_unidad\r\n WHERE\r\n tab_unidad.uni_cod = '{$codigo2}'";
$resultadott = $tab_unidad->dbSelectBySQL($sqlUni2);
$resultadott1 = $tab_unidad->dbSelectBySQL($sqlUni1);
$ca1 = "";
foreach ($resultadott1 as $rowss2) {
$ca1 = $rowss2->uni_descripcion;
}
foreach ($resultadott as $rowss) {
$ca = $rowss->uni_descripcion;
}
$variable = $ca;
$excluirparent = explode("(", $variable);
if ($excluirparent[1] == "") {
//.........这里部分代码省略.........
示例3: viewPaquetesBACK
//.........这里部分代码省略.........
$st .= '<td colspan="2" height="20" bgcolor="#CCCCCC" style="font-size:40px" width="232">FECHAS EXTREMAS:</td>';
$st .= '<td colspan="9" bgcolor="#CCCCCC" width="420" style="font-size:40px">CODIGOS:</td>';
$st .= '</tr>';
$st .= '<tr>';
$st .= '<td colspan="2" height="20" style="font-size:45px"><b>' . $value->exp_anioi . "-" . $value->exp_aniof . '</b></td>';
$st .= '<th colspan="9" rowspan="3" style="text-align:left;font-size:45px;padding:15px">';
$sqlcodigos = "SELECT\r\n tab_fondo.fon_cod,\r\n u.uni_cod,\r\n tab_tipocorr.tco_codigo,\r\n tab_series.ser_codigo,\r\n tab_expediente.exp_codigo,\r\n (SELECT uni_descripcion from tab_unidad WHERE tab_unidad.uni_id=u.uni_par) AS uni_par_cod,\r\n u.uni_codigo,\r\n (SELECT sof_nombre FROM tab_sopfisico WHERE sof_id=tab_expediente.sof_id AND tab_sopfisico.sof_estado = '1' ) AS sof_nombre\r\n FROM\r\n tab_fondo\r\n INNER JOIN tab_unidad AS u ON tab_fondo.fon_id = u.fon_id\r\n INNER JOIN tab_series ON u.uni_id = tab_series.uni_id\r\n INNER JOIN tab_tipocorr ON tab_tipocorr.tco_id = tab_series.tco_id\r\n INNER JOIN tab_expediente ON tab_series.ser_id = tab_expediente.ser_id\r\n WHERE\r\n tab_fondo.fon_estado = 1 AND\r\n u.uni_estado = 1 AND\r\n tab_tipocorr.tco_estado = 1 AND\r\n tab_series.ser_estado = 1 AND\r\n tab_expediente.exp_estado = 1 AND\r\n tab_expediente.exp_id ='" . $_REQUEST['exp_id'] . "'";
$idexp = $_REQUEST['exp_id'];
$sqlarchivo = "SELECT fil_nro,fil_fot FROM\r\n tab_expediente\r\n INNER JOIN tab_exparchivo ON tab_exparchivo.exp_id = tab_expediente.exp_id\r\n INNER JOIN tab_archivo ON tab_archivo.fil_id = tab_exparchivo.fil_id\r\n WHERE\r\n tab_expediente.exp_id = {$idexp} AND\r\n tab_archivo.fil_nropaq = '{$i}' AND\r\n tab_expediente.exp_estado = 1 ORDER BY fil_nro";
$cod_fil_nro = $expe->dbSelectBySQL($sqlarchivo);
$codigoDocument = $fondo2->dbSelectBySQL($sqlcodigos);
$codigoDocument = $codigoDocument[0];
$cant1 = 0;
$codigo_paquetes = $codigoDocument->fon_cod . DELIMITER . $codigoDocument->uni_cod . DELIMITER . $codigoDocument->tco_codigo . DELIMITER . $codigoDocument->ser_codigo . DELIMITER . $codigoDocument->exp_codigo;
foreach ($cod_fil_nro as $filnro) {
$st .= $codigo_paquetes . DELIMITER . $filnro->fil_nro;
$st .= " (" . $filnro->fil_fot . ")";
$cant1 = $cant1 + $filnro->fil_fot;
$st .= "<br>";
}
$st .= '</th>';
$st .= '</tr>';
$cant = $cant1;
$st .= '<tr>';
$st .= '<td colspan="4" height="20" bgcolor="#CCCCCC" width="232">NRO. DE PAQUETE</td>';
// $st.='<td colspan="7" bgcolor="#CCCCCC" >ML</td>';
$st .= '</tr>';
//width="420"
$st .= '<tr>';
$st .= '<td height="20" colspan="4" rowspan="3" style="font-size:190px">' . $i . '</td>';
// $st.='<td colspan="7" height="20" style="font-size:70px" >0,32</td>';
$st .= '</tr>';
$st .= '<tr>';
$st .= '<td colspan="5" bgcolor="#CCCCCC" height="20" width="218">NRO. DE PIEZAS</td>';
$st .= '<td colspan="2" bgcolor="#CCCCCC" width="201">Nº DE TRANSFERENCIA</td>';
$st .= '</tr>';
$st .= '<tr>';
$st .= '<td colspan="5" height="20" style="font-size:60px"><b>' . $cant . '</b></td>';
if ($strid == "") {
$st .= '<td colspan="2"></td>';
} else {
$st .= '<td colspan="2">' . $strid . '</td>';
}
$st .= '</tr>';
$st .= '<tr>';
$st .= '<td colspan="4" bgcolor="#CCCCCC" height="20" width="232">UBICACIÓN TOPOGRAFICA:</td>';
$st .= '<td colspan="5" bgcolor="#CCCCCC" height="20" width="218">FECHA DE TRANSFERENCIA DOCUMENTAL</td>';
$st .= '<td colspan="2" bgcolor="#CCCCCC" width="201">ELABORADO POR:</td>';
$st .= '</tr>';
$st .= '<tr>';
$st .= '<td height="20" bgcolor="#CCCCCC">SALA</td>';
$st .= '<td height="20" bgcolor="#CCCCCC">ESTANTE</td>';
$st .= '<td height="20" bgcolor="#CCCCCC">BALDA</td>';
$st .= '<td height="20" bgcolor="#CCCCCC">CUERPO</td>';
$st .= '<td colspan="5" rowspan="2">';
if ($strfecha != "") {
$fechastr = explode("-", $strfecha);
$fett = $fechastr[2] . '-' . $fechastr[1] . '-' . $fechastr[0];
$st .= $fett;
}
$st .= '</td>';
$st .= '<td colspan="2" rowspan="2">' . $usuario->obtenerNombre($_SESSION['USU_ID']) . '</td>';
$st .= '</tr>';
$st .= '<tr>';
$st .= '<td height="20" style="font-size:35px"></td>';
$st .= '<td height="20" style="font-size:35px"></td>';
$st .= '<td height="20" style="font-size:35px"></td>';
$st .= '<td height="20" style="font-size:35px"></td>';
$sala = "";
$estante = "";
$balda = "";
$cuerpo = "";
$st .= '</tr>';
/*
$st.='<tr>';
$st.='<td height="20">' . $value->exp_sala . '</td>';
$st.='<td>' . $value->exp_estante . '</td>';
$st.='<td>' . $value->exp_cuerpo . '</td>';
$st.='<td>' . $value->exp_balda . '</td>';
$st.='<td colspan="5"></td>';
$st.='<td colspan="2"></td>';
$st.='</tr>';
*/
$st .= '</table>';
$st .= '</td>';
$st .= '</tr>';
$st .= '</table>';
$st .= '';
//EOD;
}
$pdf->writeHTML($st, true, false, false, false, '');
$st = "";
}
// -----------------------------------------------------------------------------
//Close and output PDF document
$pdf->Output('reporte_paquetes.pdf', 'I');
//============================================================+
// END OF FILE
//============================================================+
}
示例4: Migrar
//.........这里部分代码省略.........
$expisadg->setExp_fecha_exf($fechahoy);
// $expisadg->setExp_mesf('');
$expisadg->setExp_aniof($fechafinal);
$expisadg->setExp_nivdes('EXPEDIENTE');
// $expisadg->setExp_volsop('');
$expisadg->setExp_nomprod($fondo);
// $expisadg->setExp_hisins('');
// $expisadg->setExp_hisarc('');
$expisadg->setExp_foring('TRANSFERENCIA');
// $expisadg->setExp_alccon('');
// $expisadg->setExp_vaseel('');
// $expisadg->setExp_nueing('');
$expisadg->setExp_org('LOS DOCUMENTOS DEL PROYECTO FUERON IDENTIFICADOS, CLASIFICADOS Y ORDENADOS EN LAS CAJAS DE ACUERDO AL CHECK LIST DE LA SERIE A LA QUE CORRESPONDEN.');
$expisadg->setExp_conacc('EL ACCESO ESTA SUJETO A LO QUE ESTABLECE LA CONSTITUCION POLITICA DEL ESTADO Y EL ARTICULO 18 DE LA LEY 2341 SOBRE PROCESOS ADMINISTRATIVOS.');
// $expisadg->setExp_conrep('');
$expisadg->setIdi_id(1);
$expisadg->setExp_carfis('BUENO');
// $expisadg->setExp_insdes('');
// $expisadg->setExp_exloor('');
// $expisadg->setExp_exloco('');
// $expisadg->setExp_underel('');
// $expisadg->setExp_notpub('');
// $expisadg->setExp_notas('');
// $expisadg->setExp_notarc('');
$expisadg->setExp_regnor('ISAD-G, ISAAR(CPF), RCAA');
$expisadg->setExp_fecdes(date('Y-m-d'));
$expisadg->setExp_estado(1);
$eig_id = $expisadg->insert();
// Save expfondo data
$texf = new Tab_expfondo();
$texf->setExp_id($exp_id);
$usuario = new usuario();
$fon_id = $usuario->getFon_id($_SESSION['USU_ID']);
$nomUsuario = $usuario->obtenerNombre($_SESSION['USU_ID']);
$texf->setExf_fecha_exi($fechahoy);
$texf->setFon_id($fon_id);
$texf->setExf_estado('1');
$texf->insert();
// Save expusuario data
$this->expusuario = new expusuario();
$this->expusuario->saveExp($exp_id, $_SESSION['USU_ID']);
// // Save expcontenedor data
// $con = new expcontenedor();
// $con->saveExpCont($_REQUEST['con_id'], $_REQUEST['suc_id'], $exp_id);
// // Save proyecto list data (tramos)
// if (isset($_REQUEST['lista_tramo'])) {
// $proyectos = $_REQUEST['lista_tramo'];
// foreach ($proyectos as $proyecto) {
// $exp = new tab_expproyecto();
// $exp->setExp_id($exp_id);
// $exp->setPry_id($proyecto);
// $exp->setEpp_estado(1);
// $exp->insert();
// }
// }
// Save data dynamic
$c = 0;
$caj = "";
$cnt = 0;
//insert usuario serie
$tab_usu_serie = new Tab_usu_serie();
$sqlususerie = "select* from tab_usu_serie\r\n where usu_id='" . $_SESSION['USU_ID'] . "'\r\n and ser_id='" . $id_serie . "'\r\n and use_estado=1";
$comprobar_usu_serie = $tab_usu_serie->dbSelectBySQL($sqlususerie);
$cnt = count($comprobar_usu_serie);
if ($cnt == 0) {
$tab_usu_serie->setUse_id('');
示例5: VerRTransferencia
function VerRTransferencia()
{
$filtro_serie = $_REQUEST['filtro_serie'];
$filtro_unidad = $_REQUEST['filtro_unidad'];
$filtro_funcionario = $_REQUEST['filtro_funcionario'];
$f_prestdesde = $_REQUEST['f_prestdesde'];
$f_presthasta = $_REQUEST['f_presthasta'];
$where = "";
$tab_extransferencia = new tab_exptransferencia();
$result = $tab_extransferencia->dbSelectBySQL("select DISTINCT(exp_id) from tab_exptransferencia");
$cantidad = count($result);
$valor3 = "";
$t = 1;
foreach ($result as $row) {
$valor3 .= "tab_expediente.exp_id={$row->exp_id}";
if ($t < $cantidad) {
$valor3 .= " or ";
}
$t++;
}
$where .= " AND {$valor3} ";
if ($filtro_serie != "") {
$where .= " AND tab_series.ser_id=" . $filtro_serie;
}
if ($filtro_unidad != "") {
$where .= " AND tab_soltransferencia.uni_id=" . $filtro_unidad;
}
if ($filtro_funcionario != "") {
$where .= " AND tab_soltransferencia.usu_id=" . $filtro_funcionario;
}
$sql = "SELECT\r\ntab_fondo.fon_codigo,\r\ntab_expediente.exp_codigo,\r\ntab_soltransferencia.str_id,\r\ntab_soltransferencia.str_fecha,\r\ntab_soltransferencia.uni_id,\r\ntab_soltransferencia.unid_id,\r\ntab_soltransferencia.str_nrocajas,\r\ntab_soltransferencia.str_totpzas,\r\ntab_soltransferencia.str_totml,\r\ntab_soltransferencia.str_nroreg,\r\ntab_soltransferencia.str_fecini,\r\ntab_soltransferencia.str_fecfin,\r\ntab_soltransferencia.str_estado,\r\ntab_soltransferencia.usu_id,\r\ntab_soltransferencia.usud_id,\r\ntab_soltransferencia.str_direccion,\r\ntab_soltransferencia.str_telefono,\r\ntab_expisadg.exp_fecha_exi,\r\ntab_expisadg.exp_fecha_exf,\r\ntab_series.ser_codigo,\r\ntab_unidad.uni_codigo,\r\ntab_fondo.fon_cod,\r\ntab_series.ser_categoria,\r\ntab_expisadg.exp_titulo,\r\ntab_expediente.exp_obs,\r\ntab_series.ser_id,\r\ntab_series.ser_par,\r\ntab_expediente.exp_id\r\nFROM\r\ntab_unidad\r\nINNER JOIN tab_fondo ON tab_unidad.fon_id = tab_fondo.fon_id\r\nINNER JOIN tab_series ON tab_series.uni_id = tab_unidad.uni_id\r\nINNER JOIN tab_expediente ON tab_expediente.ser_id = tab_series.ser_id\r\nINNER JOIN tab_expisadg ON tab_expisadg.exp_id = tab_expediente.exp_id\r\nINNER JOIN tab_exptransferencia ON tab_expediente.exp_id = tab_exptransferencia.exp_id\r\nINNER JOIN tab_soltransferencia ON tab_soltransferencia.str_id = tab_exptransferencia.str_id\r\nWHERE\r\ntab_soltransferencia.str_estado = 2 AND\r\ntab_expediente.exp_estado = 1 " . $where . " ORDER BY tab_soltransferencia.str_id";
$usua = new usuario();
$subfondo = new fondo();
$seccion = new unidad();
$expedientes = new expediente();
$archivo = new tab_archivo();
$archivo2 = new tab_archivo();
$query = $archivo->dbSelectBySQL($sql);
$query2 = $archivo2->dbSelectBySQL($sql);
$query2 = $query2[0];
$usuarioOrigen = $usua->obtenerNombre($query2->usu_id);
$usuarioDestino = $usua->obtenerNombre($query2->usud_id);
$fond = $subfondo->obtenerfon($query2->usu_id);
$cadena = "";
$cadena = "<br/><br/><br/><br/><br/><br/><br/>";
$cadena .= '<b>Cuadro 8. Formulario Normalizado de Transferencias</b>';
$cadena .= '<br/><br/>';
$cadena .= '<table width="740" border="1">';
$cadena .= '<tr>';
$cadena .= '<td colspan="10" align="center"><b>ADMINISTRADORA BOLIVIANA DE CARRETERAS</b><br />';
$cadena .= 'Formulario de Relacion de Transferencias<br /></td>';
$cadena .= '</tr></table>';
$i = 1;
foreach ($query as $row) {
$tabserie = new tab_series();
$cadena .= '<table border="1" width="740"><tr>';
$cadena .= '<td colspan="5"><blockquote>';
$cadena .= '<b>Subfondo:</b> ' . $fond . '<br />';
$cadena .= '<b>Sección:</b> ';
$ob_seccion = $seccion->obtenerSeccion($row->usu_id);
if ($ob_seccion->tab_sec == "") {
$cadena .= $ob_seccion->uni_descripcion . '<br />';
} else {
$cadena .= $ob_seccion->tab_sec . '<br />';
}
$cadena .= '<b>Subsección:</b> ';
if ($ob_seccion->tab_sec != "") {
$cadena .= $ob_seccion->uni_descripcion;
}
$cadena .= '</blockquote></td>';
$cadena .= '<td colspan="5" ><blockquote><b>Nº de transferencia:</b> ' . $row->str_id;
$cadena .= '<br /><b>Dirección y Teléfono:</b> ' . $row->str_direccion . ' ' . $row->str_telefono . '</blockquote></td>';
$cadena .= '</tr>';
$cadena .= '<tr>';
$cadena .= '<td width="20" rowspan="2" align="center"><strong>Nº</strong></td>';
$cadena .= '<td width="140" rowspan="2"><strong>Serie</strong></td>';
$cadena .= '<td width="120" rowspan="2"><strong>Subserie</strong></td>';
$cadena .= '<td width="80" rowspan="2"><strong>Código de Referencia</strong></td>';
$cadena .= '<td colspan="2" width="130"><strong>Fechas extremas</strong></td>';
$cadena .= '<td width="30" rowspan="2"><strong>Nº Piezas Docum.</strong></td>';
$cadena .= '<td width="30" rowspan="2"><strong>Cajas</strong></td>';
$cadena .= '<td width="30" rowspan="2"><strong>M.L.</strong></td>';
$cadena .= '<td width="160" rowspan="2"><p><strong>Observ.</strong></p></td>';
$cadena .= '</tr>';
$cadena .= '<tr>';
$cadena .= '<td width="65"><strong>Inicio</strong></td>';
$cadena .= '<td width="65"><strong>Final</strong></td>';
$cadena .= '</tr>';
$sum = 0;
$sum2 = 0;
if ($row->exp_fecha_exi == "") {
$fei = "";
} else {
$fechainicial = explode("-", $row->exp_fecha_exi);
$fei = $fechainicial[2] . "/" . $fechainicial[1] . "/" . $fechainicial[0];
}
if ($row->exp_fecha_exf == "") {
$fef = "";
} else {
$fechafinal = explode("-", $row->exp_fecha_exf);
//.........这里部分代码省略.........
示例6: view
function view()
{
$usuario = new usuario();
$this->registry->template->usur_id = $usuario->obtenerNombre($_SESSION['USU_ID']);
$this->registry->template->usu_id = $usuario->obtenerSelect();
$this->registry->template->usua_id = $usuario->obtenerSelectAdmin();
$this->registry->template->spr_fecent = date('Y-m-d');
$this->registry->template->spr_fecdev = date('Y-m-d');
$tmenu = new menu();
$liMenu = $tmenu->imprimirMenu("solprestamo", $_SESSION['USU_ID']);
$this->registry->template->men_titulo = $liMenu;
$this->registry->template->UNI_ID = $_SESSION['UNI_ID'];
$this->registry->template->PATH_WEB = PATH_WEB;
$this->registry->template->PATH_DOMAIN = PATH_DOMAIN;
$this->registry->template->PATH_EVENT = "search";
$this->registry->template->GRID_SW = "false";
$this->registry->template->PATH_J = "jquery-1.4.1";
$this->registry->template->PATH_EVENT_LISTA = "guardarLista";
$this->registry->template->show('headerG');
$this->registry->template->show('prestamos/tab_solprestamos.tpl');
$this->registry->template->show('footer');
}
示例7: printDocumentosExpediente
function printDocumentosExpediente()
{
$where = "";
$usuario = new usuario();
// PDF
require_once 'tcpdf/config/lang/eng.php';
require_once 'tcpdf/tcpdf.php';
$pdf = new TCPDF('L', PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$pdf->SetCreator(PDF_CREATOR);
$pdf->setFontSubsetting(FALSE);
$pdf->SetAuthor($usuario->obtenerNombre($_SESSION['USU_ID']));
$pdf->SetTitle('Listado de Documentos de Expediente');
$pdf->SetSubject('Listado de Documentos de Expediente');
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
// aumentado
$pdf->SetKeywords('Castellon, SISTEMA DE PASAJES Y VIÁTICOS');
// set default header data
$pdf->SetHeaderData('logo2.png', 20, 'MPD', 'Administradora Boliviana de Carreteras');
// set header and footer fonts
$pdf->setHeaderFont(array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
$pdf->setFooterFont(array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
//
$pdf->SetMargins(10, 30, 10);
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
// $pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
//set auto page breaks
$pdf->SetAutoPageBreak(TRUE, 15);
// $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
$pdf->SetFont('helvetica', '', 10);
// add a page
$pdf->AddPage();
// Report
$pdf->Image(PATH_ROOT . '/web/img/iso.png', '255', '8', 15, 15, 'PNG', '', 'T', false, 300, '', false, false, 1, false, false, false);
$cadena = "<br/><br/><br/><br/><br/><br/>";
$cadena .= '<table width="780" border="0" >';
$cadena .= '<tr><td align="center">';
$cadena .= '<span style="font-size: 30px;font-weight: bold;">';
$cadena .= 'Reporte Documentos del Expediente';
$cadena .= '</span>';
$cadena .= '</td></tr></table><br/>';
// Parameters
$exp_id = VAR3;
$this->usuario = new Tab_usuario();
$this->tramite = new tab_tramite();
$this->expediente = new tab_expediente();
$this->cuerpos = new tab_cuerpos();
$row_usu = $this->usuario->dbselectByField("usu_id", $_SESSION['USU_ID']);
$this->usuario = $row_usu[0];
$row = $this->expediente->dbselectByField("exp_id", $exp_id);
if (is_null($row)) {
$cadena .= '<table>';
$cadena .= "<tr>NO EXISTEN TIPOS DOCUMENTALES PARA EL EXPEDIENTE</tr>";
$cadena .= '</table>';
} else {
$sql = "SELECT \r\n (SELECT fon_codigo from tab_fondo WHERE fon_id=f.fon_par) ||'.'|| f.fon_codigo ||'.'||tab_unidad.uni_cod ||'.'|| tab_tipocorr.tco_codigo ||'.'||tab_series.ser_codigo||'.'||\r\n tab_expediente.exp_codigo||'.'||tab_archivo.fil_nro as codigo,\r\n (SELECT fon_codigo from tab_fondo WHERE fon_id=f.fon_par) ||'.'|| f.fon_codigo ||'.'||tab_unidad.uni_cod ||'.'|| tab_tipocorr.tco_codigo ||'.'||tab_series.ser_codigo||'.'||\r\n tab_expediente.exp_codigo as exp_codigo,\r\n tab_archivo.dov_id,\r\n tab_tramite.tra_descripcion,\r\n tab_cuerpos.cue_descripcion,\r\n tab_expisadg.exp_titulo,\r\n tab_expediente.exp_id,\r\n tab_archivo.fil_nro,\r\n tab_archivo.fil_titulo,\r\n tab_archivo.fil_subtitulo,\r\n tab_archivo.fil_nrocaj,\r\n tab_archivo.fil_cuerpo,\r\n tab_archivo.fil_balda,\r\n tab_archivo.fil_nropaq,\r\n tab_archivo.fil_ori,\r\n tab_archivo.fil_cop,\r\n tab_archivo.fil_fot,\r\n tab_archivo.fil_nroejem\r\n FROM tab_fondo f\r\n JOIN tab_unidad ON f.fon_id = tab_unidad.fon_id\r\n JOIN tab_series ON tab_unidad.uni_id = tab_series.uni_id\r\n JOIN tab_tipocorr ON tab_tipocorr.tco_id = tab_series.tco_id\r\n JOIN tab_expediente ON tab_series.ser_id = tab_expediente.ser_id\r\n JOIN tab_exparchivo ON tab_expediente.exp_id = tab_exparchivo.exp_id\r\n JOIN tab_archivo ON tab_archivo.dov_id = tab_exparchivo.dov_id\r\n JOIN tab_expisadg ON tab_expediente.exp_id = tab_expisadg.exp_id\r\n JOIN tab_cuerpos ON tab_cuerpos.cue_id = tab_exparchivo.cue_id\r\n JOIN tab_tramitecuerpos ON tab_cuerpos.cue_id = tab_tramitecuerpos.cue_id\r\n JOIN tab_tramite ON tab_tramite.tra_id = tab_tramitecuerpos.tra_id\r\n WHERE f.fon_estado = 1\r\n AND tab_unidad.uni_estado = 1\r\n AND tab_tipocorr.tco_estado = 1\r\n AND tab_series.ser_estado = 1\r\n AND tab_expediente.exp_estado = 1\r\n AND tab_archivo.dov_estado = 1\r\n AND tab_exparchivo.exa_estado = 1\r\n AND tab_exparchivo.exp_id = '{$exp_id}'\r\n ORDER BY\r\n tab_tramite.tra_orden,\r\n tab_cuerpos.cue_orden,\r\n tab_archivo.fil_nro ";
$pdf->SetFont('helvetica', '', 8);
$rows = $this->cuerpos->dbSelectBySQL($sql);
foreach ($rows as $unc) {
$cadena .= '<table>';
$cadena .= '<tr>';
$cadena .= '<td height="10" style="text-align:left;"><b>ID: ' . $unc->exp_id . '</b></td>';
$cadena .= '</tr>';
$cadena .= '<tr>';
$cadena .= '<td height="10" style="text-align:left;"><b>CODIGO: ' . $unc->exp_codigo . '</b></td>';
$cadena .= '</tr>';
$cadena .= '<tr>';
$cadena .= '<td height="15" style="text-align:left;"><b>TITULO DEL EXPEDIENTE: ' . $unc->exp_titulo . '</b></td>';
$cadena .= '</tr>';
$cadena .= '</table>';
break;
}
$cadena .= '<table>';
$cadena .= '<tr>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="35" style="text-align:left;"><b>ID.</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="90" style="text-align:left;"><b>CODIGO</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="200" style="text-align:left;"><b>GRUPO / TIPO DOCUMENTAL</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="30" style="text-align:left;"><b>NRO.</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="200 style="text-align:left;""><b>TITULO DOCUMENTO</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="30" style="text-align:center;"><b>CAJA</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="40" style="text-align:center;"><b>CUERPO</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="30" style="text-align:center;"><b>BALDA</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="10" style="text-align:center;"><b>O</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="10" style="text-align:center;"><b>C</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="10" style="text-align:center;"><b>D</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="30" style="text-align:center;"><b>TOTAL</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="30" style="text-align:center;"><b>PAQ.</b></td>';
$cadena .= '</tr>';
$fil_nro = 0;
$tra_descripcion = "";
foreach ($rows as $unc) {
if ($unc->tra_descripcion != $tra_descripcion) {
$cadena .= '<tr>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="35" style="text-align:left;"><b></b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="90" style="text-align:left;"><b></b></td>';
$cadena .= '<td height="20" width="200" bgcolor="#CCCCCC" style="text-align:left;"><b>' . $unc->tra_descripcion . '</b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="30" style="text-align:left;"><b></b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="200 style="text-align:left;""><b></b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="30" style="text-align:center;"><b></b></td>';
$cadena .= '<td height="20" bgcolor="#CCCCCC" width="40" style="text-align:center;"><b></b></td>';
//.........这里部分代码省略.........
示例8: add
function add()
{
$contenedor = new contenedor();
$this->registry->template->con_id = "";
$this->registry->template->tipo_contenedores = $contenedor->obtenerTiposContenedor("");
$this->registry->template->con_codigo = "";
$this->registry->template->con_codbs = "";
$usuario = new usuario();
$adm = $usuario->esAdm();
if ($adm) {
$sel_usu = '<select name="usu_id" id="usu_id" class="required">';
$sel_usu .= '<option value="">(seleccionar)</option>';
$sel_usu .= $usuario->obtenerSelect($_SESSION['USU_ID']);
$sel_usu .= '</select>';
$this->registry->template->usuario = $sel_usu;
} else {
$this->registry->template->usuario = $usuario->obtenerNombre($_SESSION['USU_ID']);
$this->registry->template->usu_id = $_SESSION['USU_ID'];
}
$this->registry->template->adm = $adm;
$this->registry->template->PATH_WEB = PATH_WEB;
$this->registry->template->PATH_CONTROLADOR = 'contenedor';
$this->registry->template->PATH_DOMAIN = PATH_DOMAIN;
$this->registry->template->PATH_EVENT = "save";
$this->registry->template->GRID_SW = "false";
$this->registry->template->PATH_J = "jquery-1.4.1";
$this->menu = new menu();
$this->liMenu = $this->menu->imprimirMenu(VAR1, $_SESSION['USU_ID']);
$this->registry->template->men_titulo = $this->liMenu;
$this->registry->template->show('headerG');
$this->registry->template->show('tab_contenedor.tpl');
$this->registry->template->show('footer');
}