]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/Servicios/Legajos/Familiares.php
Se mejora:
[mecon/intranet.git] / sistema / local_lib / Servicios / Legajos / Familiares.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // |                      Ministerio de Economía                        |
5 // |                             Intranet                               |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet.                                     |
8 // |                                                                    |
9 // | Intranet is free software; you can redistribute it and/or modify   |
10 // | it under the terms of the GNU General Public License as published  |
11 // | by the Free Software Foundation; either version 2 of the License,  |
12 // | or (at your option) any later version.                             |
13 // |                                                                    |
14 // | Intranet is distributed in the hope that it will be useful, but    |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
17 // | General Public License for more details.                           |
18 // |                                                                    |
19 // | You should have received a copy of the GNU General Public License  |
20 // | along with Hooks; if not, write to the Free Software Foundation,   |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
22 // +--------------------------------------------------------------------+
23 // | Creado: Mon Jul 7 17:22:10 2003                                    |
24 // | Autor:  Matías Sklar <msklar@mecon.gov.ar>                         |
25 // +--------------------------------------------------------------------+
26 //
27 // $Id: Intranet_Legajos_Familiares.php 23 2003-07-15 18:56:42Z msklar $
28 //
29
30 // +X2C includes
31 require_once 'DB.php';
32 // ~X2C
33 require_once 'intranetdb.php';
34
35 // +X2C Class 154 :Servicios_Legajos_Familiares
36 /**
37  * @access public
38  */
39 // XXX - Pregunta llucar: POR QUE CATSO HEREDA DE DB???
40 class Servicios_Legajos_Familiares extends DB {
41     /**
42      * @var    int $agente
43      * @access public
44      */
45     var $agente;
46
47     /**
48      * @var    int $datos
49      * @access public
50      */
51     var $datos;
52
53     // ~X2C
54
55     // +X2C Operation 169
56     /**
57      * @param  int $agente 
58      *
59      * @return void
60      * @access public
61      */
62     function Servicios_Legajos_Familiares($agente) // ~X2C
63     {
64         $this->agente = $agente;
65         $db = IntranetDB::connect();
66         if (DB::isError($db)) 
67             trigger_error($db->getMessage('No pudo conectarse a la base'), E_USER_ERROR);
68         $sql = "SELECT * 
69                 FROM novedades.web004
70                 WHERE documento = $agente";
71         $result = $db->query($sql);
72         if (DB::isError($result))
73             trigger_error($result->getMessage('Query mal hecho'), E_USER_ERROR);
74
75         for ($fila = 0; $fila < $result->numRows(); $fila++) {
76             $this->datos[$fila] = $result->fetchRow(DB_FETCHMODE_ASSOC);
77         }
78     }
79     // -X2C
80
81     // +X2C Operation 170
82     /**
83      * @return void
84      * @access public
85      */
86     function getHijos() // ~X2C
87     {
88         $aux = array();
89         $fila = 0;
90         if(is_array($this->datos)) {
91             foreach (array_keys($this->datos) as $key) {
92                 if($this->datos[$key]['parentesco']=='H') {
93                  $aux[$fila]['nombre'] = $this->datos[$key]['nombre'];
94                  $aux[$fila]['tipo_doc'] = $this->datos[$key]['tipodoc'];
95                  $aux[$fila]['nro_doc'] = $this->datos[$key]['nrodoc'];
96                  $aux[$fila]['fecha_nac'] = $this->datos[$key]['fecha_nac'];
97                  $aux[$fila]['parentesco'] = $this->datos[$key]['parentesco'];
98                  $fila++;
99                 }
100             }
101         }
102         return $aux;
103     }
104     // -X2C
105
106     // +X2C Operation 171
107     /**
108      * @return void
109      * @access public
110      */
111     function getFamiliares() // ~X2C
112     {
113         $aux = array();
114         $fila = 0;
115         if(is_array($this->datos)) {
116             foreach (array_keys($this->datos) as $key) {
117                 if($this->datos[$key]['parentesco']!="H") {
118                     $aux[$fila]['nombre'] = $this->datos[$key]['nombre'];
119                     $aux[$fila]['tipo_doc'] = $this->datos[$key]['tipodoc'];
120                     $aux[$fila]['nro_doc'] = $this->datos[$key]['nrodoc'];
121                     $aux[$fila]['fecha_nac'] = $this->datos[$key]['fecha_nac'];
122                     $aux[$fila]['parentesco'] = $this->datos[$key]['parentesco'];
123                     $fila++;
124                 }
125             }
126         }
127         return $aux;
128     }
129     // -X2C
130
131 } // -X2C Class :Servicios_Legajos_Familiares
132 ?>