-- -------------------------------------------------------- -- Host: 127.0.0.1 -- Versión del servidor: 10.4.28-MariaDB - mariadb.org binary distribution -- SO del servidor: Win64 -- HeidiSQL Versión: 12.6.0.6765 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8 */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- Volcando estructura para tabla quimicareal.cache CREATE TABLE IF NOT EXISTS `cache` ( `key` varchar(255) NOT NULL, `value` mediumtext NOT NULL, `expiration` int(11) NOT NULL, PRIMARY KEY (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Volcando datos para la tabla quimicareal.cache: ~0 rows (aproximadamente) -- Volcando estructura para tabla quimicareal.cache_locks CREATE TABLE IF NOT EXISTS `cache_locks` ( `key` varchar(255) NOT NULL, `owner` varchar(255) NOT NULL, `expiration` int(11) NOT NULL, PRIMARY KEY (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Volcando datos para la tabla quimicareal.cache_locks: ~0 rows (aproximadamente) -- Volcando estructura para tabla quimicareal.categorias CREATE TABLE IF NOT EXISTS `categorias` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orden` varchar(50) NOT NULL, `nombre` longtext NOT NULL, `destacado` int(11) DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `created_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.categorias: ~3 rows (aproximadamente) INSERT INTO `categorias` (`id`, `orden`, `nombre`, `destacado`, `updated_at`, `created_at`) VALUES (1, 'aa', 'Pastas y concentrados', 1, '2024-05-22 14:47:55', NULL), (2, 'bb', 'Materias primas', 1, '2024-05-22 14:34:05', '2024-05-22 14:34:05'), (4, 'cc', 'Marcas propias', 1, '2024-05-22 14:49:55', '2024-05-22 14:49:55'); -- Volcando estructura para tabla quimicareal.categoria_producto CREATE TABLE IF NOT EXISTS `categoria_producto` ( `id` int(11) NOT NULL AUTO_INCREMENT, `producto_id` int(11) NOT NULL, `categoria_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `categoria_id` (`categoria_id`), KEY `producto_id` (`producto_id`), CONSTRAINT `categoria_id` FOREIGN KEY (`categoria_id`) REFERENCES `categorias` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `producto_id` FOREIGN KEY (`producto_id`) REFERENCES `productos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.categoria_producto: ~3 rows (aproximadamente) INSERT INTO `categoria_producto` (`id`, `producto_id`, `categoria_id`) VALUES (8, 43, 1), (9, 44, 1), (10, 45, 1), (11, 43, 2), (12, 43, 4); -- Volcando estructura para tabla quimicareal.clientes CREATE TABLE IF NOT EXISTS `clientes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nombre` longtext NOT NULL, `email` longtext NOT NULL, `contraseña` longtext NOT NULL, `activo` int(11) DEFAULT 0, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=armscii8 COLLATE=armscii8_bin; -- Volcando datos para la tabla quimicareal.clientes: ~1 rows (aproximadamente) INSERT INTO `clientes` (`id`, `nombre`, `email`, `contraseña`, `activo`, `created_at`, `updated_at`) VALUES (11, 'pablo', 'pablo@gmail.com', '$2y$10$BRp5G/1sj0g3wQoIxZ76M.sRi5J4f6Qkjk5vCVwWPtBGew8NpHV7K', 1, '2024-05-29 12:51:42', '2024-05-29 13:03:57'); -- Volcando estructura para tabla quimicareal.clientesempresa CREATE TABLE IF NOT EXISTS `clientesempresa` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orden` varchar(50) DEFAULT NULL, `nombre` longtext NOT NULL, `imagen` longtext NOT NULL, `link` longtext DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `created_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.clientesempresa: ~4 rows (aproximadamente) INSERT INTO `clientesempresa` (`id`, `orden`, `nombre`, `imagen`, `link`, `updated_at`, `created_at`) VALUES (2, 'cc', 'redimer', 'fotos/kEbWSHrCyFZpBEJj8pxnIgysY9Z8rg52AcVLL6VZ.png', 'https://redimer.com.ar/', '2024-05-27 19:15:28', '2024-05-27 19:08:45'), (3, 'AA', 'spartan', 'fotos/XT6YYUltPvU9yokeqTPA2xVDwWhgdcUp4VttMRN0.png', 'https://www.spartanlatam.com/selecione-o-pais.html?go=', '2024-05-27 19:14:21', '2024-05-27 19:14:21'), (4, 'dd', 'alex', 'fotos/kGgKHTNq2tSbXrMWVxu2UYtjCuxrOG5mimubrqGN.png', NULL, '2024-05-27 19:16:10', '2024-05-27 19:16:10'), (5, 'bb', 'fell y smell', 'fotos/aKg7Nafb9QN7ZCanUTfpZtST1XzHYYijIjHf5aHG.png', NULL, '2024-05-27 19:16:31', '2024-05-27 19:16:31'); -- Volcando estructura para tabla quimicareal.contacto CREATE TABLE IF NOT EXISTS `contacto` ( `id` int(11) NOT NULL AUTO_INCREMENT, `direccion` longtext CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `telefono` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '', `email` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '', `telefono_secundario` longtext DEFAULT NULL, `instagram` longtext DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.contacto: ~1 rows (aproximadamente) INSERT INTO `contacto` (`id`, `direccion`, `telefono`, `email`, `telefono_secundario`, `instagram`, `updated_at`) VALUES (1, 'Calle 10, 943 (1629) Esquina Av. Pte. Arturo Frondizi - Parque industrial de Pilar Fátima, Buenos Aires', '(+54) 11 4033 - 7654', 'comercial@realquimica.net', NULL, NULL, '2024-05-27 15:44:56'); -- Volcando estructura para tabla quimicareal.descargas CREATE TABLE IF NOT EXISTS `descargas` ( `id` int(11) NOT NULL AUTO_INCREMENT, `titulo` longtext NOT NULL, `orden` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `file` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `updated_at` datetime DEFAULT NULL, `created_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=armscii8 COLLATE=armscii8_bin; -- Volcando datos para la tabla quimicareal.descargas: ~3 rows (aproximadamente) INSERT INTO `descargas` (`id`, `titulo`, `orden`, `file`, `updated_at`, `created_at`) VALUES (2, 'Descarga 1', 'aa', 'fotos/wlrC9RuaLZk0I005nlpNUBekOz3pComrkllJzCVu.xlsx', '2024-05-15 15:30:43', '2024-05-15 11:43:32'), (3, 'Descarga 2', 'bb', 'fotos/8pglWHNsjudGczwEGV9kQB0FJ174L43UpBpV4Zx7.txt', '2024-05-15 14:52:03', NULL), (4, 'Descarga 3', 'cc', 'fotos/fb7pEr8QsB1JMzcA15Qpo312P7XowelRjgZ7zb8y.png', '2024-05-15 14:52:09', NULL); -- Volcando estructura para tabla quimicareal.failed_jobs CREATE TABLE IF NOT EXISTS `failed_jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `uuid` varchar(255) NOT NULL, `connection` text NOT NULL, `queue` text NOT NULL, `payload` longtext NOT NULL, `exception` longtext NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`), UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Volcando datos para la tabla quimicareal.failed_jobs: ~0 rows (aproximadamente) -- Volcando estructura para tabla quimicareal.imagenes CREATE TABLE IF NOT EXISTS `imagenes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orden` varchar(50) DEFAULT NULL, `id_producto` int(11) DEFAULT NULL, `path` longtext CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `created_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `producto_id_foreing_img` (`id_producto`), CONSTRAINT `producto_id_foreing_img` FOREIGN KEY (`id_producto`) REFERENCES `productos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.imagenes: ~2 rows (aproximadamente) INSERT INTO `imagenes` (`id`, `orden`, `id_producto`, `path`, `updated_at`, `created_at`) VALUES (44, 'aa', 43, 'fotos/k0IKfOn2bIy5V2PknWtRTseuokMCVmmuQ4l3K0E7.png', '2024-05-29 13:35:01', '2024-05-29 13:35:01'), (45, 'bb', 43, 'fotos/p5tM00lcpQEe7yJASh3ZVMezTz6TqK8EWKCt9sLv.png', '2024-05-29 13:35:07', '2024-05-29 13:35:07'); -- Volcando estructura para tabla quimicareal.jobs CREATE TABLE IF NOT EXISTS `jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `queue` varchar(255) NOT NULL, `payload` longtext NOT NULL, `attempts` tinyint(3) unsigned NOT NULL, `reserved_at` int(10) unsigned DEFAULT NULL, `available_at` int(10) unsigned NOT NULL, `created_at` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `jobs_queue_index` (`queue`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Volcando datos para la tabla quimicareal.jobs: ~0 rows (aproximadamente) -- Volcando estructura para tabla quimicareal.job_batches CREATE TABLE IF NOT EXISTS `job_batches` ( `id` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `total_jobs` int(11) NOT NULL, `pending_jobs` int(11) NOT NULL, `failed_jobs` int(11) NOT NULL, `failed_job_ids` longtext NOT NULL, `options` mediumtext DEFAULT NULL, `cancelled_at` int(11) DEFAULT NULL, `created_at` int(11) NOT NULL, `finished_at` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Volcando datos para la tabla quimicareal.job_batches: ~0 rows (aproximadamente) -- Volcando estructura para tabla quimicareal.litros CREATE TABLE IF NOT EXISTS `litros` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orden` varchar(50) DEFAULT NULL, `imagen` longtext DEFAULT NULL, `cantidad` int(11) DEFAULT NULL, `updated_at` datetime NOT NULL, `created_at` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.litros: ~5 rows (aproximadamente) INSERT INTO `litros` (`id`, `orden`, `imagen`, `cantidad`, `updated_at`, `created_at`) VALUES (4, 'undefined', 'fotos/ZGeNGoTyo68GTdUJlcLflLhXH5PCH9XycGtDMVsv.png', 10, '2024-05-29 13:34:08', '2024-05-22 18:03:32'), (5, 'undefined', 'fotos/1pjuj0vOPudsTOHPeS7D9qX9iqktpJN7T96NLCas.png', 5, '2024-05-29 13:34:03', '2024-05-22 18:03:53'), (6, 'undefined', 'fotos/k5FYCOgJK448lcYwKUVythSxfgi1wdmhemEZSlbJ.png', 15, '2024-05-29 13:34:13', '2024-05-22 18:04:02'), (7, 'undefined', 'fotos/8QnJhKC4xYmYXXSVLOvAZjfOsluxBUnMaqyngb0N.png', 200, '2024-05-29 13:34:18', '2024-05-22 18:04:14'); -- Volcando estructura para tabla quimicareal.litro_producto CREATE TABLE IF NOT EXISTS `litro_producto` ( `id` int(11) NOT NULL AUTO_INCREMENT, `producto_id` int(11) NOT NULL DEFAULT 0, `litro_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `litro_id_foreing` (`litro_id`), KEY `producto_id_foreing` (`producto_id`), CONSTRAINT `litro_id_foreing` FOREIGN KEY (`litro_id`) REFERENCES `litros` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `producto_id_foreing` FOREIGN KEY (`producto_id`) REFERENCES `productos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- Volcando datos para la tabla quimicareal.litro_producto: ~11 rows (aproximadamente) INSERT INTO `litro_producto` (`id`, `producto_id`, `litro_id`) VALUES (7, 43, 4), (8, 43, 5), (9, 43, 6), (10, 43, 7), (11, 44, 5), (12, 44, 4), (13, 44, 6), (14, 45, 5), (15, 45, 4), (16, 45, 6); -- Volcando estructura para tabla quimicareal.logos CREATE TABLE IF NOT EXISTS `logos` ( `id` int(11) NOT NULL AUTO_INCREMENT, `header` longtext DEFAULT NULL, `navbar` longtext CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `footer` longtext CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.logos: ~1 rows (aproximadamente) INSERT INTO `logos` (`id`, `header`, `navbar`, `footer`, `updated_at`) VALUES (1, 'fotos/NyPqFFfluPNMQq0cM5f533HLWMfr1SMHitSe49I6.png', 'fotos/6iyR44XhvfPG3Dgm7mESJKuCc93GWJsQio1Iv9Fe.png', 'fotos/P2cqbNWjKkDU3S2wpUWhryl7vRpYcfp4nUNIVtlW.png', '2024-05-27 17:17:48'); -- Volcando estructura para tabla quimicareal.metadatos CREATE TABLE IF NOT EXISTS `metadatos` ( `id` int(11) NOT NULL AUTO_INCREMENT, `seccion` longtext NOT NULL, `claves` longtext NOT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=armscii8 COLLATE=armscii8_bin; -- Volcando datos para la tabla quimicareal.metadatos: ~9 rows (aproximadamente) INSERT INTO `metadatos` (`id`, `seccion`, `claves`, `updated_at`) VALUES (1, 'home', 'a', '2024-05-16 04:43:48'), (2, 'empresa\r\n', 'a', '2024-05-16 04:43:48'), (3, 'productos', 'a', '2024-05-16 04:43:48'), (4, 'servicios', 'a', '2024-05-16 04:43:48'), (5, 'descargas', 'a', '2024-05-16 04:43:48'), (6, 'novedades', 'a', '2024-05-16 04:43:48'), (7, 'ferias', 'a', '2024-05-16 04:43:48'), (8, 'videos', 'a', '2024-05-16 04:43:48'), (9, 'contacto', 'a', '2024-05-16 04:43:48'); -- Volcando estructura para tabla quimicareal.migrations CREATE TABLE IF NOT EXISTS `migrations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(255) NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Volcando datos para la tabla quimicareal.migrations: ~3 rows (aproximadamente) INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '0001_01_01_000000_create_users_table', 1), (2, '0001_01_01_000001_create_cache_table', 1), (3, '0001_01_01_000002_create_jobs_table', 1); -- Volcando estructura para tabla quimicareal.password_reset_tokens CREATE TABLE IF NOT EXISTS `password_reset_tokens` ( `email` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Volcando datos para la tabla quimicareal.password_reset_tokens: ~0 rows (aproximadamente) -- Volcando estructura para tabla quimicareal.productos CREATE TABLE IF NOT EXISTS `productos` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orden` varchar(50) NOT NULL, `nombre` varchar(50) NOT NULL, `texto` longtext DEFAULT NULL, `imagen` longtext DEFAULT NULL, `hojaseguridad` longtext DEFAULT NULL, `fichatecnica` longtext DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `created_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.productos: ~3 rows (aproximadamente) INSERT INTO `productos` (`id`, `orden`, `nombre`, `texto`, `imagen`, `hojaseguridad`, `fichatecnica`, `updated_at`, `created_at`) VALUES (43, 'aa', 'Detergente', '
El detergente es una sustancia que tiene la propiedad químico-física
de peptizar, es decir, la propiedad de dispersar finamente en el agua
u otro líquido, un sólido, como por ejemplo, la suciedad o las
impurezas de un objeto.
Aprobado por ANMAT
', NULL, 'fotos/MZreafUchMPiGTB9mMV6WZO07sgVVoxKV19mCM06.png', 'fotos/XMXqDpE7TvuhCIPLnhrI8pBxjQvVVrBerJ2K9Gvd.png', '2024-05-29 13:28:34', '2024-05-28 19:03:48'), (44, 'bb', 'Jabón Manos', NULL, NULL, NULL, NULL, '2024-05-28 19:04:14', '2024-05-28 19:04:14'), (45, 'cc', 'Shampoo autos', 's', NULL, NULL, NULL, '2024-05-28 19:30:20', '2024-05-28 19:30:20'); -- Volcando estructura para tabla quimicareal.secciones CREATE TABLE IF NOT EXISTS `secciones` ( `id` int(11) NOT NULL AUTO_INCREMENT, `titulo` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `texto` longtext CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `imagen` longtext CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `link` longtext DEFAULT NULL, `textoboton` longtext DEFAULT NULL, `seccion` longtext DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.secciones: ~5 rows (aproximadamente) INSERT INTO `secciones` (`id`, `titulo`, `texto`, `imagen`, `link`, `textoboton`, `seccion`, `updated_at`) VALUES (1, 'Quienes somos', 'Real Química es una empresa de raíz
electroquímica y su nombre original al comienzo de
sus actividades fue Laboratorio Argentino de
Investigación Galvanotécnica.
Fundada 1973, su principal objetivo fue el de llevar
la avanzada en la investigación, el desarrollo, y la
puesta en marcha de nuevas tecnologías para el
tratamiento de superficies; manifestando una
marcada vocación de para el desarrollo de la
industria nacional.
Poseemos una planta industrial que cuenta con modernas instalaciones,
adecuadas para la fabricación de todo tipo de productos químicos.
Reactores en acero inoxidable y fibra de vidrio, desde 3500, con
agitación y posibilidades para el calentamiento y/o enfriamiento.
Las alternativas de trabajo para la fabricación por orden de terceros se
adecuan a las necesidades de cada cliente y pueden incluir, no sólo la
fabricación, sino también la provisión de materias primas, el servicio de
depósito, la logística para las entregas, los controles de laboratorio.
Todo nuestro servicio de fasón está contemplado en nuestro sistema de
calidad y gestión ambiental.
El departamento ejecuta tareas relacionadas con el apoyo técnico y
da asesoramiento sobre las características, usos, pruebas y puesta
en marcha de cada unos de los producto que sean utilizados por
nuestros clientes.
Los clientes pueden ponerse en contacto con nuestro departamento de
Asistencia Técnica "cuando lo consideren necesario" y recibirán
asistencia continua hasta la resolución del problema.
', 'fotos/JvRCk7zuIIzot2h8WMk7XIF2ZuRgPUtASbqFLpOo.png', 'undefined', 'undefined', 'servicio2', '2024-05-27 18:24:29'), (4, 'Sobre nosotros', 'Real Quimica es una empresa de raíz electroquímica y su nombre
original al comienzo de sus actividades fue Laboratorio Argentino de
Investigación Galvanotécnica.
Fundada 1973, su principal objetivo fue el de llevar la avanzada en la
investigación, el desarrollo, y la puesta en marcha de nuevas
tecnologías para el tratamiento de superficies; manifestando una
marcada vocación de para el desarrollo de la industria nacional.
La innovación tecnológica, la responsabilidad social, la sustentabilidad
ambiental y un decidido compromiso en búsqueda de la excelencia para
la implementación de sus procesos son las premisas que nos guían.
Nuestro laboratorio cuenta con equipamiento de última generación
que responde a estrictas normas de calidad y se encuentran al servicio
de nuestros clientes.
Asimismo, contamos orgullosamente con un equipo de profesionales con
amplia y destacada experiencia en el desarrollo de productos dirigidos al
cuidado de la salud y cosmética capaz de interpretar y entender las
necesidades de cada cliente de modo de acompañarlos y sugerirles las
mejores alternativas de solución en productos de calidad, rentables y
acordes a los lineamientos requeridos.
', 'fotos/wBKF74ltkSaoIZT43TGi1bKH09HNrNcfLS12q4Qx.jpg', 'fotos/F631gDd0fRrhEEe4NcBNVlE1A9FZlKTqZRPm0FPs.jpg', 'fotos/ffzgC9SUl2DGGPA7Nc8DUt36ZCAzdB5kboL2lV8Q.xlsx', 'calidad', '2024-05-29 11:46:52'); -- Volcando estructura para tabla quimicareal.sectores CREATE TABLE IF NOT EXISTS `sectores` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orden` varchar(50) NOT NULL DEFAULT '0', `titulo` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '0', `imagen` longtext NOT NULL, `updated_at` datetime DEFAULT NULL, `created_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.sectores: ~4 rows (aproximadamente) INSERT INTO `sectores` (`id`, `orden`, `titulo`, `imagen`, `updated_at`, `created_at`) VALUES (1, 'aa', 'Hidro alcohólicos', 'fotos/1dLxWSFSMu15OxFBUXn2WrwFE05h3X1fIHEmzVuI.png', '2024-05-22 15:30:40', '2024-05-22 15:27:03'), (2, 'bb', 'Limpieza doméstica', 'fotos/kvwHtvBE49zg735g4HNK7Icc3tk5H1ebY9CXFfiH.png', '2024-05-22 15:31:01', '2024-05-22 15:31:01'), (3, 'cc', 'Cosmética automotriz', 'fotos/CjBMBmy2UW2Nyv2eC4TOOhSRP56TTwzDCn3mKkBr.png', '2024-05-22 15:31:14', '2024-05-22 15:31:14'), (4, 'dd', 'Limpieza profesional', 'fotos/SY4HwzWomNwHzIim3y91hxXKROQSSexQ3n07Svk9.png', '2024-05-22 15:31:23', '2024-05-22 15:31:23'); -- Volcando estructura para tabla quimicareal.servicios CREATE TABLE IF NOT EXISTS `servicios` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orden` varchar(50) DEFAULT NULL, `imagen` longtext CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `texto` longtext DEFAULT NULL, `titulo` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `created_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=armscii8 COLLATE=armscii8_bin; -- Volcando datos para la tabla quimicareal.servicios: ~4 rows (aproximadamente) INSERT INTO `servicios` (`id`, `orden`, `imagen`, `texto`, `titulo`, `updated_at`, `created_at`) VALUES (7, 'aa', 'fotos/6xpWSrpOHwxNY9JtMotmJY5GLleY8vo8OmJioZXu.png', '[object Object]', 'Elaboración', '2024-05-22 15:49:30', '2024-05-22 15:49:30'), (8, 'bb', 'fotos/05w4EJG3CsfhETptmgy17pZGQddq8CycLq8dwUU5.png', '[object Object]', 'Envasado', '2024-05-22 15:49:43', '2024-05-22 15:49:43'), (9, 'cc', 'fotos/OWAUts7wLB0PuI01WGU2Cst7CKA81pOaWHdvHwFN.png', '[object Object]', 'Etiquetado', '2024-05-22 15:49:53', '2024-05-22 15:49:53'), (10, 'dd', 'fotos/3jh0ADFFo7FFKMiPori9cxqcHala8E1pPxBoiS9w.png', '[object Object]', 'Empaquetado', '2024-05-22 15:50:04', '2024-05-22 15:50:04'); -- Volcando estructura para tabla quimicareal.sessions CREATE TABLE IF NOT EXISTS `sessions` ( `id` varchar(255) NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `ip_address` varchar(45) DEFAULT NULL, `user_agent` text DEFAULT NULL, `payload` longtext NOT NULL, `last_activity` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `sessions_user_id_index` (`user_id`), KEY `sessions_last_activity_index` (`last_activity`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Volcando datos para la tabla quimicareal.sessions: ~1 rows (aproximadamente) INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES ('mgrt2uXjCtvppaY52AFHJjKVhXAHFv7Pr2ngTqV4', NULL, '127.0.0.1', 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoieFhwbVpXZmd6eTgwN3lNSXl4SWpmOEtPVTdoMlFuS2JOSUNjT3lEZiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Nzk6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvZ2V0SW1hZ2UvdTdTNE8yMVYwYjI2SGlweVptTW10bVlxVVFoclVrVVd3MEg0WUxNbC5wbmciO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', 1715891890); -- Volcando estructura para tabla quimicareal.slider CREATE TABLE IF NOT EXISTS `slider` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orden` varchar(50) DEFAULT NULL, `texto` longtext CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `imagen` longtext CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `created_at` datetime DEFAULT NULL, `textoboton` longtext DEFAULT NULL, `linkboton` longtext DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Volcando datos para la tabla quimicareal.slider: ~1 rows (aproximadamente) INSERT INTO `slider` (`id`, `orden`, `texto`, `imagen`, `updated_at`, `created_at`, `textoboton`, `linkboton`) VALUES (1, NULL, 'nuestra experiencia y conocimiento.
La innovación tecnológica, la responsabilidad social, la sustentabilidad ambiental y un decidido compromiso en búsqueda de la excelencia para la implementación de sus procesos son las premisas que nos guían.
Respecto de los sistemas de aseguramiento de la calidad, estamos trabajando desde 1987 con pautas de Calidad Total (TQC).
Estamos certificados por SGS Argentina en el cumplimiento de las normas ISO 9000 desde el año 2000.