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(!( preg_match("/^10/", $novedad->codigo)
83 or $novedad->codigo == 'Pat'
84 or $novedad->codigo == 'Adde'
85 or $novedad->codigo == 'Aden'
86 or $novedad->codigo == 'Ato'
87 or $novedad->codigo == 'Atp'))
96 foreach($this->novedades as $nov)
97 if($nov->codigo == 'ato')
98 array_push($atos, $nov);
102 function BuscarLicencia()
104 $fecha = $this->fecha->format("%Y%m%d");
105 $query = "SELECT codnov
107 WHERE docagente = $this->agente
108 AND diadesde <= $fecha
109 AND diahasta >= $fecha";
110 $result = $this->_db->query($query);
111 if(DB::isError($result))
112 die($result->getMessage());
113 while($r = $result->fetchRow())
115 $novedad = new Novedad();
116 $novedad->codigo = $r[0];
117 array_push($this->novedades, $novedad);
118 $this->licencia = $r[0];
122 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())
136 $novedad = new Novedad();
137 $novedad->codigo = $r[0];
138 $novedad->intervalo = new Intervalo(new Hora($r[1]), new Hora($r[2]));
139 array_push($this->novedades, $novedad);
144 function BuscarNovedadDiaria()
146 $mes = $this->fecha->getMonth();
147 $dia = $this->fecha->getDay() + 0; //el +0 hace que tome al dia como numero
148 //y no le agregue un 0 si es < que 10
149 $ano = $this->fecha->getYear();
150 $query = "SELECT novedad
154 AND nrodoc = $this->agente
156 $result = $this->_db->query($query);
157 if($c = $result->fetchRow())
160 $novedad = new Novedad();
161 $novedad->codigo = $codigo;
162 array_push($this->novedades, $novedad);