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