function debioVenir()
{
$ret = true;
+ echo $this->fecha->format("%Y%m%d")."=>".count($this->novedades)."\n";
foreach($this->novedades as $novedad)
{
if(!( preg_match("/^10/", $novedad->codigo)
$result = $this->_db->query($query);
if(DB::isError($result))
die($result->getMessage());
- if( $r = $result->fetchRow() )
+ while($r = $result->fetchRow())
+ {
+ $novedad = new Novedad();
+ $novedad->codigo = $r[0];
+ array_push($this->novedades, $novedad);
$this->licencia = $r[0];
+ }
}
function BuscarNovedadesTemporales()