]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/Servicios/Legajos/Familiares.php
- Corregi los nombres de los archivos php para adaptarlos al estandar de la intranet.
[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:  Gonzalo Merayo <gmeray@mecon.gov.ar>                                                    |
25 // +--------------------------------------------------------------------+
26 //
27 // $Id: Intranet_Legajos_Familiares.php 23 2003-07-15 18:56:42Z msklar $
28 //
29
30
31
32 // +X2C includes
33 require_once 'DB.php';
34 // ~X2C
35
36 // +X2C Class 154 :Intranet_Legajos_Familiares
37 /**
38  * @access public
39  */
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 Intranet_Legajos_Familiares($agente) // ~X2C
63     {
64         $this->agente = $agente;
65         $dsn = 'mysql://intranet:intranet@intranet-db/novedades';
66         $db = DB::connect($dsn);
67         if (DB::isError($db)) 
68             die ($db->getMessage("No pudo conectarse a la base"));
69         $sql = "SELECT * 
70                 FROM web004
71                 WHERE documento = $agente";
72         $result = $db->query($sql);
73         if (DB::isError($result))
74             die ($result->getMessage("Query mal hecho"));
75
76         for ($fila = 0; $fila < $result->numRows(); $fila++) {
77             $this->datos[$fila] = $result->fetchRow(DB_FETCHMODE_ASSOC);
78         }
79     }
80     // -X2C
81
82     // +X2C Operation 170
83     /**
84      * @return void
85      * @access public
86      */
87     function getHijos() // ~X2C
88     {
89         $aux = array();
90         $fila = 0;
91         if(is_array($this->datos)) {
92             foreach (array_keys($this->datos) as $key) {
93                 if($this->datos[$key]['parentesco']=="H") {
94                  $aux[$fila]['nombre'] = $this->datos[$key]['nombre'];
95                  $aux[$fila]['tipo_doc'] = $this->datos[$key]['tipodoc'];
96                  $aux[$fila]['nro_doc'] = $this->datos[$key]['nrodoc'];
97                  $aux[$fila]['fecha_nac'] = $this->datos[$key]['fecha_nac'];
98                  $aux[$fila]['parentesco'] = $this->datos[$key]['parentesco'];
99                  $fila++;
100                 }
101             }
102         }
103         return $aux;
104     }
105     // -X2C
106
107     // +X2C Operation 171
108     /**
109      * @return void
110      * @access public
111      */
112     function getFamiliares() // ~X2C
113     {
114         $aux = array();
115         $fila = 0;
116         if(is_array($this->datos)) {
117             foreach (array_keys($this->datos) as $key) {
118                 if($this->datos[$key]['parentesco']!="H") {
119                     $aux[$fila]['nombre'] = $this->datos[$key]['nombre'];
120                     $aux[$fila]['tipo_doc'] = $this->datos[$key]['tipodoc'];
121                     $aux[$fila]['nro_doc'] = $this->datos[$key]['nrodoc'];
122                     $aux[$fila]['fecha_nac'] = $this->datos[$key]['fecha_nac'];
123                     $aux[$fila]['parentesco'] = $this->datos[$key]['parentesco'];
124                     $fila++;
125                 }
126             }
127         }
128         return $aux;
129     }
130     // -X2C
131
132 } // -X2C Class :Intranet_Legajos_Familiares
133 ?>