]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/Servicios/Legajos/ExperienciaLaboral.php
- Corregi los nombres de los archivos php para adaptarlos al estandar de la intranet.
[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:  Gonzalo Merayo <gmeray@mecon.gov.ar>                                                    |
25 // +--------------------------------------------------------------------+
26 //
27 // $Id: Intranet_Legajos_ExperienciaLaboral.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 155 :Intranet_Legajos_ExperienciaLaboral
37 /**
38  * Antigedad laboral del agente
39  *
40  * @access public
41  */
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 Intranet_Legajos_ExperienciaLaboral($agente) // ~X2C
71     {
72         $this->agente = $agente;
73         $dsn = 'mysql://intranet:intranet@intranet-db/novedades';
74         $db = DB::connect($dsn);
75         if (DB::isError($db)) 
76             die ($db->getMessage("No pudo conectarse a la base"));
77         $sql = "SELECT * 
78                 FROM web032
79                 WHERE nrodoc = $agente
80                 ORDER BY desde";
81         $result_exp = $db->query($sql);
82         if (DB::isError($result_exp))
83             die ($result_exp->getMessage("Query mal hecho"));
84
85         for ($fila = 0; $fila < $result_exp->numRows(); $fila++) {
86             $this->experiencia[$fila] = $result_exp->fetchRow(DB_FETCHMODE_ASSOC);
87         }
88
89         $sql = "SELECT *
90                 FROM web031
91                 WHERE nrodoc = $agente";
92         $result_ant = $db->query($sql);
93         if (DB::isError($result_ant))
94             die ($result_ant->getMessage("Query mal hecho"));
95
96         if ($result_ant->numRows() > 0) {
97             $this->antiguedad = $result_ant->fetchRow(DB_FETCHMODE_ASSOC);
98         }
99
100     }
101     // -X2C
102
103     // +X2C Operation 160
104     /**
105      * @return void
106      * @access public
107      */
108     function getAntiguedad() // ~X2C
109     {
110         return $this->antiguedad;
111     }
112     // -X2C
113
114     // +X2C Operation 161
115     /**
116      * @return void
117      * @access public
118      */
119     function getExperiencia() // ~X2C
120     {
121         return $this->experiencia;
122     }
123     // -X2C
124
125 } // -X2C Class :Intranet_Legajos_ExperienciaLaboral
126 ?>