X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/36cdd19a3fd207a98546c3a166abdf4d5afa3e35..6ac57e2d481c7fdeb453a6bf89383ddd71be2a53:/lib/MECON/Agente.php diff --git a/lib/MECON/Agente.php b/lib/MECON/Agente.php index 839ad94..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 @@ -229,4 +225,4 @@ class Agente { // -X2C } // -X2C Class :Agente -?> +?> \ No newline at end of file