X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/9f4ece77af1889cdfed30fa93349fa8ecc5b0caf..c3070ea4067c0b7b9af7b871cd9fd918bed81fab:/sistema/www/servicios/bandas/banda_agente.php?ds=sidebyside diff --git a/sistema/www/servicios/bandas/banda_agente.php b/sistema/www/servicios/bandas/banda_agente.php index d457071..db7c1b9 100644 --- a/sistema/www/servicios/bandas/banda_agente.php +++ b/sistema/www/servicios/bandas/banda_agente.php @@ -41,6 +41,31 @@ $m =& new HTML_DietMarco('servicios','Bandas Horarias'); $m->addTitle('Bandas Horarias'); $m->addStyleSheet('../../css/servicios_bandas.css'); +/* Si el agente es un contratado entonces no muestro la info */ +if(preg_match('/^CON/',$agente->getTipo())) +{ + /* Instancio un objeto Table para el cuerpo de la pagina*/ + $tabla_cuerpo =& new HTML_Table(array( 'width'=>'220', + 'border'=>'0', + 'align'=>'center', + 'cellspacing'=>'0', + 'cellpadding'=>'0')); + + $IMG_NO_AUTORIZADO =& new MECON_HTML_Image('/MECON/images/general_no_autorizado.gif', + '',array('alt'=>'No disponible')); + $tabla_cuerpo->addRow(array($IMG_NO_AUTORIZADO),array('align'=>'center')); + $tabla_cuerpo->addRow(array('InformaciĆ³n no disponible'),array('class'=>'titulo_uno')); + $m->addBodyContent('
'); + $m->addBodyContent($tabla_cuerpo); + $m->addBodyContent('
'); + $IMG_VOLVER =& new MECON_HTML_Image('/MECON/images/general_volver4.gif','',array('alt'=>'volver')); + $link_volver =& new MECON_HTML_LINK('./','volver'); + $m->addBodyContent('
'); + $m->addBodyContent($IMG_VOLVER->toHtml().' '.$link_volver->toHtml()); + $m->display(); + die; +} + /* Instancio un objeto Table para el cuerpo de la pagina*/ $tabla_cuerpo =& new HTML_Table(array('width'=>'760','border'=>'0','cellspacing'=>'0','cellpadding'=>'0')); @@ -118,7 +143,7 @@ $t =& new HTML_Table(array('width'=>'760', 'cellpadding'=>'0')); $t->addRow(array($tabla_info_personal),array('colspan'=>'3')); -$t->addRow(array(''),array('colspan'=>'3')); +$t->addRow(array(' '),array('colspan'=>'3')); /* Armo la tabla con la gilla horaria*/ $tabla_info =& new BandasNovedades_HTML_TablaInfoMes($agente,'nov_dia.php','oscuro');