X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/31edda7c9ec13c4302e52fb14eca927a6dc53b63..4e742c74a0fc70b5cf452a5f5de83da11976c2a6:/lib/MECON/Agente.php?ds=sidebyside diff --git a/lib/MECON/Agente.php b/lib/MECON/Agente.php index 994dc20..d763451 100644 --- a/lib/MECON/Agente.php +++ b/lib/MECON/Agente.php @@ -1,39 +1,35 @@ - -// +----------------------------------------------------------------------+ -// -// $Id$ -// $Author$ -// $URL$ -// $Date$ -// $Rev$ -// + +------------------------------------------------------------------------------- +$Id$ +-----------------------------------------------------------------------------*/ #require_once 'PEAR.php'; require_once 'DB.php'; require_once 'MECON/Tiempo/Hora.php'; - - - // +X2C Class 131 :Agente /** - * @package * @access public */ class Agente { @@ -86,11 +82,8 @@ class Agente { */ function Agente($agente) // ~X2C { - if($agente !== null) { - buscarAgente($agente); - }else { - trigger_error("No se paso ningun documento!"); - } + if(! is_null($agente)) + $this->buscarAgente($agente); } // -X2C @@ -178,8 +171,11 @@ class Agente { $aux['fecha_nac_conyuge'] = $this->datos['fecha_nac_cony']; $aux['tipo_doc_conyuge'] = $this->datos['tipodoc_cony']; $aux['nro_doc_cony'] = $this->datos['nrodoc_cony']; + return $aux; + }else + { + return false; } - return $aux; } // -X2C @@ -222,10 +218,11 @@ class Agente { $this->datos = $result->fetchRow(DB_FETCHMODE_ASSOC); } else - trigger_error("Ahhhhh, agente no encontrado!"); + return false; } + return true; } // -X2C } // -X2C Class :Agente -?> +?> \ No newline at end of file