Compare commits
2 Commits
f730ca2675
...
3e5fe22598
Author | SHA1 | Date |
---|---|---|
Soka_jplr | 3e5fe22598 | |
Soka_jplr | 5b0098b2f1 |
|
@ -29,36 +29,41 @@ public class App
|
|||
|
||||
before((request,response)->response.header("Access-Control-Allow-Origin","*"));
|
||||
|
||||
get("/TodosLosAlumnos", (request, response) ->{
|
||||
get("/todosLosAlumnos", (request, response) ->{
|
||||
response.type("application/json");
|
||||
return gson.toJson(DAO.dameUsuarios());
|
||||
return gson.toJson(DAO.dameAlumnos());
|
||||
});
|
||||
post("/agregarAlumno", (request, response) ->{
|
||||
String payload = request.body();
|
||||
Alumno alumno = gson.fromJson(payload, Alumno.class);
|
||||
|
||||
boolean msj = DAO.agregarAlumno(new Alumno("Pedro","Lazaro","Mexicano","SAKHBD197", "PezGato"));
|
||||
boolean msj = DAO.agregarAlumno(alumno);
|
||||
JsonObject respuesta = new JsonObject();
|
||||
respuesta.addProperty("msj", msj);
|
||||
return respuesta;
|
||||
});
|
||||
put("/EditarAlumno", (request, response) ->{
|
||||
put("/editarAlumno", (request, response) ->{
|
||||
String payload = request.body();
|
||||
Alumno alumno = gson.fromJson(payload, Alumno.class);
|
||||
boolean verificado = DAO.editarAlumno(alumno);
|
||||
JsonObject respuesta = new JsonObject();
|
||||
respuesta.addProperty("existe", verificado);
|
||||
respuesta.addProperty("Editado", verificado);
|
||||
return respuesta;
|
||||
});
|
||||
delete("/EliminarAlumno", (request, response) ->{
|
||||
delete("/eliminarAlumno", (request, response) ->{
|
||||
String payload = request.body();
|
||||
Alumno alumno = gson.fromJson(payload, Alumno.class);
|
||||
boolean verificado = DAO.eliminarAlumno(alumno);
|
||||
boolean verificado = DAO.eliminarAlumno(alumno.getId());
|
||||
JsonObject respuesta = new JsonObject();
|
||||
respuesta.addProperty("existe", verificado);
|
||||
return respuesta;
|
||||
});
|
||||
|
||||
get("/alumnoIniciado", (request, response) ->{
|
||||
response.type("application/json");
|
||||
String payload = request.body();
|
||||
Alumno alumno = gson.fromJson(payload, Alumno.class);
|
||||
return gson.toJson(DAO.alumnoIniciado(alumno.getMatricula(),alumno.getContrasena()));
|
||||
});
|
||||
|
||||
}
|
||||
}
|
|
@ -10,7 +10,7 @@ import mx.uv.Model.Alumno;
|
|||
public class DAO {
|
||||
private static Conexion cn = Conexion.getInstance();
|
||||
|
||||
public static List<Alumno> dameUsuarios() {
|
||||
public static List<Alumno> dameAlumnos() {
|
||||
Statement stm = null;
|
||||
ResultSet rs = null;
|
||||
Connection conn = null;
|
||||
|
@ -99,7 +99,7 @@ public class DAO {
|
|||
System.out.println(e);
|
||||
}
|
||||
}
|
||||
public static boolean eliminarAlumno(Alumno alumno) {
|
||||
public static boolean eliminarAlumno(int idAlumno) {
|
||||
|
||||
return false;
|
||||
}
|
||||
|
@ -109,16 +109,40 @@ public class DAO {
|
|||
boolean verificacion =false;
|
||||
conn = cn.conectar();
|
||||
try {
|
||||
String sql ="UPDATE `producto` SET `nombreProducto` = '"+p.getNombreProducto()+"',`precio` = '"+p.getPrecio()+"',`cantidad` = '"+p.getCantidad()+"',`imagen` = '"+p.getImagen()+"'WHERE `id` = '"+p.getId()+"';";
|
||||
String sql ="UPDATE `alumno` SET `nombre` = '"+alumno.getNombre()+"',`apellido` = '"+alumno.getApellido()+"',`fecha_nacimiento` = '"+alumno.getFechaNacimiento()+"',`nacionalidad` = '"+alumno.getNacionalidad()+"', `tipoSangre` = '"+alumno.getTipoDeSangre()+"', `contrasena`= '"+alumno.getContrasena()+"' WHERE `id` = '"+alumno.getId()+"';";
|
||||
stm = conn.prepareStatement(sql);
|
||||
stm.executeUpdate();
|
||||
verificacion = true;
|
||||
conn.close();
|
||||
} catch (SQLException ex) {
|
||||
System.err.println(ex);
|
||||
}finally{
|
||||
actualizarVenta(p);
|
||||
cerrarConexiones(stm, conn);
|
||||
cn.cerrarConexion();
|
||||
}
|
||||
return verificacion;
|
||||
}
|
||||
|
||||
public static Alumno alumnoIniciado(String matricula, String contrasena) {
|
||||
ResultSet rs = null;
|
||||
Connection conn = null;
|
||||
Alumno alumno =null;
|
||||
|
||||
conn = cn.conectar();
|
||||
|
||||
try {
|
||||
String sql = "SELECT * FROM alumno WHERE matricula = ? AND contrasena = ?";
|
||||
PreparedStatement stmt = conn.prepareStatement(sql);
|
||||
stmt.setString(1, matricula);
|
||||
stmt.setString(2, contrasena);
|
||||
rs = stmt.executeQuery();
|
||||
while (rs.next()) {
|
||||
alumno = new Alumno(rs.getInt(1), rs.getString(2), rs.getString(3),rs.getString(4), rs.getString(5),rs.getString(6),rs.getString(7),rs.getString(8));
|
||||
}
|
||||
} catch (Exception e) {
|
||||
System.out.println(e);
|
||||
} finally {
|
||||
cerrarConexiones(null, conn);
|
||||
}
|
||||
return alumno;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<DIV></DIV>
|
||||
<script type="module" src="/src/main.jsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -63,7 +63,9 @@ div.listaLic{
|
|||
width: 100%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
header{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,6 @@ import './OfertaEducativa.css'
|
|||
function OfertaEducativa (){
|
||||
return (
|
||||
<>
|
||||
<body>
|
||||
<header className='headerOE'>
|
||||
<nav>
|
||||
<ul>
|
||||
|
@ -66,7 +65,6 @@ function OfertaEducativa (){
|
|||
<footer className='footerOE'>
|
||||
© 2024 Universidad Filadelfia. Todos los derechos reservados
|
||||
</footer>
|
||||
</body>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
padding: 10px;
|
||||
}
|
||||
|
||||
.formulario h4 {
|
||||
.formulario h4{
|
||||
font-size: 20px;
|
||||
font-style: Jockey One;
|
||||
color: #000000;
|
||||
|
@ -22,35 +22,26 @@
|
|||
|
||||
|
||||
.form {
|
||||
margin-top: 20px;
|
||||
/* Espacio entre el h5 y el formulario */
|
||||
margin-top: 20px; /* Espacio entre el h5 y el formulario */
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
/* Permite que los elementos se envuelvan si no caben en una sola línea */
|
||||
flex-wrap: wrap; /* Permite que los elementos se envuelvan si no caben en una sola línea */
|
||||
}
|
||||
|
||||
.form {
|
||||
margin-top: 20px;
|
||||
/* Espacio entre el h5 y el formulario */
|
||||
margin-top: 20px; /* Espacio entre el h5 y el formulario */
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
/* Permitir que los elementos se envuelvan en filas */
|
||||
justify-content: space-between;
|
||||
/* Distribuir los elementos en tres columnas */
|
||||
flex-wrap: wrap; /* Permitir que los elementos se envuelvan en filas */
|
||||
justify-content: space-between; /* Distribuir los elementos en tres columnas */
|
||||
}
|
||||
|
||||
.campo {
|
||||
width: calc(33.33% - 10px);
|
||||
/* Ancho de cada campo (menos el espacio entre ellos) */
|
||||
margin-bottom: 20px;
|
||||
/* Espacio entre campos */
|
||||
width: calc(33.33% - 10px); /* Ancho de cada campo (menos el espacio entre ellos) */
|
||||
margin-bottom: 20px; /* Espacio entre campos */
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
/* Cambiar la dirección del flujo a vertical */
|
||||
overflow: hidden;
|
||||
/* Oculta cualquier contenido que se desborde del área del input */
|
||||
flex-direction: column; /* Cambiar la dirección del flujo a vertical */
|
||||
overflow: hidden; /* Oculta cualquier contenido que se desborde del área del input */
|
||||
|
||||
}
|
||||
|
||||
|
@ -68,45 +59,41 @@
|
|||
}
|
||||
|
||||
.campo input[type="text"],
|
||||
.campo input[type="correo"],
|
||||
.campo input[type="number"] {
|
||||
width: 100%;
|
||||
/* Ocupar todo el ancho disponible */
|
||||
.campo input[type="number"],
|
||||
.campo select,
|
||||
.campo input[type="password"],
|
||||
.campo input[type="date"],
|
||||
.campo input[type="email"] {
|
||||
width: 100%; /* Ocupar todo el ancho disponible */
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-sizing: border-box;
|
||||
font-size: 16px;
|
||||
transition: border-color 0.3s ease;
|
||||
margin-top: 5px;
|
||||
/* Espacio entre el label y el input */
|
||||
margin-top: 5px; /* Espacio entre el label y el input */
|
||||
}
|
||||
|
||||
|
||||
.btnenviar {
|
||||
text-align: center;
|
||||
/* Centra horizontalmente el contenido */
|
||||
.btnenviar{
|
||||
text-align: center; /* Centra horizontalmente el contenido */
|
||||
}
|
||||
|
||||
.boton {
|
||||
display: flex;
|
||||
margin-left: 45%;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 150px;
|
||||
/* Ajusta el ancho según sea necesario */
|
||||
height: 40px;
|
||||
/* Ajusta la altura según sea necesario */
|
||||
text-align: center;
|
||||
background-color: #007bff;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 5px 10px;
|
||||
padding: 15px 30px;
|
||||
cursor: pointer;
|
||||
border-radius: 5px;
|
||||
font-weight: bold;
|
||||
/* Hace que el texto esté en negrita */
|
||||
font-weight: bold; /* Hace que el texto esté en negrita */
|
||||
}
|
||||
|
||||
.boton:hover {
|
||||
background-color: #0056b3;
|
||||
}
|
||||
}
|
||||
header{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import React from 'react'
|
||||
import ReactDOM from 'react-dom/client'
|
||||
import General from './General'
|
||||
import OfertaEducativa from './OfertaEducativa.jsx'
|
||||
|
||||
ReactDOM.createRoot(document.getElementById('root')).render(
|
||||
<React.StrictMode>
|
||||
|
|
Loading…
Reference in New Issue