]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/Servicios/Legajos/ExperienciaLaboral.php
Se realizan correcciones varias derivadas del primer testing.
[mecon/intranet.git] / sistema / local_lib / Servicios / Legajos / ExperienciaLaboral.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_ExperienciaLaboral.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 155 :Servicios_Legajos_ExperienciaLaboral
36 /**
37  * Antigüedad laboral del agente
38  *
39  * @access public
40  */
41 // XXX - Pregunta llucar: POR QUE CATSO HEREDA DE DB???
42 class Servicios_Legajos_ExperienciaLaboral extends DB {
43     /**
44      * @var    int $agente
45      * @access public
46      */
47     var $agente;
48
49     /**
50      * @var    int $antiguedad
51      * @access public
52      */
53     var $antiguedad;
54
55     /**
56      * @var    int $experiencia
57      * @access public
58      */
59     var $experiencia;
60
61     // ~X2C
62
63     // +X2C Operation 159
64     /**
65      * @param  int $agente 
66      *
67      * @return void
68      * @access public
69      */
70     function Servicios_Legajos_ExperienciaLaboral($agente) // ~X2C
71     {
72         $this->agente = $agente;
73         $db = IntranetDB::connect();
74         if (DB::isError($db)) 
75             trigger_error($db->getMessage('No pudo conectarse a la base'), E_USER_ERROR);
76         $sql = "SELECT * 
77                 FROM novedades.web032
78                 WHERE nrodoc = $agente
79                 ORDER BY desde";
80         $result_exp = $db->query($sql);
81         if (DB::isError($result_exp))
82             trigger_error($result_exp->getMessage('Query mal hecho'), E_USER_ERROR);
83
84         for ($fila = 0; $fila < $result_exp->numRows(); $fila++) {
85             $this->experiencia[$fila] = $result_exp->fetchRow(DB_FETCHMODE_ASSOC);
86         }
87
88         $sql = "SELECT *
89                 FROM novedades.web031
90                 WHERE nrodoc = $agente";
91         $result_ant = $db->query($sql);
92         if (DB::isError($result_ant))
93             trigger_error($result_ant->getMessage('Query mal hecho'), E_USER_ERROR);
94
95         if ($result_ant->numRows() > 0) {
96             $this->antiguedad = $result_ant->fetchRow(DB_FETCHMODE_ASSOC);
97         }
98
99     }
100     // -X2C
101
102     // +X2C Operation 160
103     /**
104      * @return void
105      * @access public
106      */
107     function getAntiguedad() // ~X2C
108     {
109         return $this->antiguedad;
110     }
111     // -X2C
112
113     // +X2C Operation 161
114     /**
115      * @return void
116      * @access public
117      */
118     function getExperiencia() // ~X2C
119     {
120         return $this->experiencia;
121     }
122     // -X2C
123
124 } // -X2C Class :Servicios_Legajos_ExperienciaLaboral
125 ?>