Commit d325353d by sistem02 user

[ADD] disponibilidad por cada jefe de area

parent f3a10347
......@@ -6,7 +6,6 @@
package pe.siso.horario.Beans;
public class Area {
private int codigoArea;
private String nombreArea;
......
......@@ -20,7 +20,7 @@ public interface AreaDAO {
public void Actualizar(String codigo,String nombreArea) throws Exception;
public int registrarAreas(String nombreArea) throws Exception;
public void cambiarEstado(String dato, String codigoArea) throws Exception;
public ArrayList<Area> cargarArea() throws Exception;
public ArrayList<Area> cargarArea(int cod) throws Exception;
public int cantidadAreaUso(String codigoArea) throws Exception;
public Area datosArea(String codDocente) throws Exception;
public int registrarAreaDocente(String codigoArea, String codigoDocente) throws Exception;
......
......@@ -94,15 +94,19 @@ public class MySqlAreaDAO implements AreaDAO {
}
@Override
public ArrayList<Area> cargarArea() throws Exception {
public ArrayList<Area> cargarArea(int cod) throws Exception {
ArrayList<Area> lista = new ArrayList<Area>();
Connection cnx = null;
try {
String base = "horario";
cnx = MySqlDAOFactory.obtenerConexion(base);
String codarea="";
cnx = MySqlDAOFactory.obtenerConexion(base);
Statement st = cnx.createStatement();
String query = "SELECT cod_are,nom_are,est_are from area WHERE est_are = '1'";
if(cod!=0){
codarea=" and cod_are ="+cod;
}
String query = "SELECT cod_are,nom_are,est_are from area WHERE est_are = '1'"+codarea;
ResultSet rs = st.executeQuery(query);
......
......@@ -52,17 +52,17 @@ public class MySqlUsuarioDAO implements UsuarioDAO {
cnx = MySqlDAOFactory.obtenerConexion(base);
Statement st = cnx.createStatement();
String query = "SELECT area.cod_area,usuario.cod_usu,usuario.cod_tip_usu,usuario.ani_usu, usuario.usu_usu, usuario.cla_usu, usuario.cod_loc, usuario.est_usu, tipo_usuario.nom_tip_usu, sede.des_loc "
String query = "SELECT area.cod_are,usuario.cod_usu,usuario.cod_tip_usu,usuario.ani_usu, usuario.usu_usu, usuario.cla_usu, usuario.cod_loc, usuario.est_usu, tipo_usuario.nom_tip_usu, sede.des_loc "
+ "FROM usuario "
+ "LEFT JOIN sede ON sede.cod_loc = usuario.cod_loc "
+ "LEFT JOIN area ON usuario.cod_usu=area.cod_usuario"
+ "LEFT JOIN area ON usuario.cod_usu=area.cod_usuario "
+ "INNER JOIN tipo_usuario ON tipo_usuario.cod_tip_usu = usuario.cod_tip_usu "
+ "WHERE usuario.usu_usu='" + usuario + "' and usuario.cla_usu='" + clave + "' and usuario.est_usu='1'";
ResultSet rs = st.executeQuery(query);
while (rs.next()) {
usuario1.setCodarea(rs.getInt("cod_area"));
usuario1.setCodarea(rs.getInt("cod_are"));
usuario1.setCodigoUsuario(rs.getInt("cod_usu"));
usuario1.setCodigoTipoUsuario(rs.getInt("cod_tip_usu"));
usuario1.setCodigoSede(rs.getInt("cod_loc"));
......
......@@ -62,10 +62,10 @@ public class AreaServices {
}
public ArrayList<Area> cargarArea() {
public ArrayList<Area> cargarArea(int cod) {
ArrayList<Area> lista = null;
try {
lista = objAreaDAO.cargarArea();
lista = objAreaDAO.cargarArea(cod);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
......
......@@ -12,8 +12,10 @@ import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.json.JSONArray;
import pe.siso.horario.Beans.Area;
import pe.siso.horario.Beans.Usuario;
import pe.siso.horario.Services.AreaServices;
/**
......@@ -22,346 +24,350 @@ import pe.siso.horario.Services.AreaServices;
*/
public class ServletArea extends HttpServlet {
protected void service(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String param = request.getParameter("Accion");
if ("listarAreas".equals(param)) {
listarAreas(request, response);
} else if ("cambiarEstado".equals(param)) {
cambiarEstado(request, response);
} else if ("registrarAreas".equals(param)) {
registrarAreas(request, response);
} else if ("armarEdicion".equals(param)) {
armarEdicion(request, response);
} else if ("cargarArea".equals(param)) {
cargarArea(request, response);
} else if ("Actualizar".equals(param)) {
Actualizar(request, response);
} else if ("cantidadUsoArea".equals(param)) {
cantidadUsoArea(request, response);
} else if ("consultarAreas".equals(param)) {
consultarAreas(request, response);
} else if ("registraAreaDocente".equals(param)) {
registraAreaDocente(request, response);
} else if ("cargarAreaJson".equals(param)) {
cargarAreaJson(request, response);
}else if("cargarAreaEditar".equals(param)){
cargarAreaEditar(request,response);
}
}
private void listarAreas(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
ArrayList<Area> lista = null;
lista = servicios.listarAreas();
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<div style=\"border: 1px solid #CCCCCC;\"> "
+ " <div class=\"table-header\"> "
+ " Listado de Áreas "
+ " </div> "
+ " <div> "
+ " <div class=\"dataTables_wrapper form-inline no-footer\" id=\"sample-table-2_wrapper\"> "
+ " <table class=\"table table-striped table-bordered table-hover dataTable no-footer\" id=\"sample-table-2\" role=\"grid\" aria-describedby=\"sample-table-2_info\" > "
+ " <thead> "
+ " <tr role=\"row\"> "
+ " <th tabindex=\"0\" class=\"center\" rowspan=\"1\" colspan=\"1\" >N°</th> "
+ " <th tabindex=\"0\" class=\"center\" rowspan=\"1\" colspan=\"1\">ÁREA</th> "
+ " <th tabindex=\"0\" class=\"center\" rowspan=\"1\" colspan=\"1\">EDICIÓN</th> "
+ " <th tabindex=\"0\" class=\"center\" rowspan=\"1\" colspan=\"1\">ESTADO</th> "
+ " </tr> "
+ " </thead> "
+ " <tbody>");
int cont = 1;
for (int i = 0; i < lista.size(); i++) {
if (cont % 2 == 0) {
pw.println("<tr class=\"alt\" >");
} else {
pw.println("<tr >");
}
String estado = "";
if (lista.get(i).getEstaArea() == 1) {
estado = "<a id='btnValidarEstado' href=\"javascript:validar_estado(0," + lista.get(i).getCodigoArea() + ");\" class=\"regular\" > "
+ "<img src=\"imagenes/icons/lightbulb.png\" /> "
+ "</a>";
} else {
estado = "<a id='btnValidarEstado2' href=\"javascript:validar_estado(1," + lista.get(i).getCodigoArea() + ");\" class=\"regular\" > "
+ "<img src=\"imagenes/icons/lightbulb_off.png\" /> "
+ "</a>";
}
pw.println(" <td align='center'>" + cont + "</td>"
+ " <td>" + lista.get(i).getNombreArea() + "</td>"
+ " <td align='center'><a id='btnEditar' href=\"javascript:armarEdicion(" + lista.get(i).getCodigoArea() + ");\" class=\"regular\" > "
+ " <img src=\"imagenes/icons/page_edit.png\" /> "
+ " </a>"
+ " </td>"
+ " <td align='center' valign='middle'>" + estado + "</td>"
+ " </tr>");
cont++;
}
if (cont == 1) {
pw.println("<tr><td colspan='4' align='center'>No hay Áreas registradas</td></tr>");
}
pw.println(" </tbody> "
+ " </table> "
+ " </div>"
+ " </div>"
+ " </div>");
}
private void cambiarEstado(HttpServletRequest request, HttpServletResponse response) throws IOException {
//String codArea=request.getParameter("codArea");
String cod_area = request.getParameter("cod_area");
AreaServices servicios = new AreaServices();
int cantidad = servicios.cantidadAreaUso(cod_area);
String dato = request.getParameter("dato");
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
if (cantidad == 0) {
servicios.cambiarEstado(dato, cod_area);
pw.println("0");
} else {
pw.println("1");
}
}
private void registrarAreas(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
String nombreArea = request.getParameter("Tcentro");
int dato = servicios.registrarAreas(nombreArea);
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
if (dato == 0) {
pw.println("1");
} else if (dato > 0) {
pw.println("0");
} else {
pw.println("2");
}
}
private void armarEdicion(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
Area area = new Area();
String cod_area = request.getParameter("codarea");
area = servicios.NombreAreas(cod_area);
//String dato = request.getParameter("dato");
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<center>"
+ " <table border='0'>"
+ " <tr>"
+ " <td colspan='4' height='30'></td>"
+ " </tr>"
+ " <tr>"
+ " <td><b>Nombre de Área: </b> <font color=\"#FF0000\">*</font></td>"
+ " <td width='10'></td>"
+ " <td><input id='txt_nom' type='text' class='form-control validate[required,custom[onlyLetterSp]]' value='" + area.getNombreArea() + "' onChange='conMayusculas(this);' > </td>"
+ " <td width='20'></td>"
+ " </tr>"
+ " </table>"
+ "</center>");
}
private void cargarArea(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
ArrayList<Area> lista = null;
String accion = request.getParameter("accion");
String nombreId = request.getParameter("nombre");
lista = servicios.cargarArea();
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<select id='"+nombreId+"' class='chosen-select form-control validate[required]' onChange='" + accion + "'>");
pw.println("<option value=''>[Seleccione]</option>");
for (int i = 0; i < lista.size(); i++) {
pw.println("<option value='" + lista.get(i).getCodigoArea() + "'>" + lista.get(i).getNombreArea() + "</option>");
}
pw.println("</select>");
}
private void cargarAreaEditar(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
ArrayList<Area> lista = null;
String accion = request.getParameter("accion");
String nombreId = request.getParameter("nombre");
String codDocente = request.getParameter("codDocente");
lista = servicios.listarAreasDocente(codDocente);
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<select id='"+nombreId+"' class='chosen-select form-control validate[required]' onChange='" + accion + "'>");
pw.println("<option value=''>[SELECCIONE]</option>");
for (int i = 0; i < lista.size(); i++) {
pw.println("<option value='" + lista.get(i).getCodigoArea() + "' selected>" + lista.get(i).getNombreArea() + "</option>");
}
pw.println("</select>");
}
private void Actualizar(HttpServletRequest request, HttpServletResponse response) {
AreaServices servicios = new AreaServices();
String nombre = request.getParameter("nombre");
String cod_area = request.getParameter("cod_area");
servicios.Actualizar(cod_area, nombre);
}
private void cantidadUsoArea(HttpServletRequest request, HttpServletResponse response) throws IOException {
String cod_area = request.getParameter("cod_area");
AreaServices servicios = new AreaServices();
int cantidad = servicios.cantidadAreaUso(cod_area);
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
if (cantidad == 0) {
pw.println("0");
} else {
pw.println("1");
}
}
private void consultarAreas(HttpServletRequest request, HttpServletResponse response) throws IOException {
String codDoc = request.getParameter("codDoc");
AreaServices servicios = new AreaServices();
Area area = new Area();
area = servicios.datosArea(codDoc);
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
if (area.getCodigoArea() > 0) {
pw.println("<input id='idAreasDocente' type='hidden' value='1' >");
pw.println("<input id='idAreasSelect' type='hidden' value='" + area.getCodigoArea() + "' >");
pw.println("<div class='widget-box widget-color-dark'> "
+ " <div class='widget-header'> "
+ " <h4 class='widget-title'>ÁREA</h4> "
+ " </div> "
+ " <div class='widget-body'> "
+ " <div class='widget-main no-padding'> "
+ " <form id='registroAreaFormulario' class='formular' method='post'> "
+ " <fieldset> "
+ " <div class='col-sm-6'> "
+ " <br> "
+ " <div class='alert alert-block alert-success'> "
+ " <button type='button' class='close' data-dismiss='alert'> "
+ " <i class='ace-icon fa fa-times'></i> "
+ " </button> "
+ " <strong>ÁREA!</strong> <br> "
+ " " + area.getNombreArea() + " "
+ " <br> "
+ " </div> "
+ " </div> "
+ " <div class='col-sm-6'> "
+ " <br> "
+ " <div class='alert alert-warning'> "
+ " <button type='button' class='close' data-dismiss='alert'> "
+ " <i class='ace-icon fa fa-times'></i> "
+ " </button> "
+ " <strong>NOTA!</strong> "
+ " Seleccione su area perteneciente para poder registrar su disponibilidad horaria. "
+ " <br> "
+ " </div> "
+ " </div> "
+ " </fieldset> "
+ " "
+ " </form> "
+ " </div> "
+ " </div> "
+ " </div>");
} else {
pw.println("<input id='idAreasDocente' type='hidden' value='0' >");
pw.println("<input id='idAreasSelect' type='hidden' value='0' >");
pw.println("<div class='widget-box widget-color-dark'> "
+ " <div class='widget-header'> "
+ " <h4 class='widget-title'>ÁREA</h4> "
+ " </div> "
+ " <div class='widget-body'> "
+ " <div class='widget-main no-padding'> "
+ " <form id='registroAreaFormulario' class='formular' method='post'> "
+ " <fieldset> "
+ " <div class='col-sm-6'> "
+ " <label for='form-field-select-3'>¿A qué área asiste? <span style='color: red;'>(*)</span></label> "
+ " <br> "
+ " <span > "
+ " <select id='cmbAreaSelect' class='form-control validate[required]'> "
+ " <option value=''>[Seleccione]</option> ");
pw.println("<option value='1'>MATEMÁTICA</option>");
pw.println("<option value='2'>COMUNICACIÓN</option>");
pw.println("<option value='3'>CIENCIAS SOCIALES</option>");
pw.println("<option value='4'>C.T.A.</option>");
pw.println("<option value='5'>C.E.F.</option>");
pw.println(" </select> "
+ " </span> "
+ " <br> "
+ " </div> "
+ " <div class='col-sm-6'> "
+ " <br> "
+ " <div class='alert alert-warning'> "
+ " <button type='button' class='close' data-dismiss='alert'> "
+ " <i class='ace-icon fa fa-times'></i> "
+ " </button> "
+ " <strong>NOTA!</strong> "
+ " Seleccione su area perteneciente para poder registrar su disponibilidad horaria. "
+ " <br> "
+ " </div> "
+ " </div> "
+ " </fieldset> "
+ " <div class='form-actions center'> "
+ " <button class='btn btn-sm btn-primary' type='button' onclick='validar_seleccion();'> "
+ " <i class='ace-icon fa fa-save icon-on-right bigger-110'></i> "
+ " Seleccionar "
+ " </button> "
+ " </div> "
+ " "
+ " </form> "
+ " </div> "
+ " </div> "
+ " </div>");
}
}
private void registraAreaDocente(HttpServletRequest request, HttpServletResponse response) {
String codArea = request.getParameter("cmbAreaSelect");
String codDocente = request.getParameter("codDocente");
AreaServices servicios = new AreaServices();
int dato = 0;
dato = servicios.registrarAreaDocente(codArea, codDocente);
}
private void cargarAreaJson(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
ArrayList<Area> lista = null;
lista = servicios.cargarArea();
response.setContentType("application/json");
PrintWriter pw = response.getWriter();
JSONArray jArray = new JSONArray(lista);
pw.print(jArray);
}
protected void service(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String param = request.getParameter("Accion");
if ("listarAreas".equals(param)) {
listarAreas(request, response);
} else if ("cambiarEstado".equals(param)) {
cambiarEstado(request, response);
} else if ("registrarAreas".equals(param)) {
registrarAreas(request, response);
} else if ("armarEdicion".equals(param)) {
armarEdicion(request, response);
} else if ("cargarArea".equals(param)) {
cargarArea(request, response);
} else if ("Actualizar".equals(param)) {
Actualizar(request, response);
} else if ("cantidadUsoArea".equals(param)) {
cantidadUsoArea(request, response);
} else if ("consultarAreas".equals(param)) {
consultarAreas(request, response);
} else if ("registraAreaDocente".equals(param)) {
registraAreaDocente(request, response);
} else if ("cargarAreaJson".equals(param)) {
cargarAreaJson(request, response);
} else if ("cargarAreaEditar".equals(param)) {
cargarAreaEditar(request, response);
}
}
private void listarAreas(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
ArrayList<Area> lista = null;
lista = servicios.listarAreas();
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<div style=\"border: 1px solid #CCCCCC;\"> "
+ " <div class=\"table-header\"> "
+ " Listado de Áreas "
+ " </div> "
+ " <div> "
+ " <div class=\"dataTables_wrapper form-inline no-footer\" id=\"sample-table-2_wrapper\"> "
+ " <table class=\"table table-striped table-bordered table-hover dataTable no-footer\" id=\"sample-table-2\" role=\"grid\" aria-describedby=\"sample-table-2_info\" > "
+ " <thead> "
+ " <tr role=\"row\"> "
+ " <th tabindex=\"0\" class=\"center\" rowspan=\"1\" colspan=\"1\" >N°</th> "
+ " <th tabindex=\"0\" class=\"center\" rowspan=\"1\" colspan=\"1\">ÁREA</th> "
+ " <th tabindex=\"0\" class=\"center\" rowspan=\"1\" colspan=\"1\">EDICIÓN</th> "
+ " <th tabindex=\"0\" class=\"center\" rowspan=\"1\" colspan=\"1\">ESTADO</th> "
+ " </tr> "
+ " </thead> "
+ " <tbody>");
int cont = 1;
for (int i = 0; i < lista.size(); i++) {
if (cont % 2 == 0) {
pw.println("<tr class=\"alt\" >");
} else {
pw.println("<tr >");
}
String estado = "";
if (lista.get(i).getEstaArea() == 1) {
estado = "<a id='btnValidarEstado' href=\"javascript:validar_estado(0," + lista.get(i).getCodigoArea() + ");\" class=\"regular\" > "
+ "<img src=\"imagenes/icons/lightbulb.png\" /> "
+ "</a>";
} else {
estado = "<a id='btnValidarEstado2' href=\"javascript:validar_estado(1," + lista.get(i).getCodigoArea() + ");\" class=\"regular\" > "
+ "<img src=\"imagenes/icons/lightbulb_off.png\" /> "
+ "</a>";
}
pw.println(" <td align='center'>" + cont + "</td>"
+ " <td>" + lista.get(i).getNombreArea() + "</td>"
+ " <td align='center'><a id='btnEditar' href=\"javascript:armarEdicion(" + lista.get(i).getCodigoArea() + ");\" class=\"regular\" > "
+ " <img src=\"imagenes/icons/page_edit.png\" /> "
+ " </a>"
+ " </td>"
+ " <td align='center' valign='middle'>" + estado + "</td>"
+ " </tr>");
cont++;
}
if (cont == 1) {
pw.println("<tr><td colspan='4' align='center'>No hay Áreas registradas</td></tr>");
}
pw.println(" </tbody> "
+ " </table> "
+ " </div>"
+ " </div>"
+ " </div>");
}
private void cambiarEstado(HttpServletRequest request, HttpServletResponse response) throws IOException {
//String codArea=request.getParameter("codArea");
String cod_area = request.getParameter("cod_area");
AreaServices servicios = new AreaServices();
int cantidad = servicios.cantidadAreaUso(cod_area);
String dato = request.getParameter("dato");
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
if (cantidad == 0) {
servicios.cambiarEstado(dato, cod_area);
pw.println("0");
} else {
pw.println("1");
}
}
private void registrarAreas(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
String nombreArea = request.getParameter("Tcentro");
int dato = servicios.registrarAreas(nombreArea);
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
if (dato == 0) {
pw.println("1");
} else if (dato > 0) {
pw.println("0");
} else {
pw.println("2");
}
}
private void armarEdicion(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
Area area = new Area();
String cod_area = request.getParameter("codarea");
area = servicios.NombreAreas(cod_area);
//String dato = request.getParameter("dato");
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<center>"
+ " <table border='0'>"
+ " <tr>"
+ " <td colspan='4' height='30'></td>"
+ " </tr>"
+ " <tr>"
+ " <td><b>Nombre de Área: </b> <font color=\"#FF0000\">*</font></td>"
+ " <td width='10'></td>"
+ " <td><input id='txt_nom' type='text' class='form-control validate[required,custom[onlyLetterSp]]' value='" + area.getNombreArea() + "' onChange='conMayusculas(this);' > </td>"
+ " <td width='20'></td>"
+ " </tr>"
+ " </table>"
+ "</center>");
}
private void cargarArea(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
ArrayList<Area> lista = null;
String accion = request.getParameter("accion");
String nombreId = request.getParameter("nombre");
lista = servicios.cargarArea(0);
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<select id='" + nombreId + "' class='chosen-select form-control validate[required]' onChange='" + accion + "'>");
pw.println("<option value=''>[Seleccione]</option>");
for (int i = 0; i < lista.size(); i++) {
pw.println("<option value='" + lista.get(i).getCodigoArea() + "'>" + lista.get(i).getNombreArea() + "</option>");
}
pw.println("</select>");
}
private void cargarAreaEditar(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
ArrayList<Area> lista = null;
String accion = request.getParameter("accion");
String nombreId = request.getParameter("nombre");
String codDocente = request.getParameter("codDocente");
lista = servicios.listarAreasDocente(codDocente);
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<select id='" + nombreId + "' class='chosen-select form-control validate[required]' onChange='" + accion + "'>");
pw.println("<option value=''>[SELECCIONE]</option>");
for (int i = 0; i < lista.size(); i++) {
pw.println("<option value='" + lista.get(i).getCodigoArea() + "' selected>" + lista.get(i).getNombreArea() + "</option>");
}
pw.println("</select>");
}
private void Actualizar(HttpServletRequest request, HttpServletResponse response) {
AreaServices servicios = new AreaServices();
String nombre = request.getParameter("nombre");
String cod_area = request.getParameter("cod_area");
servicios.Actualizar(cod_area, nombre);
}
private void cantidadUsoArea(HttpServletRequest request, HttpServletResponse response) throws IOException {
String cod_area = request.getParameter("cod_area");
AreaServices servicios = new AreaServices();
int cantidad = servicios.cantidadAreaUso(cod_area);
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
if (cantidad == 0) {
pw.println("0");
} else {
pw.println("1");
}
}
private void consultarAreas(HttpServletRequest request, HttpServletResponse response) throws IOException {
String codDoc = request.getParameter("codDoc");
AreaServices servicios = new AreaServices();
Area area = new Area();
area = servicios.datosArea(codDoc);
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
if (area.getCodigoArea() > 0) {
pw.println("<input id='idAreasDocente' type='hidden' value='1' >");
pw.println("<input id='idAreasSelect' type='hidden' value='" + area.getCodigoArea() + "' >");
pw.println("<div class='widget-box widget-color-dark'> "
+ " <div class='widget-header'> "
+ " <h4 class='widget-title'>ÁREA</h4> "
+ " </div> "
+ " <div class='widget-body'> "
+ " <div class='widget-main no-padding'> "
+ " <form id='registroAreaFormulario' class='formular' method='post'> "
+ " <fieldset> "
+ " <div class='col-sm-6'> "
+ " <br> "
+ " <div class='alert alert-block alert-success'> "
+ " <button type='button' class='close' data-dismiss='alert'> "
+ " <i class='ace-icon fa fa-times'></i> "
+ " </button> "
+ " <strong>ÁREA!</strong> <br> "
+ " " + area.getNombreArea() + " "
+ " <br> "
+ " </div> "
+ " </div> "
+ " <div class='col-sm-6'> "
+ " <br> "
+ " <div class='alert alert-warning'> "
+ " <button type='button' class='close' data-dismiss='alert'> "
+ " <i class='ace-icon fa fa-times'></i> "
+ " </button> "
+ " <strong>NOTA!</strong> "
+ " Seleccione su area perteneciente para poder registrar su disponibilidad horaria. "
+ " <br> "
+ " </div> "
+ " </div> "
+ " </fieldset> "
+ " "
+ " </form> "
+ " </div> "
+ " </div> "
+ " </div>");
} else {
pw.println("<input id='idAreasDocente' type='hidden' value='0' >");
pw.println("<input id='idAreasSelect' type='hidden' value='0' >");
pw.println("<div class='widget-box widget-color-dark'> "
+ " <div class='widget-header'> "
+ " <h4 class='widget-title'>ÁREA</h4> "
+ " </div> "
+ " <div class='widget-body'> "
+ " <div class='widget-main no-padding'> "
+ " <form id='registroAreaFormulario' class='formular' method='post'> "
+ " <fieldset> "
+ " <div class='col-sm-6'> "
+ " <label for='form-field-select-3'>¿A qué área asiste? <span style='color: red;'>(*)</span></label> "
+ " <br> "
+ " <span > "
+ " <select id='cmbAreaSelect' class='form-control validate[required]'> "
+ " <option value=''>[Seleccione]</option> ");
pw.println("<option value='1'>MATEMÁTICA</option>");
pw.println("<option value='2'>COMUNICACIÓN</option>");
pw.println("<option value='3'>CIENCIAS SOCIALES</option>");
pw.println("<option value='4'>C.T.A.</option>");
pw.println("<option value='5'>C.E.F.</option>");
pw.println(" </select> "
+ " </span> "
+ " <br> "
+ " </div> "
+ " <div class='col-sm-6'> "
+ " <br> "
+ " <div class='alert alert-warning'> "
+ " <button type='button' class='close' data-dismiss='alert'> "
+ " <i class='ace-icon fa fa-times'></i> "
+ " </button> "
+ " <strong>NOTA!</strong> "
+ " Seleccione su area perteneciente para poder registrar su disponibilidad horaria. "
+ " <br> "
+ " </div> "
+ " </div> "
+ " </fieldset> "
+ " <div class='form-actions center'> "
+ " <button class='btn btn-sm btn-primary' type='button' onclick='validar_seleccion();'> "
+ " <i class='ace-icon fa fa-save icon-on-right bigger-110'></i> "
+ " Seleccionar "
+ " </button> "
+ " </div> "
+ " "
+ " </form> "
+ " </div> "
+ " </div> "
+ " </div>");
}
}
private void registraAreaDocente(HttpServletRequest request, HttpServletResponse response) {
String codArea = request.getParameter("cmbAreaSelect");
String codDocente = request.getParameter("codDocente");
AreaServices servicios = new AreaServices();
int dato = 0;
dato = servicios.registrarAreaDocente(codArea, codDocente);
}
private void cargarAreaJson(HttpServletRequest request, HttpServletResponse response) throws IOException {
AreaServices servicios = new AreaServices();
ArrayList<Area> lista = null;
HttpSession session_actual = request.getSession(true);
Usuario usuario = (Usuario) session_actual.getAttribute("usuario");
int codarea=usuario.getCodarea();
System.out.println("***********************************");
System.out.println(codarea);
lista = servicios.cargarArea(codarea);
response.setContentType("application/json");
PrintWriter pw = response.getWriter();
JSONArray jArray = new JSONArray(lista);
pw.print(jArray);
}
}
......@@ -19,7 +19,6 @@ Menu menu=(Menu)session_actual.getAttribute("menu");
Sede SedeCod=(Sede)session_actual.getAttribute("sedeSessionCod");
PeriodoAcademico periodo=(PeriodoAcademico)session_actual.getAttribute("periodo");
Horario armandoHorario=(Horario)session_actual.getAttribute("armandoHorario");
Grupo CadenaGrupo=(Grupo)session_actual.getAttribute("sessionGrupoHorario");
if(usuario == null || periodo== null){
......
......@@ -24,10 +24,7 @@
<%
HttpSession session_actual = request.getSession(true);
Usuario usuario = (Usuario) session_actual.getAttribute("usuario");
PeriodoAcademico periodo = (PeriodoAcademico) session_actual.getAttribute("periodo");
System.out.println("*******************");
System.out.println(usuario.getCodarea());
%>
<style type="text/css">
@media print {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment