├── .classpath ├── .gitattributes ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .project ├── .settings └── org.eclipse.buildship.core.prefs ├── LICENSE ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── manifest.yml ├── mvnw ├── mvnw.cmd ├── pom.xml └── src └── main ├── java └── me │ └── parzibyte │ └── sistemaventasspringboot │ ├── Application.java │ ├── Producto.java │ ├── ProductoParaVender.java │ ├── ProductoVendido.java │ ├── ProductosController.java │ ├── ProductosRepository.java │ ├── ProductosVendidosRepository.java │ ├── Utiles.java │ ├── VenderController.java │ ├── Venta.java │ ├── VentasController.java │ └── VentasRepository.java └── resources ├── application.properties ├── esquema_ventas_springboot.sql ├── static ├── css │ ├── bootstrap.min.css │ ├── fa.min.css │ └── style.css └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 └── templates ├── layouts ├── encabezado.html ├── navbar.html └── pie.html ├── master.html ├── productos ├── agregar_producto.html ├── editar_producto.html └── ver_productos.html ├── vender └── vender.html └── ventas └── ver_ventas.html /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/.classpath -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/gradlew.bat -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/manifest.yml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/Application.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/Producto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/Producto.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/ProductoParaVender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/ProductoParaVender.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/ProductoVendido.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/ProductoVendido.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/ProductosController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/ProductosController.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/ProductosRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/ProductosRepository.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/ProductosVendidosRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/ProductosVendidosRepository.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/Utiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/Utiles.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/VenderController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/VenderController.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/Venta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/Venta.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/VentasController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/VentasController.java -------------------------------------------------------------------------------- /src/main/java/me/parzibyte/sistemaventasspringboot/VentasRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/java/me/parzibyte/sistemaventasspringboot/VentasRepository.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/esquema_ventas_springboot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/esquema_ventas_springboot.sql -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/fa.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/css/fa.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/css/style.css -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/main/resources/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/main/resources/templates/layouts/encabezado.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/templates/layouts/encabezado.html -------------------------------------------------------------------------------- /src/main/resources/templates/layouts/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/templates/layouts/navbar.html -------------------------------------------------------------------------------- /src/main/resources/templates/layouts/pie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/templates/layouts/pie.html -------------------------------------------------------------------------------- /src/main/resources/templates/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/templates/master.html -------------------------------------------------------------------------------- /src/main/resources/templates/productos/agregar_producto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/templates/productos/agregar_producto.html -------------------------------------------------------------------------------- /src/main/resources/templates/productos/editar_producto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/templates/productos/editar_producto.html -------------------------------------------------------------------------------- /src/main/resources/templates/productos/ver_productos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/templates/productos/ver_productos.html -------------------------------------------------------------------------------- /src/main/resources/templates/vender/vender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/templates/vender/vender.html -------------------------------------------------------------------------------- /src/main/resources/templates/ventas/ver_ventas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/sistema-ventas-spring-boot/HEAD/src/main/resources/templates/ventas/ver_ventas.html --------------------------------------------------------------------------------