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();
44 function NovedadesDia($agente, $fecha)
46 #validar el tipo de $fecha
47 $this->agente = $agente;
48 $this->fecha = $fecha;
50 #Ver de donde sacar esto bonito...
51 $dsn = "mysql://intranet:intranet@localhost/novedades";
52 $this->_db = DB::connect( $dsn , true);
53 if(DB::isError($this->_db))
54 die($this->_db->getMessage());
55 #Carga las novedades del agente/fecha en la lista de novedades
56 $this->BuscarLicencia();
57 $this->BuscarNovedadesTemporales();
58 $this->BuscarNovedadDiaria();
63 foreach($this->novedades as $nov)
64 if($nov->codigo == 'com')
71 foreach($this->novedades as $nov)
72 if($nov->codigo == 'Fran')
80 foreach($this->novedades as $novedad)
82 if(!($novedad->codigo == 'Adde'
83 or $novedad->codigo == 'Aden'
84 or $novedad->codigo == 'Ato'
85 or $novedad->codigo == 'Atp'))
94 foreach($this->novedades as $nov)
95 if($nov->codigo == 'ato')
96 array_push($atos, $nov);
100 function BuscarLicencia()
102 $fecha = $this->fecha->format("%Y%m%d");
103 $query = "SELECT codnov
105 WHERE docagente = $this->agente
106 AND diadesde <= $fecha
107 AND diahasta >= $fecha";
108 $result = $this->_db->query($query);
109 if(DB::isError($result))
110 die($result->getMessage());
111 while($r = $result->fetchRow())
113 $novedad = new Novedad();
114 $novedad->codigo = $r[0];
115 array_push($this->novedades, $novedad);
116 $this->licencia = $r[0];
120 function BuscarNovedadesTemporales()
122 $fecha = $this->fecha->getYear()."-".
123 $this->fecha->getMonth()."-".
124 $this->fecha->getDay();
125 $query = "SELECT novedad, desde, hasta
127 WHERE fecha = '$fecha'
128 AND nrodoc = $this->agente";
129 $result = $this->_db->query($query);
130 if(DB::isError($result))
131 die($result->getMessage());
132 while($r = $result->fetchRow())
134 $novedad = new Novedad();
135 $novedad->codigo = $r[0];
136 $novedad->intervalo = new Intervalo(new Hora($r[1]), new Hora($r[2]));
137 array_push($this->novedades, $novedad);
142 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())
158 $novedad = new Novedad();
159 $novedad->codigo = $codigo;
160 array_push($this->novedades, $novedad);