- $this->setNombre($re['nombre_sistema']);
- $this->setDescripcion($re['desc_sistema']);
- $this->setFechaInicio($re['fecha_inicio']);
- $this->setFechaFin($re['fecha_fin']);
- $this->setFechaImplementacion($re['fecha_implementacion']);
- $this->setContacto($re['contacto']);
+
+ if (isset($re['nombre_sistema'])) {
+ $this->setNombre($re['nombre_sistema']);
+ }
+ else {
+ $this->setNombre(VACIO);
+ }
+ if (isset($re['desc_sistema'])) {
+ $this->setDescripcion($re['desc_sistema']);
+ }
+ else {
+ $this->setDescripcion(VACIO);
+ }
+ if (isset($re['fecha_inicio'])) {
+ $this->setFechaInicio($re['fecha_inicio']);
+ }
+ else {
+ $this->setFechaInicio(VACIO);
+ }
+ if (isset($re['fecha_fin'])) {
+ $this->setFechaFin($re['fecha_fin']);
+ }
+ else {
+ $this->setFechaFin(VACIO);
+ }
+ if (isset($re['fecha_implementacion'])) {
+ $this->setFechaImplementacion($re['fecha_implementacion']);
+ }
+ else {
+ $this->setFechaImplementacion(VACIO);
+ }
+ if (isset($re['contacto'])) {
+ $this->setContacto($re['contacto']);
+ }
+ else {
+ $this->setContacto(VACIO);
+ }