- Al entrar con isban deben de aparecer todas las solicitudes no solo las EP - Al visualizar la oferta (isban) ocultar el campo observaciones y salario ofertado para la oferta - Quitar botón añadir oferta en solicitudes de oferta y añadir salario ofertado en el botón añadir oferta de la ficha de candidato git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_Intranet/trunk@138 e2b1556b-49f8-d141-9351-52d6861a72d9
26 lines
410 B
PHP
26 lines
410 B
PHP
<?php
|
|
|
|
include("seguridad.php");
|
|
include("functions.php");
|
|
include_once("html/cabecera.php");
|
|
|
|
|
|
/* APLICACION.PHP */
|
|
|
|
echo "<h2>".$locale['002']."</h2>";
|
|
|
|
if(!$usuario->tieneRol("7")) {
|
|
include("tablero.php");
|
|
}
|
|
else {
|
|
header("Location: lista_ofertas.php");
|
|
}
|
|
|
|
if($_SESSION["oid"]){
|
|
include_once("alarmas.php");
|
|
}
|
|
$usuario->compruebaChangePass();
|
|
include_once("html/pie.php");
|
|
|
|
?>
|