*/
function getTipo() // ~X2C
{
- if(is_null($this->datos['tipo_agente']))
+ if(!in_array('tipo_agente',array_keys($this->datos)))
return 'CON '.$this->datos['marco_legal'];
else
return $this->datos['tipo_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