2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
5 // +--------------------------------------------------------------------+
6 // | Sistema de Horas Extra - Ministerio de EconomÃa - Argentina |
7 // +--------------------------------------------------------------------+
8 // | Creado: lun abr 22 16:05:33 ART 2002 |
9 // | Autor: Gonzalo Merayo <gmeray@mecon.gov.ar> |
10 // +--------------------------------------------------------------------+
12 // $URL: http://portal.mecon.ar/svn/he/tronco/src/lib/he/HE/NovedadesDia.php $
14 // $Date: 2003-05-08 18:40:47 -0300 (Thu, 08 May 2003) $
18 require_once 'DB.php';
19 require_once 'Date.php';
20 require_once 'MECON/Novedad.php';
21 require_once 'MECON/Tiempo/Hora.php';
24 * Representa un Intervalo entre 2 horas del mismo dia
28 * @version $Rev: 380 $
29 * @author Gonzalo Merayo <gmeray@mecon.gov.ar>
33 var $novedades = array();
42 function NovedadesDia($agente, $fecha)
44 #validar el tipo de $fecha
45 $this->agente = $agente;
46 $this->fecha = $fecha;
48 #Ver de donde sacar esto bonito...
49 $dsn = "mysql://intranet:intranet@localhost/novedades";
50 $this->_db = DB::connect( $dsn , true);
51 if(DB::isError($this->_db))
52 die($this->_db->getMessage());
53 #Carga las novedades del agente/fecha en la lista de novedades
54 $this->BuscarLicencia();
55 $this->BuscarNovedadesTemporales();
56 $this->BuscarNovedadDiaria();
61 $licencias = array('Adp','Asa','Fal','Fran','FES/REL','Grem','Interrup','Sus','10a', ->'10a/d','10c','10d','10g','10h','10i','10j','10j/c','13Ia','13Ia/s','13Ia/u','13Ib',->'13Ic','13Id','13Id/a','13Id/h','13Ie','13Ig','13IIa','13IIb','13IIc','13IId', ->'13IIe','1363/97-2','14a','14b','14b1','14b2','14c','14d','14f','14g','14h','15a', ->'15b','15c','9');
62 $anti_licencias = ('Interr/13a','Interr/9');
63 foreach($this->novedades as $nov)
65 if(in_array($nov->codigo, $anti_licencias))
67 if(in_array($nov->codigo, $licencias))
75 foreach($this->novedades as $nov)
76 if($nov->codigo == 'com')
83 foreach($this->novedades as $nov)
84 if($nov->codigo == 'Fran')
92 foreach($this->novedades as $novedad)
94 if(!($novedad->codigo == 'Adde'
95 or $novedad->codigo == 'Aden'
96 or $novedad->codigo == 'Ato'
97 or $novedad->codigo == 'Atp'))
106 foreach($this->novedades as $nov)
107 if($nov->codigo == 'ato')
108 array_push($atos, $nov);
112 function BuscarLicencia()
114 $fecha = $this->fecha->format("%Y%m%d");
115 $query = "SELECT codnov
117 WHERE docagente = $this->agente
118 AND diadesde <= $fecha
119 AND diahasta >= $fecha";
120 $result = $this->_db->query($query);
121 if(DB::isError($result))
122 die($result->getMessage());
123 while($r = $result->fetchRow())
125 $novedad = new Novedad();
126 $novedad->codigo = $r[0];
127 array_push($this->novedades, $novedad);
131 function BuscarNovedadesTemporales()
133 $fecha = $this->fecha->getYear()."-".
134 $this->fecha->getMonth()."-".
135 $this->fecha->getDay();
136 $query = "SELECT novedad, desde, hasta
138 WHERE fecha = '$fecha'
139 AND nrodoc = $this->agente";
140 $result = $this->_db->query($query);
141 if(DB::isError($result))
142 die($result->getMessage());
143 while($r = $result->fetchRow())
145 $novedad = new Novedad();
146 $novedad->codigo = $r[0];
147 $novedad->intervalo = new Intervalo(new Hora($r[1]), new Hora($r[2]));
148 array_push($this->novedades, $novedad);
153 function BuscarNovedadDiaria()
155 $mes = $this->fecha->getMonth();
156 $dia = $this->fecha->getDay() + 0; //el +0 hace que tome al dia como numero
157 //y no le agregue un 0 si es < que 10
158 $ano = $this->fecha->getYear();
159 $query = "SELECT novedad
163 AND nrodoc = $this->agente
165 $result = $this->_db->query($query);
166 if($c = $result->fetchRow())
169 $novedad = new Novedad();
170 $novedad->codigo = $codigo;
171 array_push($this->novedades, $novedad);