├── .gitattributes ├── .gitignore ├── BD.php ├── Comun.php ├── LICENSE ├── README.md ├── Sesion.php ├── SesionService.php ├── Utiles.php ├── controllers ├── .htaccess ├── Ajustes.php ├── Clientes.php ├── Cotizaciones.php └── Usuarios.php ├── css ├── bootstrap.min.css └── font-awesome.min.css ├── encabezado.php ├── env.ejemplo.php ├── esquema.sql ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── includes ├── .htaccess ├── actualizar_ajustes.php ├── actualizar_caracteristica_de_cotizacion.php ├── actualizar_cliente.php ├── actualizar_cotizacion.php ├── actualizar_servicio_de_cotizacion.php ├── agregar_caracteristica_a_cotizacion.php ├── agregar_servicio_a_cotizacion.php ├── clientes.php ├── cotizaciones.php ├── creditos.php ├── detalles_caracteristicas_cotizacion.php ├── editar_ajustes.php ├── editar_caracteristica_de_cotizacion.php ├── editar_cliente.php ├── editar_cotizacion.php ├── editar_servicio_de_cotizacion.php ├── eliminar_caracteristica_de_cotizacion.php ├── eliminar_cliente.php ├── eliminar_cotizacion.php ├── eliminar_servicio_de_cotizacion.php ├── guardar_cliente.php ├── guardar_cotizacion.php ├── guardar_usuario.php ├── imprimir_cotizacion.php ├── iniciar_sesion.php ├── login.php ├── logout.php ├── nueva_cotizacion.php ├── nuevo_cliente.php ├── publicidad.php └── registro.php ├── index.php ├── js ├── cotizaciones.js └── vue.js ├── navegacion.php └── pie.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/.gitignore -------------------------------------------------------------------------------- /BD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/BD.php -------------------------------------------------------------------------------- /Comun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/Comun.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/README.md -------------------------------------------------------------------------------- /Sesion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/Sesion.php -------------------------------------------------------------------------------- /SesionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/SesionService.php -------------------------------------------------------------------------------- /Utiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/Utiles.php -------------------------------------------------------------------------------- /controllers/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /controllers/Ajustes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/controllers/Ajustes.php -------------------------------------------------------------------------------- /controllers/Clientes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/controllers/Clientes.php -------------------------------------------------------------------------------- /controllers/Cotizaciones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/controllers/Cotizaciones.php -------------------------------------------------------------------------------- /controllers/Usuarios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/controllers/Usuarios.php -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/css/font-awesome.min.css -------------------------------------------------------------------------------- /encabezado.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/encabezado.php -------------------------------------------------------------------------------- /env.ejemplo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/env.ejemplo.php -------------------------------------------------------------------------------- /esquema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/esquema.sql -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /includes/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /includes/actualizar_ajustes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/actualizar_ajustes.php -------------------------------------------------------------------------------- /includes/actualizar_caracteristica_de_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/actualizar_caracteristica_de_cotizacion.php -------------------------------------------------------------------------------- /includes/actualizar_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/actualizar_cliente.php -------------------------------------------------------------------------------- /includes/actualizar_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/actualizar_cotizacion.php -------------------------------------------------------------------------------- /includes/actualizar_servicio_de_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/actualizar_servicio_de_cotizacion.php -------------------------------------------------------------------------------- /includes/agregar_caracteristica_a_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/agregar_caracteristica_a_cotizacion.php -------------------------------------------------------------------------------- /includes/agregar_servicio_a_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/agregar_servicio_a_cotizacion.php -------------------------------------------------------------------------------- /includes/clientes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/clientes.php -------------------------------------------------------------------------------- /includes/cotizaciones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/cotizaciones.php -------------------------------------------------------------------------------- /includes/creditos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/creditos.php -------------------------------------------------------------------------------- /includes/detalles_caracteristicas_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/detalles_caracteristicas_cotizacion.php -------------------------------------------------------------------------------- /includes/editar_ajustes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/editar_ajustes.php -------------------------------------------------------------------------------- /includes/editar_caracteristica_de_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/editar_caracteristica_de_cotizacion.php -------------------------------------------------------------------------------- /includes/editar_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/editar_cliente.php -------------------------------------------------------------------------------- /includes/editar_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/editar_cotizacion.php -------------------------------------------------------------------------------- /includes/editar_servicio_de_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/editar_servicio_de_cotizacion.php -------------------------------------------------------------------------------- /includes/eliminar_caracteristica_de_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/eliminar_caracteristica_de_cotizacion.php -------------------------------------------------------------------------------- /includes/eliminar_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/eliminar_cliente.php -------------------------------------------------------------------------------- /includes/eliminar_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/eliminar_cotizacion.php -------------------------------------------------------------------------------- /includes/eliminar_servicio_de_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/eliminar_servicio_de_cotizacion.php -------------------------------------------------------------------------------- /includes/guardar_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/guardar_cliente.php -------------------------------------------------------------------------------- /includes/guardar_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/guardar_cotizacion.php -------------------------------------------------------------------------------- /includes/guardar_usuario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/guardar_usuario.php -------------------------------------------------------------------------------- /includes/imprimir_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/imprimir_cotizacion.php -------------------------------------------------------------------------------- /includes/iniciar_sesion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/iniciar_sesion.php -------------------------------------------------------------------------------- /includes/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/login.php -------------------------------------------------------------------------------- /includes/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/logout.php -------------------------------------------------------------------------------- /includes/nueva_cotizacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/nueva_cotizacion.php -------------------------------------------------------------------------------- /includes/nuevo_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/nuevo_cliente.php -------------------------------------------------------------------------------- /includes/publicidad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/publicidad.php -------------------------------------------------------------------------------- /includes/registro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/includes/registro.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/index.php -------------------------------------------------------------------------------- /js/cotizaciones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/js/cotizaciones.js -------------------------------------------------------------------------------- /js/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/js/vue.js -------------------------------------------------------------------------------- /navegacion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/navegacion.php -------------------------------------------------------------------------------- /pie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/cotizaciones_web/HEAD/pie.php --------------------------------------------------------------------------------