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>
31 class MECON_NovedadesDia {
33 var $novedades = array();
42 function MECON_NovedadesDia($agente, $fecha) {
43 #validar el tipo de $fecha
44 $this->agente = $agente;
45 $this->fecha = $fecha;
47 #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
55 $this->BuscarLicencia();
56 $this->BuscarNovedadesTemporales();
57 $this->BuscarNovedadDiaria();
60 function deLicencia() {
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 = array('Interr/13a','Interr/9');
63 foreach($this->novedades as $nov) {
64 if(in_array($nov->codigo, $anti_licencias))
66 if(in_array($nov->codigo, $licencias))
72 function enComicion() {
73 foreach($this->novedades as $nov)
74 if($nov->codigo == 'com')
80 foreach($this->novedades as $nov)
81 if($nov->codigo == 'Fran')
86 function debioVenir() {
88 foreach($this->novedades as $novedad) {
89 if(!($novedad->codigo == 'Adde'
90 or $novedad->codigo == 'Aden'
91 or $novedad->codigo == 'Ato'
92 or $novedad->codigo == 'Atp'))
100 foreach($this->novedades as $nov)
101 if($nov->codigo == 'ato')
102 array_push($atos, $nov);
106 function BuscarLicencia() {
107 $fecha = $this->fecha->format("%Y%m%d");
108 $query = "SELECT codnov
110 WHERE docagente = $this->agente
111 AND diadesde <= $fecha
112 AND diahasta >= $fecha";
113 $result = $this->_db->query($query);
114 if(DB::isError($result))
115 die($result->getMessage());
116 while($r = $result->fetchRow()) {
117 $novedad = new MECON_Novedad();
118 $novedad->codigo = $r[0];
119 array_push($this->novedades, $novedad);
123 function BuscarNovedadesTemporales() {
124 $fecha = $this->fecha->getYear()."-".
125 $this->fecha->getMonth()."-".
126 $this->fecha->getDay();
127 $query = "SELECT novedad, desde, hasta
129 WHERE fecha = '$fecha'
130 AND nrodoc = $this->agente";
131 $result = $this->_db->query($query);
132 if(DB::isError($result))
133 die($result->getMessage());
134 while($r = $result->fetchRow()) {
135 $novedad = new MECON_Novedad();
136 $novedad->codigo = $r[0];
137 $novedad->intervalo = new MECON_Tiempo_Intervalo(new MECON_Tiempo_Hora($r[1]), new MECON_Tiempo_Hora($r[2]));
138 array_push($this->novedades, $novedad);
143 function BuscarNovedadDiaria() {
144 $mes = $this->fecha->getMonth();
145 $dia = $this->fecha->getDay() + 0; //el +0 hace que tome al dia como numero
146 //y no le agregue un 0 si es < que 10
147 $ano = $this->fecha->getYear();
148 $query = "SELECT novedad
152 AND nrodoc = $this->agente
154 $result = $this->_db->query($query);
155 if($c = $result->fetchRow()) {
157 $novedad = new MECON_Novedad();
158 $novedad->codigo = $codigo;
159 array_push($this->novedades, $novedad);