5 changed files with 1287 additions and 0 deletions
-
BINdocs/DiagramaER.png
-
BINdocs/Proyecto de puertos.docx
-
BINdocs/logo-redytel.png
-
799docs/puertos.sql
-
488docs/puertos.svg
|
After Width: 1606 | Height: 849 | Size: 215 KiB |
|
After Width: 510 | Height: 364 | Size: 41 KiB |
@ -0,0 +1,799 @@ |
|||
-- phpMyAdmin SQL Dump |
|||
-- version 5.1.1 |
|||
-- https://www.phpmyadmin.net/ |
|||
-- |
|||
-- Servidor: localhost:3306 |
|||
-- Tiempo de generación: 02-08-2021 a las 11:11:37 |
|||
-- Versión del servidor: 5.7.33 |
|||
-- Versión de PHP: 7.4.19 |
|||
|
|||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
|||
START TRANSACTION; |
|||
SET time_zone = "+00:00"; |
|||
|
|||
|
|||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; |
|||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; |
|||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; |
|||
/*!40101 SET NAMES utf8mb4 */; |
|||
|
|||
-- |
|||
-- Base de datos: `puertos` |
|||
-- |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `bonos` |
|||
-- |
|||
|
|||
CREATE TABLE `bonos` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_producto` int(11) NOT NULL, |
|||
`id_cliente` int(11) NOT NULL, |
|||
`id_factura` int(11) NOT NULL, |
|||
`tiempo_total` time NOT NULL, |
|||
`tiempo_consumido` time NOT NULL, |
|||
`hash` varchar(255) NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `categorias` |
|||
-- |
|||
|
|||
CREATE TABLE `categorias` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_categoria` int(11) NOT NULL, |
|||
`nombre` text NOT NULL, |
|||
`descripcion` text NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `clientes` |
|||
-- |
|||
|
|||
CREATE TABLE `clientes` ( |
|||
`id` int(11) NOT NULL, |
|||
`nombre` varchar(255) NOT NULL, |
|||
`apellidos` varchar(255) NOT NULL, |
|||
`nif` varchar(255) NOT NULL, |
|||
`empresa` varchar(255) NOT NULL, |
|||
`email` varchar(255) NOT NULL, |
|||
`username` varchar(255) NOT NULL, |
|||
`password` text NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `comentarios` |
|||
-- |
|||
|
|||
CREATE TABLE `comentarios` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_cliente` int(11) NOT NULL, |
|||
`id_producto` int(11) NOT NULL, |
|||
`comentario` text NOT NULL, |
|||
`fecha` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, |
|||
`rating` int(11) NOT NULL DEFAULT '5' |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `configuracion` |
|||
-- |
|||
|
|||
CREATE TABLE `configuracion` ( |
|||
`id` int(11) NOT NULL, |
|||
`clave` text NOT NULL, |
|||
`valor` text NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `direcciones` |
|||
-- |
|||
|
|||
CREATE TABLE `direcciones` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_cliente` int(11) NOT NULL, |
|||
`dieccion` text NOT NULL, |
|||
`cp` varchar(10) NOT NULL, |
|||
`poblacion` varchar(255) NOT NULL, |
|||
`provincia` varchar(255) NOT NULL, |
|||
`pais` varchar(10) NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `facturas` |
|||
-- |
|||
|
|||
CREATE TABLE `facturas` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_cliente` int(11) NOT NULL, |
|||
`fecha` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, |
|||
`estado` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Estado pendiente o pagado.', |
|||
`numerofactura` varchar(10) NOT NULL, |
|||
`filepdf` text NOT NULL, |
|||
`precio` float NOT NULL, |
|||
`impuestos` float NOT NULL COMMENT 'total de los impuestos en euros', |
|||
`total` float NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `facturaslinea` |
|||
-- |
|||
|
|||
CREATE TABLE `facturaslinea` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_producto` int(11) NOT NULL, |
|||
`cantidad` int(11) NOT NULL COMMENT 'Cantidad de productos', |
|||
`precio` float NOT NULL COMMENT 'Precio unitario en el momento de la compra', |
|||
`impuestos` float NOT NULL COMMENT 'Porcentaje de impuestos', |
|||
`id_variante` int(11) NOT NULL, |
|||
`id_factura` int(11) NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `formularios` |
|||
-- |
|||
|
|||
CREATE TABLE `formularios` ( |
|||
`id` int(11) NOT NULL, |
|||
`nombre` text NOT NULL, |
|||
`descripcion` text, |
|||
`id_plantilla` int(11) NOT NULL, |
|||
`alias` varchar(255) NOT NULL, |
|||
`fecha_creacion` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, |
|||
`fecha_modificacion` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `idioma` |
|||
-- |
|||
|
|||
CREATE TABLE `idioma` ( |
|||
`id` int(11) NOT NULL, |
|||
`codigo` varchar(3) NOT NULL, |
|||
`nombre` varchar(255) NOT NULL, |
|||
`activo` tinyint(4) NOT NULL DEFAULT '0' |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `imagenes` |
|||
-- |
|||
|
|||
CREATE TABLE `imagenes` ( |
|||
`id` int(11) NOT NULL, |
|||
`url` text, |
|||
`title` text, |
|||
`base64` text |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `menu` |
|||
-- |
|||
|
|||
CREATE TABLE `menu` ( |
|||
`id` int(11) NOT NULL, |
|||
`alias` int(11) NOT NULL, |
|||
`titulo` int(11) NOT NULL, |
|||
`descripcion` int(11) DEFAULT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `menuitem` |
|||
-- |
|||
|
|||
CREATE TABLE `menuitem` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_menu` int(11) NOT NULL, |
|||
`posicion` int(11) NOT NULL, |
|||
`alias` int(11) NOT NULL, |
|||
`nombre` int(11) NOT NULL, |
|||
`descripcion` int(11) NOT NULL, |
|||
`id_imagen` int(11) DEFAULT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `modulos` |
|||
-- |
|||
|
|||
CREATE TABLE `modulos` ( |
|||
`id` int(11) NOT NULL, |
|||
`tipo` varchar(20) NOT NULL, |
|||
`nombre` varchar(255) NOT NULL, |
|||
`tabla` varchar(255) DEFAULT NULL, |
|||
`activo` tinyint(4) NOT NULL DEFAULT '0', |
|||
`fecha_creacion` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, |
|||
`fecha_modificacion` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `pagina` |
|||
-- |
|||
|
|||
CREATE TABLE `pagina` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_plantilla` int(11) NOT NULL, |
|||
`url` int(11) NOT NULL, |
|||
`titulo` int(11) NOT NULL, |
|||
`contenido` int(11) DEFAULT NULL, |
|||
`publicada` tinyint(4) NOT NULL DEFAULT '0', |
|||
`fecha_creacion` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, |
|||
`fecha_actualizacion` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `plantillas` |
|||
-- |
|||
|
|||
CREATE TABLE `plantillas` ( |
|||
`id` int(11) NOT NULL, |
|||
`nombre` varchar(255) NOT NULL, |
|||
`alias` varchar(255) NOT NULL, |
|||
`twig` text NOT NULL, |
|||
`ispdf` tinyint(4) NOT NULL DEFAULT '0', |
|||
`twigpdf` text NOT NULL, |
|||
`iscomponent` tinyint(4) NOT NULL DEFAULT '0' |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `preguntaformulario` |
|||
-- |
|||
|
|||
CREATE TABLE `preguntaformulario` ( |
|||
`id` int(11) NOT NULL, |
|||
`alias` varchar(255) NOT NULL, |
|||
`nombre` text NOT NULL, |
|||
`descripcion` text NOT NULL, |
|||
`id_tipo` int(11) NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `presupuestos` |
|||
-- |
|||
|
|||
CREATE TABLE `presupuestos` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_cliente` int(11) NOT NULL, |
|||
`id_producto` int(11) NOT NULL, |
|||
`cantidad` int(11) NOT NULL, |
|||
`id_variante` int(11) NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `productocategoria` |
|||
-- |
|||
|
|||
CREATE TABLE `productocategoria` ( |
|||
`id_producto` int(11) NOT NULL, |
|||
`id_categoria` int(11) NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `productos` |
|||
-- |
|||
|
|||
CREATE TABLE `productos` ( |
|||
`id` int(11) NOT NULL, |
|||
`nombre` text NOT NULL, |
|||
`descripcion` text NOT NULL, |
|||
`precio` float NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `productosimagen` |
|||
-- |
|||
|
|||
CREATE TABLE `productosimagen` ( |
|||
`id_imagen` int(11) NOT NULL, |
|||
`id_producto` int(11) NOT NULL, |
|||
`id_variante` int(11) NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `productovariantes` |
|||
-- |
|||
|
|||
CREATE TABLE `productovariantes` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_producto` int(11) NOT NULL, |
|||
`nombre` text, |
|||
`descripcion` text, |
|||
`precio` float DEFAULT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `respuestaformulario` |
|||
-- |
|||
|
|||
CREATE TABLE `respuestaformulario` ( |
|||
`id` int(11) NOT NULL, |
|||
`id_pregunta` int(11) NOT NULL, |
|||
`id_formulario` int(11) NOT NULL, |
|||
`id_cliente` int(11) NOT NULL, |
|||
`valor` int(11) NOT NULL, |
|||
`fecha` date NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- -------------------------------------------------------- |
|||
|
|||
-- |
|||
-- Estructura de tabla para la tabla `tipopregunta` |
|||
-- |
|||
|
|||
CREATE TABLE `tipopregunta` ( |
|||
`id` int(11) NOT NULL, |
|||
`nombre` varchar(255) NOT NULL, |
|||
`alias` varchar(255) NOT NULL, |
|||
`id_plantilla` int(11) NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|||
|
|||
-- |
|||
-- Índices para tablas volcadas |
|||
-- |
|||
|
|||
-- |
|||
-- Indices de la tabla `bonos` |
|||
-- |
|||
ALTER TABLE `bonos` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD UNIQUE KEY `hash` (`hash`), |
|||
ADD KEY `id_producto` (`id_producto`), |
|||
ADD KEY `id_cliente` (`id_cliente`), |
|||
ADD KEY `id_factura` (`id_factura`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `categorias` |
|||
-- |
|||
ALTER TABLE `categorias` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_categoria` (`id_categoria`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `clientes` |
|||
-- |
|||
ALTER TABLE `clientes` |
|||
ADD PRIMARY KEY (`id`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `comentarios` |
|||
-- |
|||
ALTER TABLE `comentarios` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_cliente` (`id_cliente`), |
|||
ADD KEY `id_producto` (`id_producto`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `configuracion` |
|||
-- |
|||
ALTER TABLE `configuracion` |
|||
ADD PRIMARY KEY (`id`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `direcciones` |
|||
-- |
|||
ALTER TABLE `direcciones` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_cliente` (`id_cliente`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `facturas` |
|||
-- |
|||
ALTER TABLE `facturas` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_cliente` (`id_cliente`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `facturaslinea` |
|||
-- |
|||
ALTER TABLE `facturaslinea` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_producto` (`id_producto`), |
|||
ADD KEY `id_variante` (`id_variante`), |
|||
ADD KEY `id_factura` (`id_factura`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `formularios` |
|||
-- |
|||
ALTER TABLE `formularios` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_plantilla` (`id_plantilla`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `idioma` |
|||
-- |
|||
ALTER TABLE `idioma` |
|||
ADD PRIMARY KEY (`id`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `imagenes` |
|||
-- |
|||
ALTER TABLE `imagenes` |
|||
ADD PRIMARY KEY (`id`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `menu` |
|||
-- |
|||
ALTER TABLE `menu` |
|||
ADD PRIMARY KEY (`id`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `menuitem` |
|||
-- |
|||
ALTER TABLE `menuitem` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_menu` (`id_menu`), |
|||
ADD KEY `id_imagen` (`id_imagen`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `modulos` |
|||
-- |
|||
ALTER TABLE `modulos` |
|||
ADD PRIMARY KEY (`id`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `pagina` |
|||
-- |
|||
ALTER TABLE `pagina` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_plantilla` (`id_plantilla`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `plantillas` |
|||
-- |
|||
ALTER TABLE `plantillas` |
|||
ADD PRIMARY KEY (`id`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `preguntaformulario` |
|||
-- |
|||
ALTER TABLE `preguntaformulario` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_tipo` (`id_tipo`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `presupuestos` |
|||
-- |
|||
ALTER TABLE `presupuestos` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_cliente` (`id_cliente`), |
|||
ADD KEY `id_producto` (`id_producto`), |
|||
ADD KEY `id_variante` (`id_variante`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `productocategoria` |
|||
-- |
|||
ALTER TABLE `productocategoria` |
|||
ADD PRIMARY KEY (`id_categoria`,`id_producto`) USING BTREE, |
|||
ADD KEY `id_producto` (`id_producto`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `productos` |
|||
-- |
|||
ALTER TABLE `productos` |
|||
ADD PRIMARY KEY (`id`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `productosimagen` |
|||
-- |
|||
ALTER TABLE `productosimagen` |
|||
ADD PRIMARY KEY (`id_imagen`,`id_producto`,`id_variante`), |
|||
ADD KEY `id_variante` (`id_variante`), |
|||
ADD KEY `id_producto` (`id_producto`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `productovariantes` |
|||
-- |
|||
ALTER TABLE `productovariantes` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_producto` (`id_producto`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `respuestaformulario` |
|||
-- |
|||
ALTER TABLE `respuestaformulario` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_pregunta` (`id_pregunta`), |
|||
ADD KEY `id_formulario` (`id_formulario`), |
|||
ADD KEY `id_cliente` (`id_cliente`); |
|||
|
|||
-- |
|||
-- Indices de la tabla `tipopregunta` |
|||
-- |
|||
ALTER TABLE `tipopregunta` |
|||
ADD PRIMARY KEY (`id`), |
|||
ADD KEY `id_plantilla` (`id_plantilla`); |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de las tablas volcadas |
|||
-- |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `bonos` |
|||
-- |
|||
ALTER TABLE `bonos` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `categorias` |
|||
-- |
|||
ALTER TABLE `categorias` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `clientes` |
|||
-- |
|||
ALTER TABLE `clientes` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `comentarios` |
|||
-- |
|||
ALTER TABLE `comentarios` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `configuracion` |
|||
-- |
|||
ALTER TABLE `configuracion` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `direcciones` |
|||
-- |
|||
ALTER TABLE `direcciones` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `facturas` |
|||
-- |
|||
ALTER TABLE `facturas` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `facturaslinea` |
|||
-- |
|||
ALTER TABLE `facturaslinea` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `formularios` |
|||
-- |
|||
ALTER TABLE `formularios` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `idioma` |
|||
-- |
|||
ALTER TABLE `idioma` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `imagenes` |
|||
-- |
|||
ALTER TABLE `imagenes` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `menu` |
|||
-- |
|||
ALTER TABLE `menu` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `menuitem` |
|||
-- |
|||
ALTER TABLE `menuitem` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `modulos` |
|||
-- |
|||
ALTER TABLE `modulos` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `pagina` |
|||
-- |
|||
ALTER TABLE `pagina` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `plantillas` |
|||
-- |
|||
ALTER TABLE `plantillas` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `preguntaformulario` |
|||
-- |
|||
ALTER TABLE `preguntaformulario` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `presupuestos` |
|||
-- |
|||
ALTER TABLE `presupuestos` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `productos` |
|||
-- |
|||
ALTER TABLE `productos` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `respuestaformulario` |
|||
-- |
|||
ALTER TABLE `respuestaformulario` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- AUTO_INCREMENT de la tabla `tipopregunta` |
|||
-- |
|||
ALTER TABLE `tipopregunta` |
|||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; |
|||
|
|||
-- |
|||
-- Restricciones para tablas volcadas |
|||
-- |
|||
|
|||
-- |
|||
-- Filtros para la tabla `bonos` |
|||
-- |
|||
ALTER TABLE `bonos` |
|||
ADD CONSTRAINT `bonos_ibfk_1` FOREIGN KEY (`id_producto`) REFERENCES `productos` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `bonos_ibfk_2` FOREIGN KEY (`id_cliente`) REFERENCES `clientes` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `bonos_ibfk_3` FOREIGN KEY (`id_factura`) REFERENCES `facturas` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `categorias` |
|||
-- |
|||
ALTER TABLE `categorias` |
|||
ADD CONSTRAINT `categorias_ibfk_1` FOREIGN KEY (`id_categoria`) REFERENCES `categorias` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `comentarios` |
|||
-- |
|||
ALTER TABLE `comentarios` |
|||
ADD CONSTRAINT `comentarios_ibfk_1` FOREIGN KEY (`id_cliente`) REFERENCES `clientes` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `comentarios_ibfk_2` FOREIGN KEY (`id_producto`) REFERENCES `productos` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `direcciones` |
|||
-- |
|||
ALTER TABLE `direcciones` |
|||
ADD CONSTRAINT `direcciones_ibfk_1` FOREIGN KEY (`id_cliente`) REFERENCES `clientes` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `facturas` |
|||
-- |
|||
ALTER TABLE `facturas` |
|||
ADD CONSTRAINT `facturas_ibfk_1` FOREIGN KEY (`id_cliente`) REFERENCES `clientes` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `facturaslinea` |
|||
-- |
|||
ALTER TABLE `facturaslinea` |
|||
ADD CONSTRAINT `facturaslinea_ibfk_2` FOREIGN KEY (`id_producto`) REFERENCES `productos` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `facturaslinea_ibfk_3` FOREIGN KEY (`id_factura`) REFERENCES `facturas` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `facturaslinea_ibfk_4` FOREIGN KEY (`id_variante`) REFERENCES `productovariantes` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `formularios` |
|||
-- |
|||
ALTER TABLE `formularios` |
|||
ADD CONSTRAINT `formularios_ibfk_1` FOREIGN KEY (`id_plantilla`) REFERENCES `plantillas` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `imagenes` |
|||
-- |
|||
ALTER TABLE `imagenes` |
|||
ADD CONSTRAINT `imagenes_ibfk_1` FOREIGN KEY (`id`) REFERENCES `productosimagen` (`id_imagen`) ON DELETE CASCADE; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `menuitem` |
|||
-- |
|||
ALTER TABLE `menuitem` |
|||
ADD CONSTRAINT `menuitem_ibfk_1` FOREIGN KEY (`id_menu`) REFERENCES `menu` (`id`) ON DELETE CASCADE; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `pagina` |
|||
-- |
|||
ALTER TABLE `pagina` |
|||
ADD CONSTRAINT `pagina_ibfk_1` FOREIGN KEY (`id_plantilla`) REFERENCES `plantillas` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `preguntaformulario` |
|||
-- |
|||
ALTER TABLE `preguntaformulario` |
|||
ADD CONSTRAINT `preguntaformulario_ibfk_1` FOREIGN KEY (`id_tipo`) REFERENCES `tipopregunta` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `presupuestos` |
|||
-- |
|||
ALTER TABLE `presupuestos` |
|||
ADD CONSTRAINT `presupuestos_ibfk_1` FOREIGN KEY (`id_producto`) REFERENCES `productos` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `presupuestos_ibfk_2` FOREIGN KEY (`id_cliente`) REFERENCES `clientes` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `presupuestos_ibfk_3` FOREIGN KEY (`id_variante`) REFERENCES `productovariantes` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `productocategoria` |
|||
-- |
|||
ALTER TABLE `productocategoria` |
|||
ADD CONSTRAINT `productocategoria_ibfk_1` FOREIGN KEY (`id_producto`) REFERENCES `productos` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `productocategoria_ibfk_2` FOREIGN KEY (`id_categoria`) REFERENCES `categorias` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `productosimagen` |
|||
-- |
|||
ALTER TABLE `productosimagen` |
|||
ADD CONSTRAINT `productosimagen_ibfk_1` FOREIGN KEY (`id_variante`) REFERENCES `productovariantes` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `productosimagen_ibfk_2` FOREIGN KEY (`id_producto`) REFERENCES `productos` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `productovariantes` |
|||
-- |
|||
ALTER TABLE `productovariantes` |
|||
ADD CONSTRAINT `productovariantes_ibfk_1` FOREIGN KEY (`id_producto`) REFERENCES `productos` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `respuestaformulario` |
|||
-- |
|||
ALTER TABLE `respuestaformulario` |
|||
ADD CONSTRAINT `respuestaformulario_ibfk_1` FOREIGN KEY (`id_formulario`) REFERENCES `formularios` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `respuestaformulario_ibfk_2` FOREIGN KEY (`id_pregunta`) REFERENCES `preguntaformulario` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, |
|||
ADD CONSTRAINT `respuestaformulario_ibfk_3` FOREIGN KEY (`id_cliente`) REFERENCES `clientes` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
|
|||
-- |
|||
-- Filtros para la tabla `tipopregunta` |
|||
-- |
|||
ALTER TABLE `tipopregunta` |
|||
ADD CONSTRAINT `tipopregunta_ibfk_1` FOREIGN KEY (`id_plantilla`) REFERENCES `plantillas` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
|||
COMMIT; |
|||
|
|||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; |
|||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; |
|||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; |
|||
@ -0,0 +1,488 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE svg |
|||
PUBLIC "-//W3C//DTD SVG 1.1//EN" |
|||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> |
|||
<svg viewBox="128 -2 1590 980" width="1462px" height="982px" xmlns="http://www.w3.org/2000/svg" version="1.1"> |
|||
<line x1="680" y1="561" x2="690" y2="561" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="817" y1="310" x2="827" y2="310" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="690" y1="561" x2="817" y2="310" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="687,5" y1="561" x2="683,96446609407" y2="564,53553390593" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="687,5" y1="561" x2="683,96446609407" y2="557,46446609407" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="822" y1="310" x2="818,46446609407" y2="313,53553390593" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="822" y1="310" x2="818,46446609407" y2="306,46446609407" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="539" y1="581" x2="529" y2="581" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="511" y1="265" x2="501" y2="265" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="529" y1="581" x2="511" y2="265" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="531,5" y1="581" x2="535,03553390593" y2="584,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="531,5" y1="581" x2="535,03553390593" y2="577,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="506" y1="265" x2="509,53553390593" y2="268,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="506" y1="265" x2="509,53553390593" y2="261,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="539" y1="601" x2="529" y2="601" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="250" y1="263" x2="240" y2="263" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="529" y1="601" x2="250" y2="263" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="531,5" y1="601" x2="535,03553390593" y2="604,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="531,5" y1="601" x2="535,03553390593" y2="597,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="245" y1="263" x2="248,53553390593" y2="266,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="245" y1="263" x2="248,53553390593" y2="259,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="822" y1="562" x2="812" y2="562" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="812" y1="542" x2="822" y2="542" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="812" y1="562" x2="812" y2="542" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="814,5" y1="562" x2="818,03553390593" y2="565,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="814,5" y1="562" x2="818,03553390593" y2="558,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="817" y1="542" x2="813,46446609407" y2="545,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="817" y1="542" x2="813,46446609407" y2="538,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="427" y1="82" x2="417" y2="82" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="410" y1="265" x2="420" y2="265" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="417" y1="82" x2="410" y2="265" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="419,5" y1="82" x2="423,03553390593" y2="85,535533905933" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="419,5" y1="82" x2="423,03553390593" y2="78,464466094067" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="415" y1="265" x2="411,46446609407" y2="268,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="415" y1="265" x2="411,46446609407" y2="261,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="259" y1="481" x2="269" y2="481" style="stroke:#b0b;stroke-width:1;"/> |
|||
<line x1="410" y1="265" x2="420" y2="265" style="stroke:#b0b;stroke-width:1;"/> |
|||
<line x1="269" y1="481" x2="410" y2="265" style="stroke:#b0b;stroke-width:1;"/> |
|||
<line x1="266,5" y1="481" x2="262,96446609407" y2="484,53553390593" style="stroke:#b0b;stroke-width:2;"/> |
|||
<line x1="266,5" y1="481" x2="262,96446609407" y2="477,46446609407" style="stroke:#b0b;stroke-width:2;"/> |
|||
<line x1="415" y1="265" x2="411,46446609407" y2="268,53553390593" style="stroke:#b0b;stroke-width:2;"/> |
|||
<line x1="415" y1="265" x2="411,46446609407" y2="261,46446609407" style="stroke:#b0b;stroke-width:2;"/> |
|||
<line x1="240" y1="283" x2="250" y2="283" style="stroke:#c00;stroke-width:1;"/> |
|||
<line x1="817" y1="310" x2="827" y2="310" style="stroke:#c00;stroke-width:1;"/> |
|||
<line x1="250" y1="283" x2="817" y2="310" style="stroke:#c00;stroke-width:1;"/> |
|||
<line x1="247,5" y1="283" x2="243,96446609407" y2="286,53553390593" style="stroke:#c00;stroke-width:2;"/> |
|||
<line x1="247,5" y1="283" x2="243,96446609407" y2="279,46446609407" style="stroke:#c00;stroke-width:2;"/> |
|||
<line x1="822" y1="310" x2="818,46446609407" y2="313,53553390593" style="stroke:#c00;stroke-width:2;"/> |
|||
<line x1="822" y1="310" x2="818,46446609407" y2="306,46446609407" style="stroke:#c00;stroke-width:2;"/> |
|||
<line x1="143" y1="383" x2="133" y2="383" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="136" y1="461" x2="146" y2="461" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="133" y1="383" x2="136" y2="461" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="135,5" y1="383" x2="139,03553390593" y2="386,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="135,5" y1="383" x2="139,03553390593" y2="379,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="141" y1="461" x2="137,46446609407" y2="464,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="141" y1="461" x2="137,46446609407" y2="457,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="240" y1="363" x2="250" y2="363" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="1123" y1="279" x2="1133" y2="279" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="250" y1="363" x2="1123" y2="279" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="247,5" y1="363" x2="243,96446609407" y2="366,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="247,5" y1="363" x2="243,96446609407" y2="359,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1128" y1="279" x2="1124,4644660941" y2="282,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1128" y1="279" x2="1124,4644660941" y2="275,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1161" y1="786" x2="1151" y2="786" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="567" y1="830" x2="557" y2="830" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="1151" y1="786" x2="567" y2="830" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="1153,5" y1="786" x2="1157,0355339059" y2="789,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1153,5" y1="786" x2="1157,0355339059" y2="782,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="562" y1="830" x2="565,53553390593" y2="833,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="562" y1="830" x2="565,53553390593" y2="826,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1092" y1="43" x2="1082" y2="43" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="1062" y1="177" x2="1072" y2="177" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="1082" y1="43" x2="1062" y2="177" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="1084,5" y1="43" x2="1088,0355339059" y2="46,535533905933" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1084,5" y1="43" x2="1088,0355339059" y2="39,464466094067" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1067" y1="177" x2="1063,4644660941" y2="180,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1067" y1="177" x2="1063,4644660941" y2="173,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="751" y1="67" x2="761" y2="67" style="stroke:#b0b;stroke-width:1;"/> |
|||
<line x1="870" y1="62" x2="880" y2="62" style="stroke:#b0b;stroke-width:1;"/> |
|||
<line x1="761" y1="67" x2="870" y2="62" style="stroke:#b0b;stroke-width:1;"/> |
|||
<line x1="758,5" y1="67" x2="754,96446609407" y2="70,535533905933" style="stroke:#b0b;stroke-width:2;"/> |
|||
<line x1="758,5" y1="67" x2="754,96446609407" y2="63,464466094067" style="stroke:#b0b;stroke-width:2;"/> |
|||
<line x1="875" y1="62" x2="871,46446609407" y2="65,535533905933" style="stroke:#b0b;stroke-width:2;"/> |
|||
<line x1="875" y1="62" x2="871,46446609407" y2="58,464466094067" style="stroke:#b0b;stroke-width:2;"/> |
|||
<line x1="318" y1="835" x2="328" y2="835" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="446" y1="830" x2="456" y2="830" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="328" y1="835" x2="446" y2="830" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="325,5" y1="835" x2="321,96446609407" y2="838,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="325,5" y1="835" x2="321,96446609407" y2="831,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="451" y1="830" x2="447,46446609407" y2="833,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="451" y1="830" x2="447,46446609407" y2="826,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="842" y1="941" x2="832" y2="941" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="753" y1="865" x2="743" y2="865" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="832" y1="941" x2="753" y2="865" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="834,5" y1="941" x2="838,03553390593" y2="944,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="834,5" y1="941" x2="838,03553390593" y2="937,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="748" y1="865" x2="751,53553390593" y2="868,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="748" y1="865" x2="751,53553390593" y2="861,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1141" y1="553" x2="1131" y2="553" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="928" y1="310" x2="918" y2="310" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="1131" y1="553" x2="928" y2="310" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="1133,5" y1="553" x2="1137,0355339059" y2="556,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1133,5" y1="553" x2="1137,0355339059" y2="549,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="923" y1="310" x2="926,53553390593" y2="313,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="923" y1="310" x2="926,53553390593" y2="306,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1141" y1="533" x2="1131" y2="533" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="511" y1="265" x2="501" y2="265" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="1131" y1="533" x2="511" y2="265" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="1133,5" y1="533" x2="1137,0355339059" y2="536,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1133,5" y1="533" x2="1137,0355339059" y2="529,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="506" y1="265" x2="509,53553390593" y2="268,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="506" y1="265" x2="509,53553390593" y2="261,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1141" y1="593" x2="1131" y2="593" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="1123" y1="279" x2="1133" y2="279" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="1131" y1="593" x2="1123" y2="279" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="1133,5" y1="593" x2="1137,0355339059" y2="596,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="1133,5" y1="593" x2="1137,0355339059" y2="589,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="1128" y1="279" x2="1124,4644660941" y2="282,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="1128" y1="279" x2="1124,4644660941" y2="275,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="938" y1="454" x2="948" y2="454" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="928" y1="310" x2="918" y2="310" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="948" y1="454" x2="928" y2="310" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="945,5" y1="454" x2="941,96446609407" y2="457,53553390593" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="945,5" y1="454" x2="941,96446609407" y2="450,46446609407" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="923" y1="310" x2="926,53553390593" y2="313,53553390593" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="923" y1="310" x2="926,53553390593" y2="306,46446609407" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="803" y1="474" x2="793" y2="474" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="812" y1="542" x2="822" y2="542" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="793" y1="474" x2="812" y2="542" style="stroke:#0bf;stroke-width:1;"/> |
|||
<line x1="795,5" y1="474" x2="799,03553390593" y2="477,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="795,5" y1="474" x2="799,03553390593" y2="470,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="817" y1="542" x2="813,46446609407" y2="545,53553390593" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="817" y1="542" x2="813,46446609407" y2="538,46446609407" style="stroke:#0bf;stroke-width:2;"/> |
|||
<line x1="1072" y1="217" x2="1062" y2="217" style="stroke:#0b0;stroke-width:1;"/> |
|||
<line x1="1123" y1="279" x2="1133" y2="279" style="stroke:#0b0;stroke-width:1;"/> |
|||
<line x1="1062" y1="217" x2="1123" y2="279" style="stroke:#0b0;stroke-width:1;"/> |
|||
<line x1="1064,5" y1="217" x2="1068,0355339059" y2="220,53553390593" style="stroke:#0b0;stroke-width:2;"/> |
|||
<line x1="1064,5" y1="217" x2="1068,0355339059" y2="213,46446609407" style="stroke:#0b0;stroke-width:2;"/> |
|||
<line x1="1128" y1="279" x2="1124,4644660941" y2="282,53553390593" style="stroke:#0b0;stroke-width:2;"/> |
|||
<line x1="1128" y1="279" x2="1124,4644660941" y2="275,46446609407" style="stroke:#0b0;stroke-width:2;"/> |
|||
<line x1="1072" y1="197" x2="1062" y2="197" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="928" y1="310" x2="918" y2="310" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="1062" y1="197" x2="928" y2="310" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="1064,5" y1="197" x2="1068,0355339059" y2="200,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="1064,5" y1="197" x2="1068,0355339059" y2="193,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="923" y1="310" x2="926,53553390593" y2="313,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="923" y1="310" x2="926,53553390593" y2="306,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="1133" y1="299" x2="1123" y2="299" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="928" y1="310" x2="918" y2="310" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="1123" y1="299" x2="928" y2="310" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="1125,5" y1="299" x2="1129,0355339059" y2="302,53553390593" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="1125,5" y1="299" x2="1129,0355339059" y2="295,46446609407" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="923" y1="310" x2="926,53553390593" y2="313,53553390593" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="923" y1="310" x2="926,53553390593" y2="306,46446609407" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="395" y1="668" x2="405" y2="668" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="1151" y1="726" x2="1161" y2="726" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="405" y1="668" x2="1151" y2="726" style="stroke:#333;stroke-width:1;"/> |
|||
<line x1="402,5" y1="668" x2="398,96446609407" y2="671,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="402,5" y1="668" x2="398,96446609407" y2="664,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="1156" y1="726" x2="1152,4644660941" y2="729,53553390593" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="1156" y1="726" x2="1152,4644660941" y2="722,46446609407" style="stroke:#333;stroke-width:2;"/> |
|||
<line x1="395" y1="648" x2="405" y2="648" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="832" y1="861" x2="842" y2="861" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="405" y1="648" x2="832" y2="861" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="402,5" y1="648" x2="398,96446609407" y2="651,53553390593" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="402,5" y1="648" x2="398,96446609407" y2="644,46446609407" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="837" y1="861" x2="833,46446609407" y2="864,53553390593" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="837" y1="861" x2="833,46446609407" y2="857,46446609407" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="395" y1="688" x2="405" y2="688" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="410" y1="265" x2="420" y2="265" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="405" y1="688" x2="410" y2="265" style="stroke:#cb0;stroke-width:1;"/> |
|||
<line x1="402,5" y1="688" x2="398,96446609407" y2="691,53553390593" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="402,5" y1="688" x2="398,96446609407" y2="684,46446609407" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="415" y1="265" x2="411,46446609407" y2="268,53553390593" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="415" y1="265" x2="411,46446609407" y2="261,46446609407" style="stroke:#cb0;stroke-width:2;"/> |
|||
<line x1="647" y1="925" x2="637" y2="925" style="stroke:#c00;stroke-width:1;"/> |
|||
<line x1="567" y1="830" x2="557" y2="830" style="stroke:#c00;stroke-width:1;"/> |
|||
<line x1="637" y1="925" x2="567" y2="830" style="stroke:#c00;stroke-width:1;"/> |
|||
<line x1="639,5" y1="925" x2="643,03553390593" y2="928,53553390593" style="stroke:#c00;stroke-width:2;"/> |
|||
<line x1="639,5" y1="925" x2="643,03553390593" y2="921,46446609407" style="stroke:#c00;stroke-width:2;"/> |
|||
<line x1="562" y1="830" x2="565,53553390593" y2="833,53553390593" style="stroke:#c00;stroke-width:2;"/> |
|||
<line x1="562" y1="830" x2="565,53553390593" y2="826,46446609407" style="stroke:#c00;stroke-width:2;"/> |
|||
<rect width="141" height="20" x="539" y="511" style="fill:#007;stroke:black;"/> |
|||
<text width="141" height="20" x="544" y="525" style="fill:#fff;" font-family="Arial" font-size="16px"> bonos</text> |
|||
<rect width="141" height="20" x="539" y="531" style="fill:#aea;stroke:black;"/> |
|||
<text width="141" height="20" x="544" y="545" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="141" height="20" x="539" y="551" style="fill:none;stroke:black;"/> |
|||
<text width="141" height="20" x="544" y="565" style="fill:black;" font-family="Arial" font-size="16px">id_producto</text> |
|||
<rect width="141" height="20" x="539" y="571" style="fill:none;stroke:black;"/> |
|||
<text width="141" height="20" x="544" y="585" style="fill:black;" font-family="Arial" font-size="16px">id_cliente</text> |
|||
<rect width="141" height="20" x="539" y="591" style="fill:none;stroke:black;"/> |
|||
<text width="141" height="20" x="544" y="605" style="fill:black;" font-family="Arial" font-size="16px">id_factura</text> |
|||
<rect width="141" height="20" x="539" y="611" style="fill:none;stroke:black;"/> |
|||
<text width="141" height="20" x="544" y="625" style="fill:black;" font-family="Arial" font-size="16px">tiempo_total</text> |
|||
<rect width="141" height="20" x="539" y="631" style="fill:none;stroke:black;"/> |
|||
<text width="141" height="20" x="544" y="645" style="fill:black;" font-family="Arial" font-size="16px">tiempo_consumido</text> |
|||
<rect width="141" height="20" x="539" y="651" style="fill:none;stroke:black;"/> |
|||
<text width="141" height="20" x="544" y="665" style="fill:black;" font-family="Arial" font-size="16px">hash</text> |
|||
<rect width="93" height="20" x="822" y="512" style="fill:#007;stroke:black;"/> |
|||
<text width="93" height="20" x="827" y="526" style="fill:#fff;" font-family="Arial" font-size="16px"> categorias</text> |
|||
<rect width="93" height="20" x="822" y="532" style="fill:#aea;stroke:black;"/> |
|||
<text width="93" height="20" x="827" y="546" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="93" height="20" x="822" y="552" style="fill:none;stroke:black;"/> |
|||
<text width="93" height="20" x="827" y="566" style="fill:black;" font-family="Arial" font-size="16px">id_categoria</text> |
|||
<rect width="93" height="20" x="822" y="572" style="fill:none;stroke:black;"/> |
|||
<text width="93" height="20" x="827" y="586" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="93" height="20" x="822" y="592" style="fill:none;stroke:black;"/> |
|||
<text width="93" height="20" x="827" y="606" style="fill:black;" font-family="Arial" font-size="16px">descripcion</text> |
|||
<rect width="81" height="20" x="420" y="235" style="fill:#007;stroke:black;"/> |
|||
<text width="81" height="20" x="425" y="249" style="fill:#fff;" font-family="Arial" font-size="16px"> clientes</text> |
|||
<rect width="81" height="20" x="420" y="255" style="fill:#aea;stroke:black;"/> |
|||
<text width="81" height="20" x="425" y="269" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="81" height="20" x="420" y="275" style="fill:none;stroke:black;"/> |
|||
<text width="81" height="20" x="425" y="289" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="81" height="20" x="420" y="295" style="fill:none;stroke:black;"/> |
|||
<text width="81" height="20" x="425" y="309" style="fill:black;" font-family="Arial" font-size="16px">apellidos</text> |
|||
<rect width="81" height="20" x="420" y="315" style="fill:none;stroke:black;"/> |
|||
<text width="81" height="20" x="425" y="329" style="fill:black;" font-family="Arial" font-size="16px">nif</text> |
|||
<rect width="81" height="20" x="420" y="335" style="fill:none;stroke:black;"/> |
|||
<text width="81" height="20" x="425" y="349" style="fill:black;" font-family="Arial" font-size="16px">empresa</text> |
|||
<rect width="81" height="20" x="420" y="355" style="fill:none;stroke:black;"/> |
|||
<text width="81" height="20" x="425" y="369" style="fill:black;" font-family="Arial" font-size="16px">email</text> |
|||
<rect width="81" height="20" x="420" y="375" style="fill:none;stroke:black;"/> |
|||
<text width="81" height="20" x="425" y="389" style="fill:black;" font-family="Arial" font-size="16px">username</text> |
|||
<rect width="81" height="20" x="420" y="395" style="fill:none;stroke:black;"/> |
|||
<text width="81" height="20" x="425" y="409" style="fill:black;" font-family="Arial" font-size="16px">password</text> |
|||
<rect width="103" height="20" x="1413" y="249" style="fill:#007;stroke:black;"/> |
|||
<text width="103" height="20" x="1418" y="263" style="fill:#fff;" font-family="Arial" font-size="16px"> configuracion</text> |
|||
<rect width="103" height="20" x="1413" y="269" style="fill:#aea;stroke:black;"/> |
|||
<text width="103" height="20" x="1418" y="283" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="103" height="20" x="1413" y="289" style="fill:none;stroke:black;"/> |
|||
<text width="103" height="20" x="1418" y="303" style="fill:black;" font-family="Arial" font-size="16px">clave</text> |
|||
<rect width="103" height="20" x="1413" y="309" style="fill:none;stroke:black;"/> |
|||
<text width="103" height="20" x="1418" y="323" style="fill:black;" font-family="Arial" font-size="16px">valor</text> |
|||
<rect width="93" height="20" x="427" y="32" style="fill:#007;stroke:black;"/> |
|||
<text width="93" height="20" x="432" y="46" style="fill:#fff;" font-family="Arial" font-size="16px"> direcciones</text> |
|||
<rect width="93" height="20" x="427" y="52" style="fill:#aea;stroke:black;"/> |
|||
<text width="93" height="20" x="432" y="66" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="93" height="20" x="427" y="72" style="fill:none;stroke:black;"/> |
|||
<text width="93" height="20" x="432" y="86" style="fill:black;" font-family="Arial" font-size="16px">id_cliente</text> |
|||
<rect width="93" height="20" x="427" y="92" style="fill:none;stroke:black;"/> |
|||
<text width="93" height="20" x="432" y="106" style="fill:black;" font-family="Arial" font-size="16px">dieccion</text> |
|||
<rect width="93" height="20" x="427" y="112" style="fill:none;stroke:black;"/> |
|||
<text width="93" height="20" x="432" y="126" style="fill:black;" font-family="Arial" font-size="16px">cp</text> |
|||
<rect width="93" height="20" x="427" y="132" style="fill:none;stroke:black;"/> |
|||
<text width="93" height="20" x="432" y="146" style="fill:black;" font-family="Arial" font-size="16px">poblacion</text> |
|||
<rect width="93" height="20" x="427" y="152" style="fill:none;stroke:black;"/> |
|||
<text width="93" height="20" x="432" y="166" style="fill:black;" font-family="Arial" font-size="16px">provincia</text> |
|||
<rect width="93" height="20" x="427" y="172" style="fill:none;stroke:black;"/> |
|||
<text width="93" height="20" x="432" y="186" style="fill:black;" font-family="Arial" font-size="16px">pais</text> |
|||
<rect width="113" height="20" x="146" y="431" style="fill:#007;stroke:black;"/> |
|||
<text width="113" height="20" x="151" y="445" style="fill:#fff;" font-family="Arial" font-size="16px"> facturas</text> |
|||
<rect width="113" height="20" x="146" y="451" style="fill:#aea;stroke:black;"/> |
|||
<text width="113" height="20" x="151" y="465" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="113" height="20" x="146" y="471" style="fill:none;stroke:black;"/> |
|||
<text width="113" height="20" x="151" y="485" style="fill:black;" font-family="Arial" font-size="16px">id_cliente</text> |
|||
<rect width="113" height="20" x="146" y="491" style="fill:none;stroke:black;"/> |
|||
<text width="113" height="20" x="151" y="505" style="fill:black;" font-family="Arial" font-size="16px">fecha</text> |
|||
<rect width="113" height="20" x="146" y="511" style="fill:none;stroke:black;"/> |
|||
<text width="113" height="20" x="151" y="525" style="fill:black;" font-family="Arial" font-size="16px">estado</text> |
|||
<rect width="113" height="20" x="146" y="531" style="fill:none;stroke:black;"/> |
|||
<text width="113" height="20" x="151" y="545" style="fill:black;" font-family="Arial" font-size="16px">numerofactura</text> |
|||
<rect width="113" height="20" x="146" y="551" style="fill:none;stroke:black;"/> |
|||
<text width="113" height="20" x="151" y="565" style="fill:black;" font-family="Arial" font-size="16px">filepdf</text> |
|||
<rect width="113" height="20" x="146" y="571" style="fill:none;stroke:black;"/> |
|||
<text width="113" height="20" x="151" y="585" style="fill:black;" font-family="Arial" font-size="16px">precio</text> |
|||
<rect width="113" height="20" x="146" y="591" style="fill:none;stroke:black;"/> |
|||
<text width="113" height="20" x="151" y="605" style="fill:black;" font-family="Arial" font-size="16px">impuestos</text> |
|||
<rect width="113" height="20" x="146" y="611" style="fill:none;stroke:black;"/> |
|||
<text width="113" height="20" x="151" y="625" style="fill:black;" font-family="Arial" font-size="16px">total</text> |
|||
<rect width="97" height="20" x="143" y="233" style="fill:#007;stroke:black;"/> |
|||
<text width="97" height="20" x="148" y="247" style="fill:#fff;" font-family="Arial" font-size="16px"> facturaslinea</text> |
|||
<rect width="97" height="20" x="143" y="253" style="fill:#aea;stroke:black;"/> |
|||
<text width="97" height="20" x="148" y="267" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="97" height="20" x="143" y="273" style="fill:none;stroke:black;"/> |
|||
<text width="97" height="20" x="148" y="287" style="fill:black;" font-family="Arial" font-size="16px">id_producto</text> |
|||
<rect width="97" height="20" x="143" y="293" style="fill:none;stroke:black;"/> |
|||
<text width="97" height="20" x="148" y="307" style="fill:black;" font-family="Arial" font-size="16px">cantidad</text> |
|||
<rect width="97" height="20" x="143" y="313" style="fill:none;stroke:black;"/> |
|||
<text width="97" height="20" x="148" y="327" style="fill:black;" font-family="Arial" font-size="16px">precio</text> |
|||
<rect width="97" height="20" x="143" y="333" style="fill:none;stroke:black;"/> |
|||
<text width="97" height="20" x="148" y="347" style="fill:black;" font-family="Arial" font-size="16px">impuestos</text> |
|||
<rect width="97" height="20" x="143" y="353" style="fill:none;stroke:black;"/> |
|||
<text width="97" height="20" x="148" y="367" style="fill:black;" font-family="Arial" font-size="16px">id_variante</text> |
|||
<rect width="97" height="20" x="143" y="373" style="fill:none;stroke:black;"/> |
|||
<text width="97" height="20" x="148" y="387" style="fill:black;" font-family="Arial" font-size="16px">id_factura</text> |
|||
<rect width="143" height="20" x="1161" y="696" style="fill:#007;stroke:black;"/> |
|||
<text width="143" height="20" x="1166" y="710" style="fill:#fff;" font-family="Arial" font-size="16px"> formularios</text> |
|||
<rect width="143" height="20" x="1161" y="716" style="fill:#aea;stroke:black;"/> |
|||
<text width="143" height="20" x="1166" y="730" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="143" height="20" x="1161" y="736" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1166" y="750" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="143" height="20" x="1161" y="756" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1166" y="770" style="fill:black;" font-family="Arial" font-size="16px">descripcion</text> |
|||
<rect width="143" height="20" x="1161" y="776" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1166" y="790" style="fill:black;" font-family="Arial" font-size="16px">id_plantilla</text> |
|||
<rect width="143" height="20" x="1161" y="796" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1166" y="810" style="fill:black;" font-family="Arial" font-size="16px">alias</text> |
|||
<rect width="143" height="20" x="1161" y="816" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1166" y="830" style="fill:black;" font-family="Arial" font-size="16px">fecha_creacion</text> |
|||
<rect width="143" height="20" x="1161" y="836" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1166" y="850" style="fill:black;" font-family="Arial" font-size="16px">fecha_modificacion</text> |
|||
<rect width="64" height="20" x="1419" y="53" style="fill:#007;stroke:black;"/> |
|||
<text width="64" height="20" x="1424" y="67" style="fill:#fff;" font-family="Arial" font-size="16px"> idioma</text> |
|||
<rect width="64" height="20" x="1419" y="73" style="fill:#aea;stroke:black;"/> |
|||
<text width="64" height="20" x="1424" y="87" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="64" height="20" x="1419" y="93" style="fill:none;stroke:black;"/> |
|||
<text width="64" height="20" x="1424" y="107" style="fill:black;" font-family="Arial" font-size="16px">codigo</text> |
|||
<rect width="64" height="20" x="1419" y="113" style="fill:none;stroke:black;"/> |
|||
<text width="64" height="20" x="1424" y="127" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="64" height="20" x="1419" y="133" style="fill:none;stroke:black;"/> |
|||
<text width="64" height="20" x="1424" y="147" style="fill:black;" font-family="Arial" font-size="16px">activo</text> |
|||
<rect width="76" height="20" x="1092" y="13" style="fill:#007;stroke:black;"/> |
|||
<text width="76" height="20" x="1097" y="27" style="fill:#fff;" font-family="Arial" font-size="16px"> imagenes</text> |
|||
<rect width="76" height="20" x="1092" y="33" style="fill:#aea;stroke:black;"/> |
|||
<text width="76" height="20" x="1097" y="47" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="76" height="20" x="1092" y="53" style="fill:none;stroke:black;"/> |
|||
<text width="76" height="20" x="1097" y="67" style="fill:black;" font-family="Arial" font-size="16px">url</text> |
|||
<rect width="76" height="20" x="1092" y="73" style="fill:none;stroke:black;"/> |
|||
<text width="76" height="20" x="1097" y="87" style="fill:black;" font-family="Arial" font-size="16px">title</text> |
|||
<rect width="76" height="20" x="1092" y="93" style="fill:none;stroke:black;"/> |
|||
<text width="76" height="20" x="1097" y="107" style="fill:black;" font-family="Arial" font-size="16px">base64</text> |
|||
<rect width="91" height="20" x="880" y="32" style="fill:#007;stroke:black;"/> |
|||
<text width="91" height="20" x="885" y="46" style="fill:#fff;" font-family="Arial" font-size="16px"> menu</text> |
|||
<rect width="91" height="20" x="880" y="52" style="fill:#aea;stroke:black;"/> |
|||
<text width="91" height="20" x="885" y="66" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="91" height="20" x="880" y="72" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="885" y="86" style="fill:black;" font-family="Arial" font-size="16px">alias</text> |
|||
<rect width="91" height="20" x="880" y="92" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="885" y="106" style="fill:black;" font-family="Arial" font-size="16px">titulo</text> |
|||
<rect width="91" height="20" x="880" y="112" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="885" y="126" style="fill:black;" font-family="Arial" font-size="16px">descripcion</text> |
|||
<rect width="91" height="20" x="660" y="17" style="fill:#007;stroke:black;"/> |
|||
<text width="91" height="20" x="665" y="31" style="fill:#fff;" font-family="Arial" font-size="16px"> menuitem</text> |
|||
<rect width="91" height="20" x="660" y="37" style="fill:#aea;stroke:black;"/> |
|||
<text width="91" height="20" x="665" y="51" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="91" height="20" x="660" y="57" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="665" y="71" style="fill:black;" font-family="Arial" font-size="16px">id_menu</text> |
|||
<rect width="91" height="20" x="660" y="77" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="665" y="91" style="fill:black;" font-family="Arial" font-size="16px">posicion</text> |
|||
<rect width="91" height="20" x="660" y="97" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="665" y="111" style="fill:black;" font-family="Arial" font-size="16px">alias</text> |
|||
<rect width="91" height="20" x="660" y="117" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="665" y="131" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="91" height="20" x="660" y="137" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="665" y="151" style="fill:black;" font-family="Arial" font-size="16px">descripcion</text> |
|||
<rect width="91" height="20" x="660" y="157" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="665" y="171" style="fill:black;" font-family="Arial" font-size="16px">id_imagen</text> |
|||
<rect width="143" height="20" x="1432" y="410" style="fill:#007;stroke:black;"/> |
|||
<text width="143" height="20" x="1437" y="424" style="fill:#fff;" font-family="Arial" font-size="16px"> modulos</text> |
|||
<rect width="143" height="20" x="1432" y="430" style="fill:#aea;stroke:black;"/> |
|||
<text width="143" height="20" x="1437" y="444" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="143" height="20" x="1432" y="450" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1437" y="464" style="fill:black;" font-family="Arial" font-size="16px">tipo</text> |
|||
<rect width="143" height="20" x="1432" y="470" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1437" y="484" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="143" height="20" x="1432" y="490" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1437" y="504" style="fill:black;" font-family="Arial" font-size="16px">tabla</text> |
|||
<rect width="143" height="20" x="1432" y="510" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1437" y="524" style="fill:black;" font-family="Arial" font-size="16px">activo</text> |
|||
<rect width="143" height="20" x="1432" y="530" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1437" y="544" style="fill:black;" font-family="Arial" font-size="16px">fecha_creacion</text> |
|||
<rect width="143" height="20" x="1432" y="550" style="fill:none;stroke:black;"/> |
|||
<text width="143" height="20" x="1437" y="564" style="fill:black;" font-family="Arial" font-size="16px">fecha_modificacion</text> |
|||
<rect width="147" height="20" x="171" y="785" style="fill:#007;stroke:black;"/> |
|||
<text width="147" height="20" x="176" y="799" style="fill:#fff;" font-family="Arial" font-size="16px"> pagina</text> |
|||
<rect width="147" height="20" x="171" y="805" style="fill:#aea;stroke:black;"/> |
|||
<text width="147" height="20" x="176" y="819" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="147" height="20" x="171" y="825" style="fill:none;stroke:black;"/> |
|||
<text width="147" height="20" x="176" y="839" style="fill:black;" font-family="Arial" font-size="16px">id_plantilla</text> |
|||
<rect width="147" height="20" x="171" y="845" style="fill:none;stroke:black;"/> |
|||
<text width="147" height="20" x="176" y="859" style="fill:black;" font-family="Arial" font-size="16px">url</text> |
|||
<rect width="147" height="20" x="171" y="865" style="fill:none;stroke:black;"/> |
|||
<text width="147" height="20" x="176" y="879" style="fill:black;" font-family="Arial" font-size="16px">titulo</text> |
|||
<rect width="147" height="20" x="171" y="885" style="fill:none;stroke:black;"/> |
|||
<text width="147" height="20" x="176" y="899" style="fill:black;" font-family="Arial" font-size="16px">contenido</text> |
|||
<rect width="147" height="20" x="171" y="905" style="fill:none;stroke:black;"/> |
|||
<text width="147" height="20" x="176" y="919" style="fill:black;" font-family="Arial" font-size="16px">publicada</text> |
|||
<rect width="147" height="20" x="171" y="925" style="fill:none;stroke:black;"/> |
|||
<text width="147" height="20" x="176" y="939" style="fill:black;" font-family="Arial" font-size="16px">fecha_creacion</text> |
|||
<rect width="147" height="20" x="171" y="945" style="fill:none;stroke:black;"/> |
|||
<text width="147" height="20" x="176" y="959" style="fill:black;" font-family="Arial" font-size="16px">fecha_actualizacion</text> |
|||
<rect width="101" height="20" x="456" y="800" style="fill:#007;stroke:black;"/> |
|||
<text width="101" height="20" x="461" y="814" style="fill:#fff;" font-family="Arial" font-size="16px"> plantillas</text> |
|||
<rect width="101" height="20" x="456" y="820" style="fill:#aea;stroke:black;"/> |
|||
<text width="101" height="20" x="461" y="834" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="101" height="20" x="456" y="840" style="fill:none;stroke:black;"/> |
|||
<text width="101" height="20" x="461" y="854" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="101" height="20" x="456" y="860" style="fill:none;stroke:black;"/> |
|||
<text width="101" height="20" x="461" y="874" style="fill:black;" font-family="Arial" font-size="16px">alias</text> |
|||
<rect width="101" height="20" x="456" y="880" style="fill:none;stroke:black;"/> |
|||
<text width="101" height="20" x="461" y="894" style="fill:black;" font-family="Arial" font-size="16px">twig</text> |
|||
<rect width="101" height="20" x="456" y="900" style="fill:none;stroke:black;"/> |
|||
<text width="101" height="20" x="461" y="914" style="fill:black;" font-family="Arial" font-size="16px">ispdf</text> |
|||
<rect width="101" height="20" x="456" y="920" style="fill:none;stroke:black;"/> |
|||
<text width="101" height="20" x="461" y="934" style="fill:black;" font-family="Arial" font-size="16px">twigpdf</text> |
|||
<rect width="101" height="20" x="456" y="940" style="fill:none;stroke:black;"/> |
|||
<text width="101" height="20" x="461" y="954" style="fill:black;" font-family="Arial" font-size="16px">iscomponent</text> |
|||
<rect width="140" height="20" x="842" y="831" style="fill:#007;stroke:black;"/> |
|||
<text width="140" height="20" x="847" y="845" style="fill:#fff;" font-family="Arial" font-size="16px"> preguntaformulario</text> |
|||
<rect width="140" height="20" x="842" y="851" style="fill:#aea;stroke:black;"/> |
|||
<text width="140" height="20" x="847" y="865" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="140" height="20" x="842" y="871" style="fill:none;stroke:black;"/> |
|||
<text width="140" height="20" x="847" y="885" style="fill:black;" font-family="Arial" font-size="16px">alias</text> |
|||
<rect width="140" height="20" x="842" y="891" style="fill:none;stroke:black;"/> |
|||
<text width="140" height="20" x="847" y="905" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="140" height="20" x="842" y="911" style="fill:none;stroke:black;"/> |
|||
<text width="140" height="20" x="847" y="925" style="fill:black;" font-family="Arial" font-size="16px">descripcion</text> |
|||
<rect width="140" height="20" x="842" y="931" style="fill:none;stroke:black;"/> |
|||
<text width="140" height="20" x="847" y="945" style="fill:black;" font-family="Arial" font-size="16px">id_tipo</text> |
|||
<rect width="104" height="20" x="1141" y="483" style="fill:#007;stroke:black;"/> |
|||
<text width="104" height="20" x="1146" y="497" style="fill:#fff;" font-family="Arial" font-size="16px"> presupuestos</text> |
|||
<rect width="104" height="20" x="1141" y="503" style="fill:#aea;stroke:black;"/> |
|||
<text width="104" height="20" x="1146" y="517" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="104" height="20" x="1141" y="523" style="fill:none;stroke:black;"/> |
|||
<text width="104" height="20" x="1146" y="537" style="fill:black;" font-family="Arial" font-size="16px">id_cliente</text> |
|||
<rect width="104" height="20" x="1141" y="543" style="fill:none;stroke:black;"/> |
|||
<text width="104" height="20" x="1146" y="557" style="fill:black;" font-family="Arial" font-size="16px">id_producto</text> |
|||
<rect width="104" height="20" x="1141" y="563" style="fill:none;stroke:black;"/> |
|||
<text width="104" height="20" x="1146" y="577" style="fill:black;" font-family="Arial" font-size="16px">cantidad</text> |
|||
<rect width="104" height="20" x="1141" y="583" style="fill:none;stroke:black;"/> |
|||
<text width="104" height="20" x="1146" y="597" style="fill:black;" font-family="Arial" font-size="16px">id_variante</text> |
|||
<rect width="135" height="20" x="803" y="424" style="fill:#007;stroke:black;"/> |
|||
<text width="135" height="20" x="808" y="438" style="fill:#fff;" font-family="Arial" font-size="16px"> productocategoria</text> |
|||
<rect width="135" height="20" x="803" y="444" style="fill:#aea;stroke:black;"/> |
|||
<text width="135" height="20" x="808" y="458" style="fill:black;" font-family="Arial" font-size="16px">id_producto</text> |
|||
<rect width="135" height="20" x="803" y="464" style="fill:#aea;stroke:black;"/> |
|||
<text width="135" height="20" x="808" y="478" style="fill:black;" font-family="Arial" font-size="16px">id_categoria</text> |
|||
<rect width="91" height="20" x="827" y="280" style="fill:#007;stroke:black;"/> |
|||
<text width="91" height="20" x="832" y="294" style="fill:#fff;" font-family="Arial" font-size="16px"> productos</text> |
|||
<rect width="91" height="20" x="827" y="300" style="fill:#aea;stroke:black;"/> |
|||
<text width="91" height="20" x="832" y="314" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="91" height="20" x="827" y="320" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="832" y="334" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="91" height="20" x="827" y="340" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="832" y="354" style="fill:black;" font-family="Arial" font-size="16px">descripcion</text> |
|||
<rect width="91" height="20" x="827" y="360" style="fill:none;stroke:black;"/> |
|||
<text width="91" height="20" x="832" y="374" style="fill:black;" font-family="Arial" font-size="16px">precio</text> |
|||
<rect width="132" height="20" x="1072" y="147" style="fill:#007;stroke:black;"/> |
|||
<text width="132" height="20" x="1077" y="161" style="fill:#fff;" font-family="Arial" font-size="16px"> productosimagen</text> |
|||
<rect width="132" height="20" x="1072" y="167" style="fill:#aea;stroke:black;"/> |
|||
<text width="132" height="20" x="1077" y="181" style="fill:black;" font-family="Arial" font-size="16px">id_imagen</text> |
|||
<rect width="132" height="20" x="1072" y="187" style="fill:#aea;stroke:black;"/> |
|||
<text width="132" height="20" x="1077" y="201" style="fill:black;" font-family="Arial" font-size="16px">id_producto</text> |
|||
<rect width="132" height="20" x="1072" y="207" style="fill:#aea;stroke:black;"/> |
|||
<text width="132" height="20" x="1077" y="221" style="fill:black;" font-family="Arial" font-size="16px">id_variante</text> |
|||
<rect width="133" height="20" x="1133" y="249" style="fill:#007;stroke:black;"/> |
|||
<text width="133" height="20" x="1138" y="263" style="fill:#fff;" font-family="Arial" font-size="16px"> productovariantes</text> |
|||
<rect width="133" height="20" x="1133" y="269" style="fill:#aea;stroke:black;"/> |
|||
<text width="133" height="20" x="1138" y="283" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="133" height="20" x="1133" y="289" style="fill:none;stroke:black;"/> |
|||
<text width="133" height="20" x="1138" y="303" style="fill:black;" font-family="Arial" font-size="16px">id_producto</text> |
|||
<rect width="133" height="20" x="1133" y="309" style="fill:none;stroke:black;"/> |
|||
<text width="133" height="20" x="1138" y="323" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="133" height="20" x="1133" y="329" style="fill:none;stroke:black;"/> |
|||
<text width="133" height="20" x="1138" y="343" style="fill:black;" font-family="Arial" font-size="16px">descripcion</text> |
|||
<rect width="133" height="20" x="1133" y="349" style="fill:none;stroke:black;"/> |
|||
<text width="133" height="20" x="1138" y="363" style="fill:black;" font-family="Arial" font-size="16px">precio</text> |
|||
<rect width="148" height="20" x="247" y="598" style="fill:#007;stroke:black;"/> |
|||
<text width="148" height="20" x="252" y="612" style="fill:#fff;" font-family="Arial" font-size="16px"> respuestaformulario</text> |
|||
<rect width="148" height="20" x="247" y="618" style="fill:#aea;stroke:black;"/> |
|||
<text width="148" height="20" x="252" y="632" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="148" height="20" x="247" y="638" style="fill:none;stroke:black;"/> |
|||
<text width="148" height="20" x="252" y="652" style="fill:black;" font-family="Arial" font-size="16px">id_pregunta</text> |
|||
<rect width="148" height="20" x="247" y="658" style="fill:none;stroke:black;"/> |
|||
<text width="148" height="20" x="252" y="672" style="fill:black;" font-family="Arial" font-size="16px">id_formulario</text> |
|||
<rect width="148" height="20" x="247" y="678" style="fill:none;stroke:black;"/> |
|||
<text width="148" height="20" x="252" y="692" style="fill:black;" font-family="Arial" font-size="16px">id_cliente</text> |
|||
<rect width="148" height="20" x="247" y="698" style="fill:none;stroke:black;"/> |
|||
<text width="148" height="20" x="252" y="712" style="fill:black;" font-family="Arial" font-size="16px">valor</text> |
|||
<rect width="148" height="20" x="247" y="718" style="fill:none;stroke:black;"/> |
|||
<text width="148" height="20" x="252" y="732" style="fill:black;" font-family="Arial" font-size="16px">fecha</text> |
|||
<rect width="96" height="20" x="647" y="835" style="fill:#007;stroke:black;"/> |
|||
<text width="96" height="20" x="652" y="849" style="fill:#fff;" font-family="Arial" font-size="16px"> tipopregunta</text> |
|||
<rect width="96" height="20" x="647" y="855" style="fill:#aea;stroke:black;"/> |
|||
<text width="96" height="20" x="652" y="869" style="fill:black;" font-family="Arial" font-size="16px">id</text> |
|||
<rect width="96" height="20" x="647" y="875" style="fill:none;stroke:black;"/> |
|||
<text width="96" height="20" x="652" y="889" style="fill:black;" font-family="Arial" font-size="16px">nombre</text> |
|||
<rect width="96" height="20" x="647" y="895" style="fill:none;stroke:black;"/> |
|||
<text width="96" height="20" x="652" y="909" style="fill:black;" font-family="Arial" font-size="16px">alias</text> |
|||
<rect width="96" height="20" x="647" y="915" style="fill:none;stroke:black;"/> |
|||
<text width="96" height="20" x="652" y="929" style="fill:black;" font-family="Arial" font-size="16px">id_plantilla</text> |
|||
</svg> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue