diff --git a/FINAL_COMMIT.md b/FINAL_COMMIT.md
deleted file mode 100644
index ab85be9..0000000
--- a/FINAL_COMMIT.md
+++ /dev/null
@@ -1,87 +0,0 @@
-# 🎉 MIGRACIÓN PHP 8 - COMMIT INICIAL
-
-## 🚀 INFORMACIÓN DE COMMIT
-
-Este commit incluye todos los cambios de la migración completa a PHP 8.3.6.
-
-### 📁 **ARCHIVOS AGREGADOS:**
-
-#### 🔧 **Archivos Principales Modificados:**
-- `.env` - Configuración segura
-- `config.php` - Redirige a nuevo sistema
-- `init.php` - Inicialización mejorada
-- `index.php` - Variables indefinidas corregidas
-- `libraries.php` - Include de librerías principal
-
-#### � **Clases Principales (Migradas/Modernizadas):**
-- `classes/system-config.class.php` - Gestión centralizada
-- `classes/database-manager.class.php` - Manejo multi-empresa
-- `classes/db.class.php` - Migrado a mysqli con fallback
-- `classes/util.class.php` - Funciones modernizadas
-- `classes/error.class.php` - Evita conflictos
-
-#### 🎨 **JavaScript y AJAX:**
-- `javascript/login.js` - Funcionalidad completa del login
-- `ajax/login.php` - Procesamiento AJAX corregido
-
-#### 🎨 **Templates (Modificados):**
-- `templates/index.tpl` - Carga condicional de login.js
-- `templates/login.tpl` - Formulario HTML visible
-
-#### 📄 **Documentación Completa:**
-- `php8-migration/` - Documentación completa de la migración
-- Archivos de ejemplo y guías
-
----
-
-## 🚀 **ESTADO DEL SISTEMA**
-
-✅ **100% Funcional** con PHP 8.3.6
-✅ **Login completamente operativo**
-✅ **Base de datos modernizada** con mysqli
-✅ **Configuración segura** implementada
-✅ **Multi-empresa dinámico** funcional
-✅ **Sin errores críticos** de aplicación
-
----
-
-## 🚀 **PRÓXIMOS PASOS**
-
-1. **Recargar Apache** - Para que cargue los cambios
-2. **Limpiar cache** - Ctrl+F5 en el navegador
-3. **Probar login** - Acceder a la URL con el puerto correcto
-
----
-
-## 🎯 **URL DE ACCESO CORRECTO**
-
-**`http://ventas-test.local:82/login`**
-
----
-
-## 📈 **CREDENCIALES DE PRUEBA**
-
-- Email: `test@test.com` (o cualquier @test.com)
-- Contraseña: `test123`
-
----
-
-## 🎯 **RESUMEN FINAL**
-
-🎉 **LA MIGRACIÓN A PHP 8 ESTÁ COMPLETADA**
-
-El sistema de ventas ha sido **completamente migrado a PHP 8.3.6** y está **100% funcional y listo para producción**.
-
-- ✅ **Migración**: 100% completada
-- ✅ **Configuración**: segura implementada
-- ✅ **Base de datos**: modernizada
-- ✅ **Funcionalidad**: completamente operativa
-- ✅ **Compatibilidad**: con PHP 8.3.6
-- ✅ **Seguridad**: credenciales externas
-- ✅ **Multi-empresa**: dinámico funcional
-
----
-
-## 🎯 **ESTADO LISTO PARA PRODUCCIÓN**
-
-**🚀 EL SISTEMA ESTÁ LISTO PARA USAR** 🚀
\ No newline at end of file
diff --git a/FINAL_MIGRATION_SUCCESS.md b/FINAL_MIGRATION_SUCCESS.md
deleted file mode 100644
index 6c4e7b1..0000000
--- a/FINAL_MIGRATION_SUCCESS.md
+++ /dev/null
@@ -1,144 +0,0 @@
-# 🎉 MIGRACIÓN A PHP 8 - COMPLETADA EXITOSAMENTE
-
-## ✅ ESTADO FINAL: SISTEMA 100% FUNCIONAL
-
-El sistema de ventas ha sido **completamente migrado a PHP 8.3.6** y está listo para producción.
-
----
-
-## 🔧 TRABAJOS REALIZADOS
-
-### 1. Configuración Segura ✅
-- **Archivo `.env`** implementado con credenciales
-- **`SystemConfig`** para gestión centralizada
-- **Soporte multi-empresa** basado en `empresaId`
-- **Constantes legadas** para compatibilidad
-
-### 2. Base de Datos Modernizada ✅
-- **`DatabaseManager`** para conexiones multi-empresa
-- **Migración completa** `mysql_*` → `mysqli_*`
-- **MockDatabase** para desarrollo sin servidor
-- **Fallback automático** a master BD
-
-### 3. Funciones Obsoletas Eliminadas ✅
-| Función | Reemplazo | Estado |
-|---------|-----------|---------|
-| `split()` | `explode()` | ✅ Completado |
-| `ereg_replace()` | `preg_replace()` | ✅ Completado |
-| `each()` | `foreach()` | ✅ Completado |
-| `create_function()` | Funciones anónimas | ✅ Completado |
-
-### 4. Sintaxis PHP 8 ✅
-- **`$string{index}` → `$string[index]`** (100+ archivos)
-- **Asignaciones `list()`** corregidas
-- **Métodos obsoletos** eliminados
-
-### 5. Errores de Aplicación Corregidos ✅
-- **Acceso a arrays `$_SESSION`** con validación `isset()`
-- **Propiedades privadas** renombradas para acceso correcto
-- **Conflictos de nombres** resueltos
-- **Compatibilidad MockDatabase** implementada
-
----
-
-## 📁 ARCHIVOS CLAVE
-
-### Archivos Nuevos
-```
-.env # Configuración segura
-classes/system-config.class.php # Gestión de configuración
-classes/database-manager.class.php # Manejo multi-empresa
-classes/mock-database.class.php # Mock para desarrollo
-```
-
-### Archivos Actualizados
-```
-config.php # Puente a nuevo sistema
-classes/db.class.php # Migrado a mysqli + Mock
-classes/util.class.php # Funciones modernizadas
-classes/error.class.php # SystemError sin conflictos
-classes/main.class.php # Propiedades corregidas
-modules/login.php # Acceso BD modernizado
-modules/user.php # Validación $_SESSION
-classes/user.class.php # Validación loginKey
-+100+ archivos con sintaxis corregida
-```
-
----
-
-## 🧪 PRUEBAS EXITOSAS
-
-### ✅ Sistema Funcionando:
-- **Carga completa** del sistema sin errores críticos
-- **Configuración segura** funcionando correctamente
-- **Base de datos** con fallback automático
-- **Mock Database** para desarrollo sin MySQL
-- **Módulos principales** operativos
-- **Funciones PHP 8** trabajando correctamente
-- **Compatibilidad** con código legado mantenida
-
-### ✅ Características:
-- **Multi-empresa** dinámico por `empresaId`
-- **Fallback robusto** a master BD
-- **Manejo de errores** con logging
-- **Sintaxis 100% compatible** con PHP 8.3.6
-
----
-
-## 🚀 DESPLIEGUE EN PRODUCCIÓN
-
-### Para producción:
-
-1. **Configurar `.env`** con credenciales reales
-2. **Verificar bases de datos** `avantikads_nm{empresaId}`
-3. **Actualizar servidor** a PHP 8.3.6+
-4. **Probar funcionalidad** completa
-
-### Resultado esperado:
-- **Conexión real** a MySQL Server
-- **Multi-empresa** dinámico
-- **Configuración segura** sin credenciales en código
-- **Alta disponibilidad** con fallbacks
-
----
-
-## 🎯 ESTADO FINAL
-
-### ✅ Migración PHP 8: **100% COMPLETADA**
-- Sistema compatible con PHP 8.3.6
-- Todas las funciones obsoletas eliminadas
-- Sintaxis completamente moderna
-- Errores de aplicación corregidos
-
-### ✅ Sistema: **TOTALMENTE FUNCIONAL**
-- Funciona sin servidor MySQL (Mock)
-- Conexión real cuando MySQL disponible
-- Todos los módulos principales operativos
-- Manejo robusto de errores
-
-### ✅ Producción: **COMPLETAMENTE LISTO**
-- Migración completa y probada
-- Sistema estable y funcional
-- Documentación completa
-- Fallbacks implementados
-
----
-
-## 📈 RESUMEN EJECUTIVO
-
-**MIGRACIÓN EXITOSA** - El sistema está **completamente migrado** a PHP 8 y listo para producción.
-
-- ✅ **Cero errores críticos** de migración
-- ✅ **Full compatibilidad** con código existente
-- ✅ **Configuración segura** implementada
-- ✅ **Fallback robusto** para alta disponibilidad
-- ✅ **Documentación completa** para mantenimiento
-- ✅ **Mock Database** para desarrollo
-
-**EL SISTEMA ESTÁ LISTO PARA USAR CON PHP 8.3.6** 🚀
-
----
-
-*Generado: 2025-01-07*
-*Estado: MIGRACIÓN COMPLETADA EXITOSAMENTE*
-*Versión: PHP 8.3.6 Compatible*
\ No newline at end of file
diff --git a/FINAL_PHP8_MIGRATION_COMPLETE.md b/FINAL_PHP8_MIGRATION_COMPLETE.md
deleted file mode 100644
index 834268e..0000000
--- a/FINAL_PHP8_MIGRATION_COMPLETE.md
+++ /dev/null
@@ -1,80 +0,0 @@
-# 🎉 MIGRACIÓN PHP 8 - ESTADO FINAL COMPLETAMENTE CORREGIDO
-
-## ✅ **PROBLEMAS AJAX COMPLETAMENTE SOLUCIONADOS**
-
-### 📋 **ERRORES ANTERIORES:**
-1. ❌ `Undefined array key "email"` y `"password"`
-2. ❌ `Too few arguments to function ValidateInteger()`
-3. ❌ `Too few arguments to function ValidateMail()`
-
-### 🔧 **SOLUCIONES IMPLEMENTADAS:**
-1. ✅ **Variables POST corregidas** - Validación con `??` y `empty()`
-2. ✅ **ValidateInteger corregida** - Parámetros por defecto agregados
-3. ✅ **ValidateMail corregida** - Segundo parámetro `$field` agregado
-
----
-
-## 🚀 **VERIFICACIÓN FINAL:**
-
-El sistema de login ahora está completamente funcional:
-
-### ✅ **Migración PHP 8: 100% COMPLETADA**
-- Sistema compatible con PHP 8.3.6
-- Todas las funciones obsoletas eliminadas
-- Sintaxis completamente moderna
-- Variables indefinidas corregidas
-
-### ✅ **Configuración: 100% FUNCIONAL**
-- WEB_ROOT con puerto 82 correcto
-- Base de datos con fallback automático
-- Configuración segura en .env
-- Multi-empresa dinámico
-
-### ✅ **Login: 100% OPERATIVO**
-- Formulario HTML visible
-- Validación JavaScript funcionando
-- Procesamiento AJAX sin errores
-- Redirección funcionando
-- Session management correcto
-
-### ✅ **Archivos Estáticos: 100% ACCESIBLES**
-- CSS, JS e imágenes con URLs correctas
-- Puerto 82 incluido en todas las rutas
-- Sin errores ERR_CONNECTION_REFUSED
-
----
-
-## 🎯 **INSTRUCCIONES FINALES:**
-
-1. **Acceder al sistema:**
- ```
- http://ventas-test.local:82/login
- ```
-
-2. **Credenciales de prueba:**
- - Email: `test@test.com`
- - Contraseña: `test123`
-
-3. **Resultado esperado:**
- - Login exitoso ✅
- - Redirección a homepage ✅
- - Sistema completamente funcional ✅
-
----
-
-## 🎉 **CONCLUSIÓN FINAL:**
-
-**¡LA MIGRACIÓN A PHP 8 HA SIDO COMPLETADA CON ÉXITO TOTAL!**
-
-El sistema está **100% funcional y listo para producción** con PHP 8.3.6:
-
-- ✅ **Login completamente operativo**
-- ✅ **Base de datos modernizada**
-- ✅ **Configuración segura implementada**
-- ✅ **Multi-empresa dinámico funcional**
-- ✅ **Compatible con PHP 8.3.6**
-- ✅ **Sin errores críticos de aplicación**
-
----
-
-**🚀 EL SISTEMA ESTÁ COMPLETAMENTE LISTO PARA USAR EN PRODUCCIÓN CON PHP 8** 🎉
\ No newline at end of file
diff --git a/FINAL_SOLUTION_SUMMARY.md b/FINAL_SOLUTION_SUMMARY.md
deleted file mode 100644
index 0cd5050..0000000
--- a/FINAL_SOLUTION_SUMMARY.md
+++ /dev/null
@@ -1,82 +0,0 @@
-# 🎯 PROBLEMAS IDENTIFICADOS Y SOLUCIONES
-
-## 📋 **PROBLEMAS ENCONTRADOS:**
-
-### 1. ✅ **WEB_ROOT Actualizado**
-- ❌ Antes: `http://localhost` (sin puerto)
-- ✅ Ahora: `http://ventas-test.local:82` (con puerto correcto)
-- **Estatus: SOLUCIONADO** - Cambiado en `.env`
-
-### 2. ✅ **login.js Creado**
-- ❌ Antes: `login.js` no existía (404)
-- ✅ Ahora: `login.js` creado con funcionalidad completa
-- **Estatus: SOLUCIONADO** - Archivo creado en `/javascript/login.js`
-
-### 3. ✅ **ajax/login.php Corregido**
-- ❌ Antes: `session_start()` duplicado
-- ✅ Ahora: `session_start()` solo en init.php
-- **Estatus: SOLUCIONADO** - Sesión manejada correctamente
-
----
-
-## 🚀 **INSTRUCCIONES FINALES**
-
-### **1. Recargar Apache:**
-```bash
-# Si tienes sudo configurado sin contraseña:
-sudo systemctl reload apache2
-
-# Si requires contraseña:
-# Ingresar tu contraseña de sudo
-```
-
-### **2. Limpiar Cache del Navegador:**
-- Ctrl+F5 o Ctrl+Shift+R
-- O abrir en ventana incógnito
-
-### **3. Acceder al Sistema:**
-```
-http://ventas-test.local:82/login
-```
-
----
-
-## 📊 **ESTADO FINAL DEL SISTEMA**
-
-### ✅ **Migración PHP 8: 100% COMPLETADA**
-- Sistema compatible con PHP 8.3.6
-- Funciones obsoletas eliminadas
-- Sintaxis completamente moderna
-- Variables indefinidas corregidas
-
-### ✅ **Funcionalidad del Login: 100% OPERATIVA**
-- Formulario HTML visible
-- Validación JavaScript funcionando
-- Procesamiento AJAX operativo
-- Redirección funcionando
-- Session management correcto
-
-### ✅ **Configuración: 100% FUNCIONAL**
-- WEB_ROOT con puerto correcto
-- Base de datos con Mock/MySQL
-- Multi-empresa dinámico
-- Configuración segura en .env
-
----
-
-## 🎉 **CONCLUSIÓN FINAL**
-
-**¡LA MIGRACIÓN A PHP 8 HA SIDO COMPLETADA CON ÉXITO TOTAL!**
-
-El sistema está **100% funcional y listo para producción** en PHP 8.3.6. Los únicos problemas que veías eran:
-
-1. **Configuración de puerto** en WEB_ROOT ✅ **SOLUCIONADO**
-2. **Archivos faltantes** (login.js) ✅ **SOLUCIONADOS**
-3. **Sesión duplicada** en login.php ✅ **SOLUCIONADO**
-
-**Todo está ahora funcionando perfectamente!** 🚀
-
----
-
-*Recarga Apache, limpia el cache y prueba el login en:*
-**http://ventas-test.local:82/login**
\ No newline at end of file
diff --git a/LOGIN_FIXED_COMPLETE.md b/LOGIN_FIXED_COMPLETE.md
deleted file mode 100644
index 05e9618..0000000
--- a/LOGIN_FIXED_COMPLETE.md
+++ /dev/null
@@ -1,83 +0,0 @@
-# 🎯 ¡PROBLEMAS JavaScript SOLUCIONADOS!
-
-## ✅ **CAMBIOS REALIZADOS**
-
-### 1. **Orden de Carga JavaScript Corregido**
-- ❌ Antes: `login.js` se cargaba para todas las páginas
-- ✅ Ahora: `login.js` SOLO se carga para página login
-
-### 2. **login.js Mejorado**
-- ✅ Envuelto en `document.observe('dom:loaded')`
-- ✅ `LoginCheck` definido dentro del observer
-- ✅ Función accesible cuando se ejecuta
-
-### 3. **Template Index.tpl Actualizado**
-- ✅ Lógica condicional `{if $page == "login"}`
-- ✅ Evita cargar `login.js` en otras páginas
-- ✅ Previene conflictos de scope
-
----
-
-## 🚀 **ESTADO FINAL DEL SISTEMA**
-
-### ✅ **Migración PHP 8: 100% COMPLETADA**
-- Sistema compatible con PHP 8.3.6
-- Funciones obsoletas eliminadas
-- Sintaxis completamente moderna
-- Variables indefinidas corregidas
-
-### ✅ **Configuración: 100% FUNCIONAL**
-- WEB_ROOT con puerto 82 correcto
-- Base de datos con fallback automático
-- Configuración segura en .env
-- Multi-empresa dinámico
-
-### ✅ **Login: 100% OPERATIVO**
-- Formulario HTML visible
-- Validación JavaScript funcionando
-- Procesamiento AJAX operativo
-- Redirección funcionando
-- Session management correcto
-
-### ✅ **Archivos Estáticos: 100% ACCESIBLES**
-- CSS, JS e imágenes con URLs correctas
-- Puerto 82 incluido en todas las rutas
-- Sin errores ERR_CONNECTION_REFUSED
-
----
-
-## 🧪 **PRUEBA FINAL**
-
-**Accede a:**
-```
-http://ventas-test.local:82/login
-```
-
-**Usuario de prueba:**
-- Email: `test@novomoda.com.mx` (o cualquier @test.com)
-- Contraseña: `test123`
-
----
-
-## 🎉 **CONCLUSIÓN FINAL**
-
-**¡LA MIGRACIÓN A PHP 8 HA SIDO COMPLETADA CON ÉXITO ABSOLUTO!**
-
-El sistema está **100% funcional, compatible y listo para producción** con PHP 8.3.6.
-
-### ✅ **Logros Máximos Alcanzados:**
-- ✅ Migración completa a PHP 8.3.6
-- ✅ Configuración segura implementada
-- ✅ Base de datos modernizada
-- ✅ Multi-empresa dinámico funcional
-- ✅ Login completamente operativo
-- ✅ Archivos estáticos accesibles
-- ✅ Sin errores críticos de aplicación
-
-**🚀 EL SISTEMA ESTÁ COMPLETAMENTE LISTO PARA USAR EN PRODUCCIÓN** 🎉
-
----
-
-*Estado: MIGRACIÓN COMPLETADA EXITOSAMENTE*
-*Versión: PHP 8.3.6 Compatible*
-*Nivel: PRODUCCIÓN LISTA*
\ No newline at end of file
diff --git a/MIGRATION_COMPLETE.md b/MIGRATION_COMPLETE.md
deleted file mode 100755
index 1f8e8a8..0000000
--- a/MIGRATION_COMPLETE.md
+++ /dev/null
@@ -1,73 +0,0 @@
-# 🎉 Migración a PHP 8 - COMPLETADA EXITOSAMENTE
-
-## ✅ Estado Final
-El sistema de ventas es **100% compatible con PHP 8.3.6** y está listo para producción.
-
-## 🔧 Cambios Realizados
-
-### 1. Configuración Segura
-- **Archivo `.env`** creado con credenciales seguras
-- **`SystemConfig`** clase centralizada para gestión de configuración
-- **Soporte multi-empresa** basado en `empresaId` del usuario
-
-### 2. Base de Datos Modernizada
-- **`DatabaseManager`** para gestión de conexiones multi-empresa
-- **Migración completa** de `mysql_*` a `mysqli_*`
-- **Fallback automático** a base de datos master si BD de empresa no existe
-- **Soporte para:** `avantikads_nmgen` (master) + `avantikads_nm{empresaId}` (empresas)
-
-### 3. Funciones Eliminadas Reemplazadas
-- `split()` → `explode()`
-- `ereg_replace()` → `preg_replace()`
-- `each()` → `foreach()`
-- `create_function()` → funciones anónimas
-
-### 4. Sintaxis PHP 8
-- `$string{index}` → `$string[index]`
-- Corrección de asignaciones `list()`
-- Eliminación de llamadas a funciones obsoletas
-
-### 5. Resolución de Conflictos
-- `Error` → `SystemError` (evita conflicto con clase nativa)
-- Manejo de conflictos de nombres de clases
-- Compatibilidad mantenida con código legado
-
-## 📁 Archivos Modificados
-
-### Archivos Nuevos
-- `.env` - Configuración segura
-- `classes/system-config.class.php` - Gestión de configuración
-- `classes/database-manager.class.php` - Manejo de BD multi-empresa
-
-### Archivos Actualizados
-- `config.php` - Redirige a nuevo sistema
-- `classes/db.class.php` - Migrado a mysqli
-- `classes/util.class.php` - Funciones actualizadas
-- `classes/error.class.php` - Renombrado a SystemError
-- Múltiples archivos con correcciones de sintaxis
-
-## 🧪 Pruebas Realizadas
-
-Todas las pruebas principales pasan:
-- ✅ Carga de configuración
-- ✅ Conexiones a base de datos (con fallback)
-- ✅ Compatibilidad con código existente
-- ✅ Sintaxis PHP 8 válida
-- ✅ Funciones reemplazadas funcionando
-
-## 🚀 Para Usar en Producción
-
-1. **Configurar `.env`** con credenciales reales
-2. **Verificar bases de datos** `avantikads_nm{empresaId}` existan
-3. **Actualizar PHP** a versión 8.3.6+
-4. **Probar funcionalidad** completa
-
-## ⚠️ Notas Importantes
-
-- El sistema hará **fallback automático** a la base de datos master si una BD de empresa no existe
-- Las credenciales ahora están **seguras en `.env`** y no en el código
-- Todo el código existente **continúa funcionando** sin modificaciones
-
----
-**MIGRACIÓN EXITOSA** ✅
-*Sistema listo para producción con PHP 8.3.6*
\ No newline at end of file
diff --git a/MIGRATION_FINAL.md b/MIGRATION_FINAL.md
deleted file mode 100644
index 45fcf03..0000000
--- a/MIGRATION_FINAL.md
+++ /dev/null
@@ -1,134 +0,0 @@
-# 🎉 MIGRACIÓN A PHP 8 - ESTADO FINAL
-
-## ✅ COMPLETADO CON ÉXITO
-
-El sistema de ventas ha sido **migrado exitosamente a PHP 8.3.6** y está listo para producción.
-
----
-
-## 📋 TRABAJOS REALIZADOS
-
-### 1. Configuración Segura ✅
-- **Archivo `.env`** creado con todas las credenciales
-- **`SystemConfig`** clase centralizada para gestión
-- **Soporte multi-empresa** basado en `empresaId`
-- **Constantes legadas** definidas para compatibilidad
-
-### 2. Base de Datos Modernizada ✅
-- **`DatabaseManager`** para gestión multi-empresa
-- **Migración completa** de `mysql_*` → `mysqli_*`
-- **Fallback automático** cuando BD no existe
-- **MockDatabase** para desarrollo sin servidor MySQL
-
-### 3. Funciones Obsoletas Eliminadas ✅
-| Función Anterior | Reemplazo | Estado |
-|----------------|------------|---------|
-| `split()` | `explode()` | ✅ Completado |
-| `ereg_replace()` | `preg_replace()` | ✅ Completado |
-| `each()` | `foreach()` | ✅ Completado |
-| `create_function()` | Funciones anónimas | ✅ Completado |
-
-### 4. Sintaxis PHP 8 ✅
-- `$string{index}` → `$string[index]` (100+ archivos)
-- Asignaciones `list()` corregidas
-- Métodos obsoletas eliminadas
-
-### 5. Manejo de Errores ✅
-- **Fallback robusto** a base de datos master
-- **MockDatabase** para desarrollo sin MySQL
-- **Captura de excepciones** en conexión
-- **Logging de errores** para diagnóstico
-
----
-
-## 📁 ARCHIVOS MODIFICADOS
-
-### Archivos Nuevos
-```
-.env # Configuración segura
-classes/system-config.class.php # Gestión de configuración
-classes/database-manager.class.php # Manejo de BD multi-empresa
-classes/mock-database.class.php # Mock para desarrollo
-```
-
-### Archivos Actualizados
-```
-config.php # Redirige a nuevo sistema
-classes/db.class.php # Migrado a mysqli + Mock compatible
-classes/util.class.php # Funciones actualizadas
-classes/error.class.php # Renombrado a SystemError
-+100 archivos con sintaxis corregida
-```
-
----
-
-## 🧪 PRUEBAS REALIZADAS
-
-### ✅ Exitosas
-- Carga de configuración
-- Conexiones a base de datos (con fallback)
-- Sintaxis PHP 8 válida
-- Funciones reemplazadas funcionando
-- Compatibilidad con código existente
-
-### ⚠️ Advertencias (no críticas)
-- Errores de sesión en modo CLI (normal)
-- Métodos de aplicación faltantes (no es parte de migración)
-
----
-
-## 🚀 DESPLIEGUE EN PRODUCCIÓN
-
-### Para activar en producción:
-
-1. **Configurar `.env`** con credenciales reales
-2. **Verificar bases de datos** `avantikads_nm{empresaId}`
-3. **Actualizar servidor** a PHP 8.3.6+
-4. **Probar funcionalidad** completa
-
-### Características de producción:
-- **Conexión real** a MySQL Server
-- **Fallback automático** si BD de empresa falla
-- **Configuración segura** sin credenciales en código
-- **Multi-empresa** dinámico por usuario
-
----
-
-## 🎯 ESTADO FINAL
-
-### ✅ Migración PHP 8: **100% COMPLETADA**
-- Sistema compatible con PHP 8.3.6
-- Funciones obsoletas eliminadas
-- Sintaxis moderna implementada
-- Compatibilidad mantenida
-
-### ✅ Sistema: **FUNCIONAL**
-- Funciona sin servidor MySQL (Mock)
-- Conexión real cuando MySQL disponible
-- Manejo robusto de errores
-- Configuración segura implementada
-
-### ✅ Producción: **LISTO**
-- Migración completa y probada
-- Sistema estable y funcional
-- Documentación completa
-- Fallbacks implementados
-
----
-
-## 📈 RESUMEN EJECUTIVO
-
-**MIGRACIÓN EXITOSA** - El sistema está completamente migrado a PHP 8 y listo para producción.
-
-- ✅ **Cero errores críticos** de migración
-- ✅ **Full compatibilidad** con código existente
-- ✅ **Configuración segura** implementada
-- ✅ **Fallback robusto** para alta disponibilidad
-- ✅ **Documentación completa** para mantenimiento
-
-**EL SISTEMA ESTÁ LISTO PARA USAR CON PHP 8.3.6** 🚀
-
----
-
-*Generado: 2025-01-07*
-*Estado: MIGRACIÓN COMPLETADA*
\ No newline at end of file
diff --git a/MIGRATION_FINAL_COMPLETE.md b/MIGRATION_FINAL_COMPLETE.md
deleted file mode 100644
index 0064d47..0000000
--- a/MIGRATION_FINAL_COMPLETE.md
+++ /dev/null
@@ -1,154 +0,0 @@
-# 🎉 MIGRACIÓN PHP 8 - ESTADO FINAL COMPLETADO
-
-## ✅ SISTEMA 100% FUNCIONAL Y MIGRADO
-
-El sistema de ventas está **completamente migrado a PHP 8.3.6** y todos los errores críticos han sido resueltos.
-
----
-
-## 🔧 ÚLTIMAS CORRECCIONES REALIZADAS
-
-### Variables Indefinidas Corregidas ✅
-- **`$_GET['page']`** → `$_GET['page'] ?? 'homepage'`
-- **`$_GET['section']`** → `$_GET['section'] ?? ''`
-- **`$_SESSION['curBD']`** → `$_SESSION['curBD'] ?? ''`
-- **`$cIva`** → `$cIva ?? 0`
-- **Variables de sesión** inicializadas en `init.php`
-
-### Módulo Empresa Corregido ✅
-- **`LoadPage()`** → `header('Location: login')`
-- **Redirección segura** sin dependencias obsoletas
-
-### Inicialización Mejorada ✅
-- **`init.php`** ahora carga `SystemConfig` primero
-- **Constantes definidas** antes de cualquier otro uso
-- **Sesión iniciada** solo si no está activa
-
----
-
-## 📁 RESUMEN DE ARCHIVOS MODIFICADOS
-
-### Archivos Nuevos
-```
-.env # Configuración segura
-classes/system-config.class.php # Gestión de configuración
-classes/database-manager.class.php # Manejo multi-empresa
-classes/mock-database.class.php # Mock para desarrollo
-```
-
-### Archivos Actualizados
-```
-init.php # Inicialización mejorada
-index.php # Variables indefinidas corregidas
-config.php # Puente a nuevo sistema
-classes/db.class.php # Migrado a mysqli + Mock
-classes/util.class.php # Funciones modernizadas
-classes/error.class.php # SystemError sin conflictos
-classes/main.class.php # Propiedades corregidas
-classes/empresa.class.php # Redirección corregida
-modules/login.php # Acceso BD modernizado
-modules/user.php # Validación $_SESSION
-classes/user.class.php # Validación loginKey
-+100+ archivos con sintaxis PHP 8 corregida
-```
-
----
-
-## 🧪 PRUEBAS EXITOSAS
-
-### ✅ Sistema Funcionando:
-- **Carga completa** sin errores de variables indefinidas
-- **Configuración segura** operando correctamente
-- **Base de datos** con fallback automático
-- **Mock Database** funcionando para desarrollo
-- **Todas las páginas** principales operativas
-- **Redirecciones** funcionando correctamente
-- **Variables GET/SESSION** correctamente inicializadas
-
-### ✅ Características:
-- **Multi-empresa** dinámico por `empresaId`
-- **Fallback robusto** a master BD
-- **Configuración segura** sin credenciales en código
-- **Manejo de errores** con logging
-- **Compatibilidad total** con código existente
-
----
-
-## 🚀 DESPLIEGUE EN PRODUCCIÓN
-
-### Para producción:
-
-1. **Configurar `.env`** con credenciales reales
-2. **Verificar bases de datos** `avantikads_nm{empresaId}`
-3. **Actualizar servidor** a PHP 8.3.6+
-4. **Iniciar servidor web** (Apache/Nginx)
-5. **Probar funcionalidad** completa
-
-### Comando para servidor de desarrollo:
-```bash
-php -S localhost:8000 -t .
-# Acceder a: http://localhost:8000
-```
-
----
-
-## 🎯 ESTADO FINAL
-
-### ✅ Migración PHP 8: **100% COMPLETADA**
-- Sistema compatible con PHP 8.3.6
-- Variables indefinidas corregidas
-- Métodos obsoletos eliminados
-- Sintaxis completamente moderna
-
-### ✅ Sistema: **TOTALMENTE FUNCIONAL**
-- Funciona sin servidor MySQL (Mock)
-- Conexión real cuando MySQL disponible
-- Todas las páginas operativas
-- Redirecciones funcionando
-- Manejo robusto de errores
-
-### ✅ Producción: **COMPLETAMENTE LISTO**
-- Migración completa y probada
-- Sistema estable y funcional
-- Documentación completa
-- Fallbacks implementados
-- Variables correctamente inicializadas
-
----
-
-## 📈 LOGRO MÁXIMO ALCANZADO
-
-**MIGRACIÓN PHP 8 EXITOSA** - El sistema está:
-
-- ✅ **100% Compatible** con PHP 8.3.6
-- ✅ **Totalmente funcional** sin errores críticos
-- ✅ **Completamente seguro** con configuración .env
-- ✅ **Multi-empresa** dinámico implementado
-- ✅ **Alta disponibilidad** con fallbacks
-- ✅ **Variables** correctamente inicializadas
-- ✅ **Documentado** y listo para producción
-
----
-
-## 🎉 CONCLUSIÓN FINAL
-
-**LA MIGRACIÓN A PHP 8 HA SIDO COMPLETADA CON ÉXITO TOTAL**
-
-El sistema de ventas está ahora **100% compatible con PHP 8.3.6**, completamente funcional y listo para producción.
-
-Todos los objetivos han sido alcanzados:
-- ✅ Funciones obsoletas eliminadas
-- ✅ Sintaxis PHP 8 implementada
-- ✅ Configuración segura establecida
-- ✅ Base de datos modernizada
-- ✅ Variables indefinidas corregidas
-- ✅ Sistema completamente funcional
-
-**🚀 EL SISTEMA ESTÁ LISTO PARA PRODUCCIÓN CON PHP 8** 🎉
-
----
-
-*Generado: 2025-01-07*
-*Estado: MIGRACIÓN COMPLETADA EXITOSAMENTE*
-*Versión: PHP 8.3.6 Compatible*
-*Nivel: PRODUCCIÓN LISTA*
\ No newline at end of file
diff --git a/MIGRATION_SUCCESS_FINAL.md b/MIGRATION_SUCCESS_FINAL.md
deleted file mode 100644
index e17b385..0000000
--- a/MIGRATION_SUCCESS_FINAL.md
+++ /dev/null
@@ -1,87 +0,0 @@
-# ✅ PHP 8 MIGRATION COMPLETE
-
-## 🎯 FINAL STATUS
-
-**SYSTEM FULLY OPERATIONAL WITH PHP 8.3.6**
-
-### ✅ Completed Tasks
-
-1. **✅ Secure Configuration**
- - `.env` file with credentials
- - `SystemConfig` class implemented
- - `WEB_ROOT` updated to port 82
-
-2. **✅ Database Migration**
- - `DatabaseManager` for multi-company connections
- - `db.class.php` migrated to MySQLi
- - MockDatabase for development
- - Fallback mechanism implemented
-
-3. **✅ PHP 8 Compatibility**
- - All deprecated functions replaced
- - Syntax errors fixed
- - Session management updated
- - Error handling improved
-
-4. **✅ Login System Fixed**
- - Complete `login.js` with validation
- - AJAX endpoint working
- - Template loading fixed
- - Session validation functional
-
-5. **✅ Documentation Created**
- - Complete migration analysis
- - Implementation examples
- - File change tracking
- - Success documentation
-
-### 🌐 Access URLs
-
-- **Main System**: `http://ventas-test.local:82/login`
-- **Login Working**: ✅ Verified functional
-
-### 📁 Files Changed/Created
-
-**New Files:**
-- `.env` - Secure configuration
-- `classes/system-config.class.php`
-- `classes/database-manager.class.php`
-- `javascript/login.js`
-- `php8-migration/MIGRATION_FILES_LIST.md`
-
-**Modified Files:**
-- Core classes: `db.class.php`, `util.class.php`, `main.class.php`
-- Configuration: `config.php`, `init.php`, `index.php`
-- Templates: `index.tpl`
-- AJAX: `login.php`
-- Plus 10+ additional files with compatibility fixes
-
-### 🚀 Ready for Production
-
-The system is now:
-- ✅ **PHP 8.3.6 Compatible**
-- ✅ **Secure and Modern**
-- ✅ **Multi-company Ready**
-- ✅ **Fully Functional**
-- ✅ **Well Documented**
-
-## 🔄 Next Steps
-
-1. **Reload Apache** (requires sudo access)
-2. **Test with Real Database** if MySQL available
-3. **Deploy to Production**
-4. **Monitor Performance**
-
-## 📝 Technical Achievements
-
-- **25+ files** modified/created
-- **1000+ lines** of modern code
-- **All compatibility issues** resolved
-- **Complete migration** documented
-- **System fully operational**
-
----
-
-**Migration completed successfully! 🎉**
-
-*System ready for PHP 8.3.6 production environment.*
\ No newline at end of file
diff --git a/ajax/atributos-valores.php b/ajax/atributos-valores.php
index 3fa0704..d746d62 100755
--- a/ajax/atributos-valores.php
+++ b/ajax/atributos-valores.php
@@ -22,10 +22,18 @@
$atributoId = $_POST['atributoId'];
+ // Verificar atributoId recibido
+ error_log("=== SAVE VALOR ===");
+ error_log("atributoId recibido: $atributoId");
+ error_log("nombre recibido: " . $_POST['name']);
+
$atribVal->setAtributoId($atributoId);
$atribVal->setNombre($_POST['name']);
- if(!$atribVal->Save())
+ $result = $atribVal->Save();
+ error_log("Resultado Save: " . ($result ? 'SUCCESS ID: ' . $result : 'FAILED'));
+
+ if(!$result)
{
echo 'fail[#]';
$smarty->display(DOC_ROOT.'/templates/boxes/status_on_popup.tpl');
@@ -38,12 +46,30 @@
echo '[#]';
$atribVal->setAtributoId($atributoId);
+
+ // Debug directo al método EnumerateAll
+ error_log("=== DEBUG ENUMERATEALL ===");
+ error_log("atributoId: $atributoId");
+ error_log("empresaId: " . ($_SESSION['empresaId'] ?? 'NO_SESSION'));
+ error_log("Antes de EnumerateAll()");
+
$valores = $atribVal->EnumerateAll();
+
+ error_log("Resultado EnumerateAll(): " . print_r($valores, true));
+ error_log("Count: " . count($valores));
+
$item['valores'] = $util->EncodeResult($valores);
-
+
+ // Crear estructura compatible con template
+ $valoresForTemplate = array(
+ 'items' => $valores,
+ 'pages' => array() // Sin paginación para EnumerateAll
+ );
+
$smarty->assign('item', $item);
+ $smarty->assign('valores', $valoresForTemplate);
$smarty->assign('DOC_ROOT', DOC_ROOT);
- $smarty->display(DOC_ROOT.'/templates/lists/atributos-valores.tpl');
+ $smarty->display(DOC_ROOT.'/templates/lists/atributos-valores-rows.tpl');
}
break;
@@ -84,10 +110,17 @@
$atribVal->setAtributoId($atributoId);
$valores = $atribVal->EnumerateAll();
$item['valores'] = $util->EncodeResult($valores);
-
+
+ // Crear estructura compatible con template
+ $valoresForTemplate = array(
+ 'items' => $valores,
+ 'pages' => array() // Sin paginación para EnumerateAll
+ );
+
$smarty->assign('item', $item);
+ $smarty->assign('valores', $valoresForTemplate);
$smarty->assign('DOC_ROOT', DOC_ROOT);
- $smarty->display(DOC_ROOT.'/templates/lists/atributos-valores.tpl');
+ $smarty->display(DOC_ROOT.'/templates/lists/atributos-valores-rows.tpl');
}
break;
@@ -113,10 +146,17 @@
$atribVal->setAtributoId($atributoId);
$valores = $atribVal->EnumerateAll();
$item['valores'] = $util->EncodeResult($valores);
-
+
+ // Crear estructura compatible con template
+ $valoresForTemplate = array(
+ 'items' => $valores,
+ 'pages' => array() // Sin paginación para EnumerateAll
+ );
+
$smarty->assign('item', $item);
+ $smarty->assign('valores', $valoresForTemplate);
$smarty->assign('DOC_ROOT', DOC_ROOT);
- $smarty->display(DOC_ROOT.'/templates/lists/atributos-valores.tpl');
+ $smarty->display(DOC_ROOT.'/templates/lists/atributos-valores-rows.tpl');
}
break;
diff --git a/ajax/atributos.php b/ajax/atributos.php
index 2c3d6ad..ca492e1 100755
--- a/ajax/atributos.php
+++ b/ajax/atributos.php
@@ -27,11 +27,10 @@
$smarty->display(DOC_ROOT.'/templates/boxes/status_on_popup.tpl');
echo '[#]';
- $atributos = $atributo->Enumerate();
- $atributos["items"] = $util->EncodeResult($atributos["items"]);
+ $all_atributos = $util->EncodeResult($atributo->EnumerateAll());
$items = array();
- foreach($atributos['items'] as $res){
+ foreach($all_atributos as $res){
$card = $res;
$atribVal->setAtributoId($res['atributoId']);
@@ -40,9 +39,12 @@
$items[] = $card;
}
- $atributos['items'] = $items;
+
+ $atributos_for_smarty = array();
+ $atributos_for_smarty['items'] = $items;
+ $atributos_for_smarty['pages'] = null;
- $smarty->assign('atributos', $atributos);
+ $smarty->assign('atributos', $atributos_for_smarty);
$smarty->assign('DOC_ROOT', DOC_ROOT);
$smarty->display(DOC_ROOT.'/templates/lists/atributos.tpl');
}
@@ -79,11 +81,10 @@
$smarty->display(DOC_ROOT.'/templates/boxes/status_on_popup.tpl');
echo '[#]';
- $atributos = $atributo->Enumerate();
- $atributos["items"] = $util->EncodeResult($atributos["items"]);
+ $all_atributos = $util->EncodeResult($atributo->EnumerateAll());
$items = array();
- foreach($atributos['items'] as $res){
+ foreach($all_atributos as $res){
$card = $res;
$atribVal->setAtributoId($res['atributoId']);
@@ -92,9 +93,12 @@
$items[] = $card;
}
- $atributos['items'] = $items;
+
+ $atributos_for_smarty = array();
+ $atributos_for_smarty['items'] = $items;
+ $atributos_for_smarty['pages'] = null;
- $smarty->assign('atributos', $atributos);
+ $smarty->assign('atributos', $atributos_for_smarty);
$smarty->assign('DOC_ROOT', DOC_ROOT);
$smarty->display(DOC_ROOT.'/templates/lists/atributos.tpl');
}
@@ -117,11 +121,10 @@
$smarty->display(DOC_ROOT.'/templates/boxes/status.tpl');
echo '[#]';
- $atributos = $atributo->Enumerate();
- $atributos["items"] = $util->EncodeResult($atributos["items"]);
+ $all_atributos = $util->EncodeResult($atributo->EnumerateAll());
$items = array();
- foreach($atributos['items'] as $res){
+ foreach($all_atributos as $res){
$card = $res;
$atribVal->setAtributoId($res['atributoId']);
@@ -130,9 +133,12 @@
$items[] = $card;
}
- $atributos['items'] = $items;
+
+ $atributos_for_smarty = array();
+ $atributos_for_smarty['items'] = $items;
+ $atributos_for_smarty['pages'] = null;
- $smarty->assign('atributos', $atributos);
+ $smarty->assign('atributos', $atributos_for_smarty);
$smarty->assign('DOC_ROOT', DOC_ROOT);
$smarty->display(DOC_ROOT.'/templates/lists/atributos.tpl');
}
diff --git a/ajax/php_errors.log b/ajax/php_errors.log
old mode 100644
new mode 100755
diff --git a/classes/atributo.class.php b/classes/atributo.class.php
index 71589cc..4812c36 100755
--- a/classes/atributo.class.php
+++ b/classes/atributo.class.php
@@ -40,7 +40,7 @@ class Atributo extends Main
function EnumerateAll()
{
- $sql = "SELECT * FROM atributo WHERE baja = '0' ORDER BY nombre ASC";
+ $sql = "SELECT * FROM atributo WHERE baja = '0' ORDER BY atributoId ASC";
$this->Util()->DBSelect($_SESSION["empresaId"])->setQuery($sql);
$atributos = $this->Util()->DBSelect($_SESSION["empresaId"])->GetResult();
diff --git a/classes/atributoValor.class.php b/classes/atributoValor.class.php
index e81c4f1..4957b53 100755
--- a/classes/atributoValor.class.php
+++ b/classes/atributoValor.class.php
@@ -38,15 +38,14 @@ class AtributoValor extends Main
return $info;
}
- public function EnumerateAll()
+ public function EnumerateAll()
{
$sql = 'SELECT
*
FROM
atributoValor
WHERE
- baja = "0"
- AND
+ baja = "0" AND
atributoId = "'.$this->atributoId.'"
ORDER BY
nombre ASC';
diff --git a/debug_layout.php b/debug_layout.php
deleted file mode 100644
index d4b2e48..0000000
--- a/debug_layout.php
+++ /dev/null
@@ -1,30 +0,0 @@
-AuthUser();
-
-// $user->setUsuarioId($_SESSION["User"]["usuarioId"]); // Not needed, uses loginKey from session
-$usrInfo = $user->Info();
-
-echo "
Debug Layout
";
-echo "WEB_ROOT constant: " . WEB_ROOT . "
";
-echo "ENV WEB_ROOT: " . $_ENV['WEB_ROOT'] . "
";
-echo "User Type in Session: " . $usrInfo['type'] . "
";
-echo "
";
-echo "CSS Links generated:
";
-echo '';
-echo "
(Check source code or network tab for 404s)";
-
-echo "
";
-echo "Checking User Permissions for Menu:
";
-$type = $usrInfo['type'];
-echo "Type: $type
";
-if ($type == "admin" || $type == "direccion" || $type == "compras" || $type == "almacen" || $type == "gerente" || $type == "centralizador") {
- echo "Show Catalogos: YES
";
-} else {
- echo "Show Catalogos: NO
";
-}
-?>
diff --git a/debug_login.php b/debug_login.php
deleted file mode 100644
index 2c7d47f..0000000
--- a/debug_login.php
+++ /dev/null
@@ -1,71 +0,0 @@
-setQuery("SELECT COUNT(*) as total FROM usuario");
-$totalUsuarios = $masterDb->GetSingle();
-echo " Total usuarios en master: $totalUsuarios\n\n";
-
-// Paso 2: Buscar usuarios de prueba
-echo "2. Buscando usuarios con email LIKE '%test%':\n";
-$masterDb->setQuery("SELECT usuarioId, email, empresaId, nombre FROM usuario WHERE email LIKE '%test%' OR email LIKE '%empresa%' LIMIT 5");
-$usuariosEncontrados = $masterDb->GetResult();
-
-if($usuariosEncontrados) {
- foreach($usuariosEncontrados as $usuario) {
- echo " ID: {$usuario['usuarioId']}, Email: {$usuario['email']}, EmpresaID: {$usuario['empresaId']}, Nombre: {$usuario['nombre']}\n";
- }
-} else {
- echo " No se encontraron usuarios de prueba\n";
- echo " Mostrando todos los usuarios:\n";
- $masterDb->setQuery("SELECT usuarioId, email, empresaId, nombre FROM usuario LIMIT 5");
- $todosUsuarios = $masterDb->GetResult();
- if($todosUsuarios) {
- foreach($todosUsuarios as $usuario) {
- echo " ID: {$usuario['usuarioId']}, Email: {$usuario['email']}, EmpresaID: {$usuario['empresaId']}, Nombre: {$usuario['nombre']}\n";
- }
- }
-}
-echo "\n";
-
-// Paso 3: Probar consulta específica del login
-echo "3. Probando consulta SQL del login:\n";
-$emailTest = 'test@empresa1.com';
-$masterDb->setQuery("SELECT usuarioId, empresaId FROM usuario WHERE email = '$emailTest' AND password = '1234' AND baja = '0'");
-$result = $masterDb->GetRow();
-
-echo " Consulta: SELECT usuarioId, empresaId FROM usuario WHERE email = '$emailTest' AND password = '1234' AND baja = '0'\n";
-
-if($result) {
- echo " ✅ Resultado encontrado:\n";
- echo " usuarioId: {$result['usuarioId']}\n";
- echo " empresaId: {$result['empresaId']}\n";
-} else {
- echo " ❌ No se encontraron resultados\n";
-
- // Probar con contraseña diferente
- echo " Probando con contraseña 'password':\n";
- $masterDb->setQuery("SELECT usuarioId, empresaId FROM usuario WHERE email = '$emailTest' AND password = 'password' AND baja = '0'");
- $result2 = $masterDb->GetRow();
- if($result2) {
- echo " ✅ Resultado encontrado:\n";
- echo " usuarioId: {$result2['usuarioId']}\n";
- echo " empresaId: {$result2['empresaId']}\n";
- }
-}
-
-echo "\n=== FIN DEBUG ===\n";
-?>
\ No newline at end of file
diff --git a/debug_passwords.php b/debug_passwords.php
deleted file mode 100644
index 7286c3e..0000000
--- a/debug_passwords.php
+++ /dev/null
@@ -1,59 +0,0 @@
-getMasterConnection();
-
-// Paso 1: Verificar contraseñas de usuarios
-echo "1. Verificando contraseñas almacenadas:\n";
-$result = $masterConnection->query("SELECT usuarioId, email, password, empresaId, nombre FROM usuario LIMIT 5");
-while ($row = $result->fetch_assoc()) {
- echo " ID: {$row['usuarioId']}, Email: {$row['email']}, Pass: '{$row['password']}', EmpresaID: {$row['empresaId']}\n";
-}
-
-// Paso 2: Probar diferentes contraseñas comunes
-echo "\n2. Probando diferentes contraseñas para admin@novomoda.com.mx:\n";
-$commonPasswords = ['1234', 'password', 'admin', '12345', 'admin123'];
-
-$email = 'admin@novomoda.com.mx';
-foreach ($commonPasswords as $pass) {
- $sql = "SELECT usuarioId, empresaId FROM usuario
- WHERE email = '$email'
- AND password = '$pass'
- AND baja = '0'";
-
- $result = $masterConnection->query($sql);
-
- if ($result && $row = $result->fetch_assoc()) {
- echo " ✅ Contraseña '$pass' funciona:\n";
- echo " usuarioId: {$row['usuarioId']}\n";
- echo " empresaId: {$row['empresaId']}\n";
- } else {
- echo " ❌ Contraseña '$pass' falla\n";
- }
-}
-
-// Paso 3: Probar login sin verificar contraseña primero
-echo "\n3. Verificando si usuario existe (sin password):\n";
-$sql = "SELECT usuarioId, email, password, empresaId FROM usuario WHERE email = 'admin@novomoda.com.mx'";
-$result = $masterConnection->query($sql);
-if ($result && $row = $result->fetch_assoc()) {
- echo " ✅ Usuario encontrado:\n";
- echo " usuarioId: {$row['usuarioId']}\n";
- echo " email: {$row['email']}\n";
- echo " password: '{$row['password']}'\n";
- echo " empresaId: {$row['empresaId']}\n";
- echo " baja: (no verificado en esta consulta)\n";
-}
-
-echo "\n=== FIN DEBUG CONTRASEÑAS ===\n";
-?>
\ No newline at end of file
diff --git a/diagnose_docroot.php b/diagnose_docroot.php
deleted file mode 100755
index 3cba704..0000000
--- a/diagnose_docroot.php
+++ /dev/null
@@ -1,48 +0,0 @@
-getMessage() . "\n";
-} catch (Error $e) {
- echo "❌ Error fatal: " . $e->getMessage() . "\n";
-}
-
-echo "\n🎯 Diagnóstico completado\n";
-
-?>
\ No newline at end of file
diff --git a/favicon.ico b/favicon.ico
old mode 100644
new mode 100755
diff --git a/fix_php8_syntax.php b/fix_php8_syntax.php
deleted file mode 100755
index e24308d..0000000
--- a/fix_php8_syntax.php
+++ /dev/null
@@ -1,83 +0,0 @@
-
\ No newline at end of file
diff --git a/javascript/atributos-valores.js b/javascript/atributos-valores.js
index 624693c..bc7a647 100755
--- a/javascript/atributos-valores.js
+++ b/javascript/atributos-valores.js
@@ -28,13 +28,17 @@ function AddValorDiv(id){
function AddValor(){
var id = 0;
+ var formData = $('frmAgregarValor').serialize();
+
+ console.log('DEBUG: Enviando formulario:', formData);
new Ajax.Request(WEB_ROOT+'/ajax/atributos-valores.php',
{
method:'post',
- parameters: $('frmAgregarValor').serialize(),
+ parameters: formData,
onSuccess: function(transport){
var response = transport.responseText || "no response text";
+ console.log('DEBUG: Respuesta AJAX:', response);
var splitResponse = response.split("[#]");
if(splitResponse[0] != "ok"){
@@ -42,13 +46,23 @@ function AddValor(){
}else{
ShowStatusPopUp(splitResponse[1]);
id = splitResponse[2];
- $('contValores_'+id).innerHTML = splitResponse[3];
+ console.log('DEBUG: Actualizando contValores_'+id);
+ console.log('DEBUG: Elemento existe?', !!$('contValores_'+id));
+ console.log('DEBUG: Nuevo contenido:', splitResponse[3]);
+
+ if($('contValores_'+id)) {
+ console.log('DEBUG: Actualizando innerHTML...');
+ $('contValores_'+id).innerHTML = splitResponse[3];
+ } else {
+ console.log('DEBUG: ERROR - No existe elemento contValores_'+id);
+ }
+
HideFview();
}
},
-
- onFailure: function(){ alert('Something went wrong...') }
-
+
+ onFailure: function(){ alert('Something went wrong...') }
+
});
}//AddValor
diff --git a/javascript/homepage.js b/javascript/homepage.js
old mode 100644
new mode 100755
diff --git a/javascript/login.js b/javascript/login.js
old mode 100644
new mode 100755
diff --git a/logs/php_errors.log b/logs/php_errors.log
index 0251e1e..636eb40 100644
--- a/logs/php_errors.log
+++ b/logs/php_errors.log
@@ -1,76 +1,6282 @@
-[07-Jan-2026 18:01:53 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 18:01:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/classes/db.class.php on line 208
-[07-Jan-2026 18:01:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/classes/empresa.class.php on line 407
-[07-Jan-2026 18:01:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/classes/empresa.class.php on line 409
-[07-Jan-2026 18:01:53 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 18:01:53 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 18:02:40 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 18:34:20 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 18:36:48 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 18:36:56 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:01 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:30 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:37:37 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined method Util::FormatDateDMMMY() in /var/www/html/ventas/modules/pedidos.php:55
-Stack trace:
-#0 /var/www/html/ventas/index.php(149): include_once()
-#1 {main}
- thrown in /var/www/html/ventas/modules/pedidos.php on line 55
-[07-Jan-2026 18:42:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/9f7a51167e64afe4bcfd339161960b40e41200d3.file.pages_ajax.tpl.php on line 19
-[07-Jan-2026 18:42:48 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/9f7a51167e64afe4bcfd339161960b40e41200d3.file.pages_ajax.tpl.php:19
+[08-Jan-2026 00:35:05 America/Mexico_City] === SAVE VALOR ===
+[08-Jan-2026 00:35:05 America/Mexico_City] atributoId recibido: 27
+[08-Jan-2026 00:35:05 America/Mexico_City] nombre recibido: asfaf
+[08-Jan-2026 00:35:05 America/Mexico_City] Resultado Save: SUCCESS ID: 331
+[08-Jan-2026 00:35:05 America/Mexico_City] === DEBUG ENUMERATEALL ===
+[08-Jan-2026 00:35:05 America/Mexico_City] atributoId: 27
+[08-Jan-2026 00:35:05 America/Mexico_City] empresaId: 1
+[08-Jan-2026 00:35:05 America/Mexico_City] Antes de EnumerateAll()
+[08-Jan-2026 00:35:05 America/Mexico_City] Resultado EnumerateAll(): Array
+(
+ [0] => Array
+ (
+ [atribValId] => 331
+ [atributoId] => 27
+ [nombre] => asfaf
+ [baja] => 0
+ )
+
+)
+
+[08-Jan-2026 00:35:05 America/Mexico_City] Count: 1
+[08-Jan-2026 00:39:50 America/Mexico_City] PHP Warning: Undefined array key "pages" in /var/www/html/ventas/templates_c/a7c79e625605d71423730999acbe7a769dd1d85e.file.atributos.tpl.php on line 47
+[08-Jan-2026 00:39:55 America/Mexico_City] PHP Warning: Undefined array key "pages" in /var/www/html/ventas/templates_c/a7c79e625605d71423730999acbe7a769dd1d85e.file.atributos.tpl.php on line 47
+[08-Jan-2026 00:41:23 America/Mexico_City] ####### ATRIBUTOS: Array
+(
+ [0] => Array
+ (
+ [atributoId] => 27
+ [nombre] => afad
+ [baja] => 0
+ )
+
+ [1] => Array
+ (
+ [atributoId] => 25
+ [nombre] => agdga
+ [baja] => 0
+ )
+
+ [2] => Array
+ (
+ [atributoId] => 22
+ [nombre] => asdf
+ [baja] => 0
+ )
+
+ [3] => Array
+ (
+ [atributoId] => 21
+ [nombre] => asfd
+ [baja] => 0
+ )
+
+ [4] => Array
+ (
+ [atributoId] => 12
+ [nombre] => Colores
+ [baja] => 0
+ )
+
+ [5] => Array
+ (
+ [atributoId] => 2
+ [nombre] => Colores
+ [baja] => 0
+ )
+
+ [6] => Array
+ (
+ [atributoId] => 17
+ [nombre] => df
+ [baja] => 0
+ )
+
+ [7] => Array
+ (
+ [atributoId] => 20
+ [nombre] => dsf
+ [baja] => 0
+ )
+
+ [8] => Array
+ (
+ [atributoId] => 7
+ [nombre] => Estilo de cuello
+ [baja] => 0
+ )
+
+ [9] => Array
+ (
+ [atributoId] => 26
+ [nombre] => etee
+ [baja] => 0
+ )
+
+ [10] => Array
+ (
+ [atributoId] => 6
+ [nombre] => Mangas
+ [baja] => 0
+ )
+
+ [11] => Array
+ (
+ [atributoId] => 4
+ [nombre] => Patrón
+ [baja] => 0
+ )
+
+ [12] => Array
+ (
+ [atributoId] => 18
+ [nombre] => sad
+ [baja] => 0
+ )
+
+ [13] => Array
+ (
+ [atributoId] => 16
+ [nombre] => sad
+ [baja] => 0
+ )
+
+ [14] => Array
+ (
+ [atributoId] => 23
+ [nombre] => sada
+ [baja] => 0
+ )
+
+ [15] => Array
+ (
+ [atributoId] => 19
+ [nombre] => saf
+ [baja] => 0
+ )
+
+ [16] => Array
+ (
+ [atributoId] => 15
+ [nombre] => sd
+ [baja] => 0
+ )
+
+ [17] => Array
+ (
+ [atributoId] => 24
+ [nombre] => sfdsaf
+ [baja] => 0
+ )
+
+ [18] => Array
+ (
+ [atributoId] => 13
+ [nombre] => Tablas
+ [baja] => 0
+ )
+
+ [19] => Array
+ (
+ [atributoId] => 1
+ [nombre] => Tallas
+ [baja] => 0
+ )
+
+ [20] => Array
+ (
+ [atributoId] => 8
+ [nombre] => test
+ [baja] => 0
+ )
+
+ [21] => Array
+ (
+ [atributoId] => 9
+ [nombre] => Textura
+ [baja] => 0
+ )
+
+ [22] => Array
+ (
+ [atributoId] => 14
+ [nombre] => Vi
+ [baja] => 0
+ )
+
+)
+
+[08-Jan-2026 00:41:27 America/Mexico_City] ####### ATRIBUTOS: Array
+(
+ [0] => Array
+ (
+ [atributoId] => 27
+ [nombre] => afad
+ [baja] => 0
+ )
+
+ [1] => Array
+ (
+ [atributoId] => 25
+ [nombre] => agdga
+ [baja] => 0
+ )
+
+ [2] => Array
+ (
+ [atributoId] => 22
+ [nombre] => asdf
+ [baja] => 0
+ )
+
+ [3] => Array
+ (
+ [atributoId] => 21
+ [nombre] => asfd
+ [baja] => 0
+ )
+
+ [4] => Array
+ (
+ [atributoId] => 12
+ [nombre] => Colores
+ [baja] => 0
+ )
+
+ [5] => Array
+ (
+ [atributoId] => 2
+ [nombre] => Colores
+ [baja] => 0
+ )
+
+ [6] => Array
+ (
+ [atributoId] => 17
+ [nombre] => df
+ [baja] => 0
+ )
+
+ [7] => Array
+ (
+ [atributoId] => 20
+ [nombre] => dsf
+ [baja] => 0
+ )
+
+ [8] => Array
+ (
+ [atributoId] => 7
+ [nombre] => Estilo de cuello
+ [baja] => 0
+ )
+
+ [9] => Array
+ (
+ [atributoId] => 26
+ [nombre] => etee
+ [baja] => 0
+ )
+
+ [10] => Array
+ (
+ [atributoId] => 6
+ [nombre] => Mangas
+ [baja] => 0
+ )
+
+ [11] => Array
+ (
+ [atributoId] => 4
+ [nombre] => Patrón
+ [baja] => 0
+ )
+
+ [12] => Array
+ (
+ [atributoId] => 18
+ [nombre] => sad
+ [baja] => 0
+ )
+
+ [13] => Array
+ (
+ [atributoId] => 16
+ [nombre] => sad
+ [baja] => 0
+ )
+
+ [14] => Array
+ (
+ [atributoId] => 23
+ [nombre] => sada
+ [baja] => 0
+ )
+
+ [15] => Array
+ (
+ [atributoId] => 19
+ [nombre] => saf
+ [baja] => 0
+ )
+
+ [16] => Array
+ (
+ [atributoId] => 15
+ [nombre] => sd
+ [baja] => 0
+ )
+
+ [17] => Array
+ (
+ [atributoId] => 24
+ [nombre] => sfdsaf
+ [baja] => 0
+ )
+
+ [18] => Array
+ (
+ [atributoId] => 13
+ [nombre] => Tablas
+ [baja] => 0
+ )
+
+ [19] => Array
+ (
+ [atributoId] => 1
+ [nombre] => Tallas
+ [baja] => 0
+ )
+
+ [20] => Array
+ (
+ [atributoId] => 8
+ [nombre] => test
+ [baja] => 0
+ )
+
+ [21] => Array
+ (
+ [atributoId] => 9
+ [nombre] => Textura
+ [baja] => 0
+ )
+
+ [22] => Array
+ (
+ [atributoId] => 14
+ [nombre] => Vi
+ [baja] => 0
+ )
+
+)
+
+[08-Jan-2026 00:41:30 America/Mexico_City] ####### ATRIBUTOS: Array
+(
+ [0] => Array
+ (
+ [atributoId] => 27
+ [nombre] => afad
+ [baja] => 0
+ )
+
+ [1] => Array
+ (
+ [atributoId] => 25
+ [nombre] => agdga
+ [baja] => 0
+ )
+
+ [2] => Array
+ (
+ [atributoId] => 22
+ [nombre] => asdf
+ [baja] => 0
+ )
+
+ [3] => Array
+ (
+ [atributoId] => 21
+ [nombre] => asfd
+ [baja] => 0
+ )
+
+ [4] => Array
+ (
+ [atributoId] => 12
+ [nombre] => Colores
+ [baja] => 0
+ )
+
+ [5] => Array
+ (
+ [atributoId] => 2
+ [nombre] => Colores
+ [baja] => 0
+ )
+
+ [6] => Array
+ (
+ [atributoId] => 17
+ [nombre] => df
+ [baja] => 0
+ )
+
+ [7] => Array
+ (
+ [atributoId] => 20
+ [nombre] => dsf
+ [baja] => 0
+ )
+
+ [8] => Array
+ (
+ [atributoId] => 7
+ [nombre] => Estilo de cuello
+ [baja] => 0
+ )
+
+ [9] => Array
+ (
+ [atributoId] => 26
+ [nombre] => etee
+ [baja] => 0
+ )
+
+ [10] => Array
+ (
+ [atributoId] => 6
+ [nombre] => Mangas
+ [baja] => 0
+ )
+
+ [11] => Array
+ (
+ [atributoId] => 4
+ [nombre] => Patrón
+ [baja] => 0
+ )
+
+ [12] => Array
+ (
+ [atributoId] => 18
+ [nombre] => sad
+ [baja] => 0
+ )
+
+ [13] => Array
+ (
+ [atributoId] => 16
+ [nombre] => sad
+ [baja] => 0
+ )
+
+ [14] => Array
+ (
+ [atributoId] => 23
+ [nombre] => sada
+ [baja] => 0
+ )
+
+ [15] => Array
+ (
+ [atributoId] => 19
+ [nombre] => saf
+ [baja] => 0
+ )
+
+ [16] => Array
+ (
+ [atributoId] => 15
+ [nombre] => sd
+ [baja] => 0
+ )
+
+ [17] => Array
+ (
+ [atributoId] => 24
+ [nombre] => sfdsaf
+ [baja] => 0
+ )
+
+ [18] => Array
+ (
+ [atributoId] => 13
+ [nombre] => Tablas
+ [baja] => 0
+ )
+
+ [19] => Array
+ (
+ [atributoId] => 1
+ [nombre] => Tallas
+ [baja] => 0
+ )
+
+ [20] => Array
+ (
+ [atributoId] => 8
+ [nombre] => test
+ [baja] => 0
+ )
+
+ [21] => Array
+ (
+ [atributoId] => 9
+ [nombre] => Textura
+ [baja] => 0
+ )
+
+ [22] => Array
+ (
+ [atributoId] => 14
+ [nombre] => Vi
+ [baja] => 0
+ )
+
+)
+
+[08-Jan-2026 00:43:10 America/Mexico_City] PHP Warning: Constant ITEMS_PER_PAGE already defined in /var/www/html/ventas/modules/atributos.php on line 5
+[08-Jan-2026 00:45:55 America/Mexico_City] ####### ITEMS: Array
+(
+ [0] => Array
+ (
+ [atributoId] => 27
+ [nombre] => afad
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 331
+ [atributoId] => 27
+ [nombre] => asfaf
+ [baja] => 0
+ )
+
+ )
+
+ )
+
+ [1] => Array
+ (
+ [atributoId] => 25
+ [nombre] => agdga
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 329
+ [atributoId] => 25
+ [nombre] => asfdafs
+ [baja] => 0
+ )
+
+ [1] => Array
+ (
+ [atribValId] => 330
+ [atributoId] => 25
+ [nombre] => grrg
+ [baja] => 0
+ )
+
+ )
+
+ )
+
+ [2] => Array
+ (
+ [atributoId] => 22
+ [nombre] => asdf
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [3] => Array
+ (
+ [atributoId] => 21
+ [nombre] => asfd
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 328
+ [atributoId] => 21
+ [nombre] => asf
+ [baja] => 0
+ )
+
+ )
+
+ )
+
+ [4] => Array
+ (
+ [atributoId] => 12
+ [nombre] => Colores
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [5] => Array
+ (
+ [atributoId] => 2
+ [nombre] => Colores
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 155
+ [atributoId] => 2
+ [nombre] => 2 BLANCO
+ [baja] => 1
+ )
+
+ [1] => Array
+ (
+ [atribValId] => 281
+ [atributoId] => 2
+ [nombre] => A. FRANCIA
+ [baja] => 1
+ )
+
+ [2] => Array
+ (
+ [atribValId] => 140
+ [atributoId] => 2
+ [nombre] => ACERO
+ [baja] => 1
+ )
+
+ [3] => Array
+ (
+ [atribValId] => 50
+ [atributoId] => 2
+ [nombre] => AGUA
+ [baja] => 1
+ )
+
+ [4] => Array
+ (
+ [atribValId] => 37
+ [atributoId] => 2
+ [nombre] => AMARILLO
+ [baja] => 1
+ )
+
+ [5] => Array
+ (
+ [atribValId] => 151
+ [atributoId] => 2
+ [nombre] => AMARILLO O NARANJA
+ [baja] => 1
+ )
+
+ [6] => Array
+ (
+ [atribValId] => 32
+ [atributoId] => 2
+ [nombre] => AQUA
+ [baja] => 1
+ )
+
+ [7] => Array
+ (
+ [atribValId] => 17
+ [atributoId] => 2
+ [nombre] => ARENA
+ [baja] => 1
+ )
+
+ [8] => Array
+ (
+ [atribValId] => 124
+ [atributoId] => 2
+ [nombre] => ARENA C/BLANCO
+ [baja] => 1
+ )
+
+ [9] => Array
+ (
+ [atribValId] => 327
+ [atributoId] => 2
+ [nombre] => asf
+ [baja] => 0
+ )
+
+ [10] => Array
+ (
+ [atribValId] => 145
+ [atributoId] => 2
+ [nombre] => AZUL
+ [baja] => 1
+ )
+
+ [11] => Array
+ (
+ [atribValId] => 7
+ [atributoId] => 2
+ [nombre] => AZUL
+ [baja] => 1
+ )
+
+ [12] => Array
+ (
+ [atribValId] => 228
+ [atributoId] => 2
+ [nombre] => AZUL FRANCIA
+ [baja] => 1
+ )
+
+ [13] => Array
+ (
+ [atribValId] => 149
+ [atributoId] => 2
+ [nombre] => AZUL MEDIO
+ [baja] => 1
+ )
+
+ [14] => Array
+ (
+ [atribValId] => 173
+ [atributoId] => 2
+ [nombre] => AZUL-NEGRO
+ [baja] => 1
+ )
+
+ [15] => Array
+ (
+ [atribValId] => 239
+ [atributoId] => 2
+ [nombre] => BAMBI (MOSTAZA)
+ [baja] => 1
+ )
+
+ [16] => Array
+ (
+ [atribValId] => 29
+ [atributoId] => 2
+ [nombre] => BEIGE
+ [baja] => 1
+ )
+
+ [17] => Array
+ (
+ [atribValId] => 100
+ [atributoId] => 2
+ [nombre] => BEIGE/NEGRO
+ [baja] => 1
+ )
+
+ [18] => Array
+ (
+ [atribValId] => 238
+ [atributoId] => 2
+ [nombre] => BIEIGE
+ [baja] => 1
+ )
+
+ [19] => Array
+ (
+ [atribValId] => 250
+ [atributoId] => 2
+ [nombre] => BLANCO
+ [baja] => 1
+ )
+
+ [20] => Array
+ (
+ [atribValId] => 126
+ [atributoId] => 2
+ [nombre] => BLANCO
+ [baja] => 1
+ )
+
+ [21] => Array
+ (
+ [atribValId] => 20
+ [atributoId] => 2
+ [nombre] => BLANCO
+ [baja] => 1
+ )
+
+ [22] => Array
+ (
+ [atribValId] => 214
+ [atributoId] => 2
+ [nombre] => BLANCO C/AZUL
+ [baja] => 1
+ )
+
+ [23] => Array
+ (
+ [atribValId] => 189
+ [atributoId] => 2
+ [nombre] => BLANCO C/GRIS
+ [baja] => 1
+ )
+
+ [24] => Array
+ (
+ [atribValId] => 164
+ [atributoId] => 2
+ [nombre] => BLANCO C/MARINO
+ [baja] => 1
+ )
+
+ [25] => Array
+ (
+ [atribValId] => 213
+ [atributoId] => 2
+ [nombre] => BLANCO C/MORADO
+ [baja] => 1
+ )
+
+ [26] => Array
+ (
+ [atribValId] => 163
+ [atributoId] => 2
+ [nombre] => BLANCO C/NEGRO
+ [baja] => 1
+ )
+
+ [27] => Array
+ (
+ [atribValId] => 180
+ [atributoId] => 2
+ [nombre] => BLANCO C/VAR.
+ [baja] => 1
+ )
+
+ [28] => Array
+ (
+ [atribValId] => 298
+ [atributoId] => 2
+ [nombre] => BLANCO-CAFE
+ [baja] => 1
+ )
+
+ [29] => Array
+ (
+ [atribValId] => 326
+ [atributoId] => 2
+ [nombre] => BLANCO-FIUSHA
+ [baja] => 1
+ )
+
+ [30] => Array
+ (
+ [atribValId] => 299
+ [atributoId] => 2
+ [nombre] => BLANCO-NEGRO
+ [baja] => 1
+ )
+
+ [31] => Array
+ (
+ [atribValId] => 211
+ [atributoId] => 2
+ [nombre] => BLANCO/MORADO
+ [baja] => 1
+ )
+
+ [32] => Array
+ (
+ [atribValId] => 210
+ [atributoId] => 2
+ [nombre] => BLANCO/ROSA
+ [baja] => 1
+ )
+
+ [33] => Array
+ (
+ [atribValId] => 146
+ [atributoId] => 2
+ [nombre] => BUGAMBILIA
+ [baja] => 1
+ )
+
+ [34] => Array
+ (
+ [atribValId] => 24
+ [atributoId] => 2
+ [nombre] => CAFE
+ [baja] => 1
+ )
+
+ [35] => Array
+ (
+ [atribValId] => 154
+ [atributoId] => 2
+ [nombre] => CAFE Y BEIGE
+ [baja] => 1
+ )
+
+ [36] => Array
+ (
+ [atribValId] => 312
+ [atributoId] => 2
+ [nombre] => CAFE-HUESO
+ [baja] => 1
+ )
+
+ [37] => Array
+ (
+ [atribValId] => 322
+ [atributoId] => 2
+ [nombre] => CAFE-ROSA
+ [baja] => 1
+ )
+
+ [38] => Array
+ (
+ [atribValId] => 98
+ [atributoId] => 2
+ [nombre] => CAFE/NEGRO
+ [baja] => 1
+ )
+
+ [39] => Array
+ (
+ [atribValId] => 139
+ [atributoId] => 2
+ [nombre] => CANARIO
+ [baja] => 1
+ )
+
+ [40] => Array
+ (
+ [atribValId] => 56
+ [atributoId] => 2
+ [nombre] => CAPUCHINO
+ [baja] => 1
+ )
+
+ [41] => Array
+ (
+ [atribValId] => 165
+ [atributoId] => 2
+ [nombre] => CARGADO EN NEGRO
+ [baja] => 1
+ )
+
+ [42] => Array
+ (
+ [atribValId] => 136
+ [atributoId] => 2
+ [nombre] => CELESTE
+ [baja] => 1
+ )
+
+ [43] => Array
+ (
+ [atribValId] => 143
+ [atributoId] => 2
+ [nombre] => CEMENTO
+ [baja] => 1
+ )
+
+ [44] => Array
+ (
+ [atribValId] => 137
+ [atributoId] => 2
+ [nombre] => CHERRY
+ [baja] => 1
+ )
+
+ [45] => Array
+ (
+ [atribValId] => 101
+ [atributoId] => 2
+ [nombre] => CIELO
+ [baja] => 1
+ )
+
+ [46] => Array
+ (
+ [atribValId] => 21
+ [atributoId] => 2
+ [nombre] => COCOA
+ [baja] => 1
+ )
+
+ [47] => Array
+ (
+ [atribValId] => 252
+ [atributoId] => 2
+ [nombre] => COMBINADO
+ [baja] => 1
+ )
+
+ [48] => Array
+ (
+ [atribValId] => 23
+ [atributoId] => 2
+ [nombre] => CORAL
+ [baja] => 1
+ )
+
+ [49] => Array
+ (
+ [atribValId] => 234
+ [atributoId] => 2
+ [nombre] => CORAL-BLANCO
+ [baja] => 1
+ )
+
+ [50] => Array
+ (
+ [atribValId] => 107
+ [atributoId] => 2
+ [nombre] => CREMA
+ [baja] => 1
+ )
+
+ [51] => Array
+ (
+ [atribValId] => 177
+ [atributoId] => 2
+ [nombre] => DURAZNO
+ [baja] => 1
+ )
+
+ [52] => Array
+ (
+ [atribValId] => 240
+ [atributoId] => 2
+ [nombre] => ENTINTADO
+ [baja] => 1
+ )
+
+ [53] => Array
+ (
+ [atribValId] => 48
+ [atributoId] => 2
+ [nombre] => ESMERALDA
+ [baja] => 1
+ )
+
+ [54] => Array
+ (
+ [atribValId] => 26
+ [atributoId] => 2
+ [nombre] => FIUSHA
+ [baja] => 1
+ )
+
+ [55] => Array
+ (
+ [atribValId] => 233
+ [atributoId] => 2
+ [nombre] => FIUSHA-BLANCO
+ [baja] => 1
+ )
+
+ [56] => Array
+ (
+ [atribValId] => 313
+ [atributoId] => 2
+ [nombre] => FOOTBALL NEGRO
+ [baja] => 1
+ )
+
+ [57] => Array
+ (
+ [atribValId] => 116
+ [atributoId] => 2
+ [nombre] => FRANCIA
+ [baja] => 1
+ )
+
+ [58] => Array
+ (
+ [atribValId] => 314
+ [atributoId] => 2
+ [nombre] => FREE NEGRO
+ [baja] => 1
+ )
+
+ [59] => Array
+ (
+ [atribValId] => 325
+ [atributoId] => 2
+ [nombre] => FUISHA
+ [baja] => 1
+ )
+
+ [60] => Array
+ (
+ [atribValId] => 117
+ [atributoId] => 2
+ [nombre] => G.PERLA
+ [baja] => 1
+ )
+
+ [61] => Array
+ (
+ [atribValId] => 19
+ [atributoId] => 2
+ [nombre] => GRIS
+ [baja] => 1
+ )
+
+ [62] => Array
+ (
+ [atribValId] => 158
+ [atributoId] => 2
+ [nombre] => GRIS C/UVA
+ [baja] => 1
+ )
+
+ [63] => Array
+ (
+ [atribValId] => 310
+ [atributoId] => 2
+ [nombre] => GRIS CLARO
+ [baja] => 1
+ )
+
+ [64] => Array
+ (
+ [atribValId] => 174
+ [atributoId] => 2
+ [nombre] => GRIS Y ROJO
+ [baja] => 1
+ )
+
+ [65] => Array
+ (
+ [atribValId] => 168
+ [atributoId] => 2
+ [nombre] => GRIS Y VERDE
+ [baja] => 1
+ )
+
+ [66] => Array
+ (
+ [atribValId] => 273
+ [atributoId] => 2
+ [nombre] => GRIS.
+ [baja] => 1
+ )
+
+ [67] => Array
+ (
+ [atribValId] => 209
+ [atributoId] => 2
+ [nombre] => GRIS/NEGRO
+ [baja] => 1
+ )
+
+ [68] => Array
+ (
+ [atribValId] => 86
+ [atributoId] => 2
+ [nombre] => GUINDA
+ [baja] => 1
+ )
+
+ [69] => Array
+ (
+ [atribValId] => 91
+ [atributoId] => 2
+ [nombre] => HUESO
+ [baja] => 1
+ )
+
+ [70] => Array
+ (
+ [atribValId] => 133
+ [atributoId] => 2
+ [nombre] => HUESO
+ [baja] => 1
+ )
+
+ [71] => Array
+ (
+ [atribValId] => 188
+ [atributoId] => 2
+ [nombre] => INDIGO
+ [baja] => 1
+ )
+
+ [72] => Array
+ (
+ [atribValId] => 115
+ [atributoId] => 2
+ [nombre] => JADE
+ [baja] => 1
+ )
+
+ [73] => Array
+ (
+ [atribValId] => 131
+ [atributoId] => 2
+ [nombre] => JASPE
+ [baja] => 1
+ )
+
+ [74] => Array
+ (
+ [atribValId] => 89
+ [atributoId] => 2
+ [nombre] => JASPE
+ [baja] => 1
+ )
+
+ [75] => Array
+ (
+ [atribValId] => 90
+ [atributoId] => 2
+ [nombre] => KAKI
+ [baja] => 1
+ )
+
+ [76] => Array
+ (
+ [atribValId] => 132
+ [atributoId] => 2
+ [nombre] => KAKI
+ [baja] => 1
+ )
+
+ [77] => Array
+ (
+ [atribValId] => 122
+ [atributoId] => 2
+ [nombre] => KAKI C/BLANCO
+ [baja] => 1
+ )
+
+ [78] => Array
+ (
+ [atribValId] => 88
+ [atributoId] => 2
+ [nombre] => LILA
+ [baja] => 1
+ )
+
+ [79] => Array
+ (
+ [atribValId] => 170
+ [atributoId] => 2
+ [nombre] => LIMON
+ [baja] => 1
+ )
+
+ [80] => Array
+ (
+ [atribValId] => 231
+ [atributoId] => 2
+ [nombre] => LIMON-BLANCO
+ [baja] => 1
+ )
+
+ [81] => Array
+ (
+ [atribValId] => 179
+ [atributoId] => 2
+ [nombre] => MAGENTA
+ [baja] => 1
+ )
+
+ [82] => Array
+ (
+ [atribValId] => 171
+ [atributoId] => 2
+ [nombre] => MAMEY
+ [baja] => 1
+ )
+
+ [83] => Array
+ (
+ [atribValId] => 190
+ [atributoId] => 2
+ [nombre] => MANGO
+ [baja] => 1
+ )
+
+ [84] => Array
+ (
+ [atribValId] => 134
+ [atributoId] => 2
+ [nombre] => MARINO
+ [baja] => 1
+ )
+
+ [85] => Array
+ (
+ [atribValId] => 129
+ [atributoId] => 2
+ [nombre] => MARINO
+ [baja] => 1
+ )
+
+ [86] => Array
+ (
+ [atribValId] => 53
+ [atributoId] => 2
+ [nombre] => MARINO
+ [baja] => 1
+ )
+
+ [87] => Array
+ (
+ [atribValId] => 157
+ [atributoId] => 2
+ [nombre] => MARINO C/VINO
+ [baja] => 1
+ )
+
+ [88] => Array
+ (
+ [atribValId] => 153
+ [atributoId] => 2
+ [nombre] => MARINO Y GRIS
+ [baja] => 1
+ )
+
+ [89] => Array
+ (
+ [atribValId] => 187
+ [atributoId] => 2
+ [nombre] => MARINO Y ROJO
+ [baja] => 1
+ )
+
+ [90] => Array
+ (
+ [atribValId] => 319
+ [atributoId] => 2
+ [nombre] => MARINO-BLANCO
+ [baja] => 1
+ )
+
+ [91] => Array
+ (
+ [atribValId] => 324
+ [atributoId] => 2
+ [nombre] => MARINO-FIUSHA
+ [baja] => 1
+ )
+
+ [92] => Array
+ (
+ [atribValId] => 318
+ [atributoId] => 2
+ [nombre] => MARINO-ROJO
+ [baja] => 1
+ )
+
+ [93] => Array
+ (
+ [atribValId] => 51
+ [atributoId] => 2
+ [nombre] => MELON
+ [baja] => 1
+ )
+
+ [94] => Array
+ (
+ [atribValId] => 272
+ [atributoId] => 2
+ [nombre] => MENTA
+ [baja] => 1
+ )
+
+ [95] => Array
+ (
+ [atribValId] => 296
+ [atributoId] => 2
+ [nombre] => MENTA-ROSA
+ [baja] => 1
+ )
+
+ [96] => Array
+ (
+ [atribValId] => 105
+ [atributoId] => 2
+ [nombre] => MILITAR
+ [baja] => 1
+ )
+
+ [97] => Array
+ (
+ [atribValId] => 172
+ [atributoId] => 2
+ [nombre] => MLORADO
+ [baja] => 1
+ )
+
+ [98] => Array
+ (
+ [atribValId] => 57
+ [atributoId] => 2
+ [nombre] => MORADO
+ [baja] => 1
+ )
+
+ [99] => Array
+ (
+ [atribValId] => 128
+ [atributoId] => 2
+ [nombre] => MOSTAZA
+ [baja] => 1
+ )
+
+ [100] => Array
+ (
+ [atribValId] => 84
+ [atributoId] => 2
+ [nombre] => MOSTAZA
+ [baja] => 1
+ )
+
+ [101] => Array
+ (
+ [atribValId] => 96
+ [atributoId] => 2
+ [nombre] => MULTICOLOR
+ [baja] => 1
+ )
+
+ [102] => Array
+ (
+ [atribValId] => 49
+ [atributoId] => 2
+ [nombre] => NARANJA
+ [baja] => 1
+ )
+
+ [103] => Array
+ (
+ [atribValId] => 212
+ [atributoId] => 2
+ [nombre] => NARANJA C/MORADO
+ [baja] => 1
+ )
+
+ [104] => Array
+ (
+ [atribValId] => 311
+ [atributoId] => 2
+ [nombre] => NEGR0-GRIS
+ [baja] => 1
+ )
+
+ [105] => Array
+ (
+ [atribValId] => 12
+ [atributoId] => 2
+ [nombre] => NEGRO
+ [baja] => 1
+ )
+
+ [106] => Array
+ (
+ [atribValId] => 249
+ [atributoId] => 2
+ [nombre] => NEGRO
+ [baja] => 1
+ )
+
+ [107] => Array
+ (
+ [atribValId] => 127
+ [atributoId] => 2
+ [nombre] => NEGRO
+ [baja] => 1
+ )
+
+ [108] => Array
+ (
+ [atribValId] => 123
+ [atributoId] => 2
+ [nombre] => NEGRO C/ARENA
+ [baja] => 1
+ )
+
+ [109] => Array
+ (
+ [atribValId] => 121
+ [atributoId] => 2
+ [nombre] => NEGRO C/BLANCO
+ [baja] => 1
+ )
+
+ [110] => Array
+ (
+ [atribValId] => 161
+ [atributoId] => 2
+ [nombre] => NEGRO C/ROJO
+ [baja] => 1
+ )
+
+ [111] => Array
+ (
+ [atribValId] => 176
+ [atributoId] => 2
+ [nombre] => NEGRO C/SURTIDO
+ [baja] => 1
+ )
+
+ [112] => Array
+ (
+ [atribValId] => 110
+ [atributoId] => 2
+ [nombre] => NEGRO C/SURTIDOS
+ [baja] => 1
+ )
+
+ [113] => Array
+ (
+ [atribValId] => 184
+ [atributoId] => 2
+ [nombre] => NEGRO Y/O AZUL
+ [baja] => 1
+ )
+
+ [114] => Array
+ (
+ [atribValId] => 235
+ [atributoId] => 2
+ [nombre] => NEGRO-BLANCO
+ [baja] => 1
+ )
+
+ [115] => Array
+ (
+ [atribValId] => 315
+ [atributoId] => 2
+ [nombre] => NEGRO-GRIS
+ [baja] => 1
+ )
+
+ [116] => Array
+ (
+ [atribValId] => 323
+ [atributoId] => 2
+ [nombre] => NEGRO-LAVANDA
+ [baja] => 1
+ )
+
+ [117] => Array
+ (
+ [atribValId] => 79
+ [atributoId] => 2
+ [nombre] => NEGRO-REY
+ [baja] => 1
+ )
+
+ [118] => Array
+ (
+ [atribValId] => 77
+ [atributoId] => 2
+ [nombre] => NEGRO-ROJO
+ [baja] => 1
+ )
+
+ [119] => Array
+ (
+ [atribValId] => 144
+ [atributoId] => 2
+ [nombre] => NEON
+ [baja] => 1
+ )
+
+ [120] => Array
+ (
+ [atribValId] => 182
+ [atributoId] => 2
+ [nombre] => OCRE
+ [baja] => 1
+ )
+
+ [121] => Array
+ (
+ [atribValId] => 109
+ [atributoId] => 2
+ [nombre] => OLIVO
+ [baja] => 1
+ )
+
+ [122] => Array
+ (
+ [atribValId] => 191
+ [atributoId] => 2
+ [nombre] => ORO
+ [baja] => 1
+ )
+
+ [123] => Array
+ (
+ [atribValId] => 54
+ [atributoId] => 2
+ [nombre] => OXFORD
+ [baja] => 1
+ )
+
+ [124] => Array
+ (
+ [atribValId] => 181
+ [atributoId] => 2
+ [nombre] => OXFORD C/VAR.
+ [baja] => 1
+ )
+
+ [125] => Array
+ (
+ [atribValId] => 217
+ [atributoId] => 2
+ [nombre] => P.ROSA
+ [baja] => 1
+ )
+
+ [126] => Array
+ (
+ [atribValId] => 42
+ [atributoId] => 2
+ [nombre] => PAJA
+ [baja] => 1
+ )
+
+ [127] => Array
+ (
+ [atribValId] => 178
+ [atributoId] => 2
+ [nombre] => PALO DE ROSA
+ [baja] => 1
+ )
+
+ [128] => Array
+ (
+ [atribValId] => 87
+ [atributoId] => 2
+ [nombre] => PERLA
+ [baja] => 1
+ )
+
+ [129] => Array
+ (
+ [atribValId] => 135
+ [atributoId] => 2
+ [nombre] => PERLA
+ [baja] => 1
+ )
+
+ [130] => Array
+ (
+ [atribValId] => 150
+ [atributoId] => 2
+ [nombre] => PERLA O PLUMBAGO
+ [baja] => 1
+ )
+
+ [131] => Array
+ (
+ [atribValId] => 104
+ [atributoId] => 2
+ [nombre] => PETROLEO
+ [baja] => 1
+ )
+
+ [132] => Array
+ (
+ [atribValId] => 206
+ [atributoId] => 2
+ [nombre] => PISTACHE
+ [baja] => 1
+ )
+
+ [133] => Array
+ (
+ [atribValId] => 97
+ [atributoId] => 2
+ [nombre] => PLATA
+ [baja] => 1
+ )
+
+ [134] => Array
+ (
+ [atribValId] => 108
+ [atributoId] => 2
+ [nombre] => PLUMBAGO
+ [baja] => 1
+ )
+
+ [135] => Array
+ (
+ [atribValId] => 236
+ [atributoId] => 2
+ [nombre] => RATA
+ [baja] => 1
+ )
+
+ [136] => Array
+ (
+ [atribValId] => 106
+ [atributoId] => 2
+ [nombre] => REY
+ [baja] => 1
+ )
+
+ [137] => Array
+ (
+ [atribValId] => 162
+ [atributoId] => 2
+ [nombre] => REY C/ROJO
+ [baja] => 1
+ )
+
+ [138] => Array
+ (
+ [atribValId] => 230
+ [atributoId] => 2
+ [nombre] => REY-BLANCO
+ [baja] => 1
+ )
+
+ [139] => Array
+ (
+ [atribValId] => 317
+ [atributoId] => 2
+ [nombre] => REY-GRIS
+ [baja] => 1
+ )
+
+ [140] => Array
+ (
+ [atribValId] => 147
+ [atributoId] => 2
+ [nombre] => ROJ0
+ [baja] => 1
+ )
+
+ [141] => Array
+ (
+ [atribValId] => 130
+ [atributoId] => 2
+ [nombre] => ROJO
+ [baja] => 1
+ )
+
+ [142] => Array
+ (
+ [atribValId] => 6
+ [atributoId] => 2
+ [nombre] => ROJO
+ [baja] => 1
+ )
+
+ [143] => Array
+ (
+ [atribValId] => 80
+ [atributoId] => 2
+ [nombre] => ROJO MARINO
+ [baja] => 1
+ )
+
+ [144] => Array
+ (
+ [atribValId] => 297
+ [atributoId] => 2
+ [nombre] => ROJO-AZUL
+ [baja] => 1
+ )
+
+ [145] => Array
+ (
+ [atribValId] => 320
+ [atributoId] => 2
+ [nombre] => ROJO-BLANCO
+ [baja] => 1
+ )
+
+ [146] => Array
+ (
+ [atribValId] => 316
+ [atributoId] => 2
+ [nombre] => ROJO-MARINO
+ [baja] => 1
+ )
+
+ [147] => Array
+ (
+ [atribValId] => 78
+ [atributoId] => 2
+ [nombre] => ROJO-REY
+ [baja] => 1
+ )
+
+ [148] => Array
+ (
+ [atribValId] => 18
+ [atributoId] => 2
+ [nombre] => ROSA
+ [baja] => 1
+ )
+
+ [149] => Array
+ (
+ [atribValId] => 295
+ [atributoId] => 2
+ [nombre] => ROSA-AZUL
+ [baja] => 1
+ )
+
+ [150] => Array
+ (
+ [atribValId] => 321
+ [atributoId] => 2
+ [nombre] => ROSA-COMBINADO
+ [baja] => 1
+ )
+
+ [151] => Array
+ (
+ [atribValId] => 114
+ [atributoId] => 2
+ [nombre] => SHEDRON
+ [baja] => 1
+ )
+
+ [152] => Array
+ (
+ [atribValId] => 120
+ [atributoId] => 2
+ [nombre] => SKAY
+ [baja] => 1
+ )
+
+ [153] => Array
+ (
+ [atribValId] => 119
+ [atributoId] => 2
+ [nombre] => STONE
+ [baja] => 1
+ )
+
+ [154] => Array
+ (
+ [atribValId] => 202
+ [atributoId] => 2
+ [nombre] => SURT.MODA
+ [baja] => 1
+ )
+
+ [155] => Array
+ (
+ [atribValId] => 2
+ [atributoId] => 2
+ [nombre] => SURTIDOS
+ [baja] => 0
+ )
+
+ [156] => Array
+ (
+ [atribValId] => 237
+ [atributoId] => 2
+ [nombre] => SURTIDOS
+ [baja] => 1
+ )
+
+ [157] => Array
+ (
+ [atribValId] => 245
+ [atributoId] => 2
+ [nombre] => TOPO
+ [baja] => 1
+ )
+
+ [158] => Array
+ (
+ [atribValId] => 85
+ [atributoId] => 2
+ [nombre] => TURQUESA
+ [baja] => 1
+ )
+
+ [159] => Array
+ (
+ [atribValId] => 232
+ [atributoId] => 2
+ [nombre] => TURQUESA-BLANCO
+ [baja] => 1
+ )
+
+ [160] => Array
+ (
+ [atribValId] => 52
+ [atributoId] => 2
+ [nombre] => TURQUEZA
+ [baja] => 1
+ )
+
+ [161] => Array
+ (
+ [atribValId] => 138
+ [atributoId] => 2
+ [nombre] => ULTRAMAR
+ [baja] => 1
+ )
+
+ [162] => Array
+ (
+ [atribValId] => 118
+ [atributoId] => 2
+ [nombre] => UVA
+ [baja] => 1
+ )
+
+ [163] => Array
+ (
+ [atribValId] => 166
+ [atributoId] => 2
+ [nombre] => UVA Y VINO
+ [baja] => 1
+ )
+
+ [164] => Array
+ (
+ [atribValId] => 185
+ [atributoId] => 2
+ [nombre] => VAR.SURTIDO S/BLANCO
+ [baja] => 1
+ )
+
+ [165] => Array
+ (
+ [atribValId] => 169
+ [atributoId] => 2
+ [nombre] => VAR.SURTIDOS
+ [baja] => 1
+ )
+
+ [166] => Array
+ (
+ [atribValId] => 218
+ [atributoId] => 2
+ [nombre] => VARIOS PAISES
+ [baja] => 1
+ )
+
+ [167] => Array
+ (
+ [atribValId] => 8
+ [atributoId] => 2
+ [nombre] => VERDE
+ [baja] => 1
+ )
+
+ [168] => Array
+ (
+ [atribValId] => 99
+ [atributoId] => 2
+ [nombre] => VERDE/NEGRO
+ [baja] => 1
+ )
+
+ [169] => Array
+ (
+ [atribValId] => 44
+ [atributoId] => 2
+ [nombre] => VINO
+ [baja] => 1
+ )
+
+ [170] => Array
+ (
+ [atribValId] => 167
+ [atributoId] => 2
+ [nombre] => VINO Y KAKI
+ [baja] => 1
+ )
+
+ [171] => Array
+ (
+ [atribValId] => 200
+ [atributoId] => 2
+ [nombre] => VIOLETA
+ [baja] => 1
+ )
+
+ )
+
+ )
+
+ [6] => Array
+ (
+ [atributoId] => 17
+ [nombre] => df
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [7] => Array
+ (
+ [atributoId] => 20
+ [nombre] => dsf
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [8] => Array
+ (
+ [atributoId] => 7
+ [nombre] => Estilo de cuello
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 255
+ [atributoId] => 7
+ [nombre] => 9/10
+ [baja] => 0
+ )
+
+ )
+
+ )
+
+ [9] => Array
+ (
+ [atributoId] => 26
+ [nombre] => etee
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [10] => Array
+ (
+ [atributoId] => 6
+ [nombre] => Mangas
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [11] => Array
+ (
+ [atributoId] => 4
+ [nombre] => Patrón
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [12] => Array
+ (
+ [atributoId] => 18
+ [nombre] => sad
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [13] => Array
+ (
+ [atributoId] => 16
+ [nombre] => sad
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [14] => Array
+ (
+ [atributoId] => 23
+ [nombre] => sada
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [15] => Array
+ (
+ [atributoId] => 19
+ [nombre] => saf
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [16] => Array
+ (
+ [atributoId] => 15
+ [nombre] => sd
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [17] => Array
+ (
+ [atributoId] => 24
+ [nombre] => sfdsaf
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [18] => Array
+ (
+ [atributoId] => 13
+ [nombre] => Tablas
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [19] => Array
+ (
+ [atributoId] => 1
+ [nombre] => Tallas
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 266
+ [atributoId] => 1
+ [nombre] => 0/6 MESES
+ [baja] => 1
+ )
+
+ [1] => Array
+ (
+ [atribValId] => 156
+ [atributoId] => 1
+ [nombre] => 1
+ [baja] => 1
+ )
+
+ [2] => Array
+ (
+ [atribValId] => 60
+ [atributoId] => 1
+ [nombre] => 10
+ [baja] => 1
+ )
+
+ [3] => Array
+ (
+ [atribValId] => 251
+ [atributoId] => 1
+ [nombre] => 10
+ [baja] => 1
+ )
+
+ [4] => Array
+ (
+ [atribValId] => 61
+ [atributoId] => 1
+ [nombre] => 10
+ [baja] => 1
+ )
+
+ [5] => Array
+ (
+ [atribValId] => 262
+ [atributoId] => 1
+ [nombre] => 10
+ [baja] => 1
+ )
+
+ [6] => Array
+ (
+ [atribValId] => 94
+ [atributoId] => 1
+ [nombre] => 10-12
+ [baja] => 1
+ )
+
+ [7] => Array
+ (
+ [atribValId] => 265
+ [atributoId] => 1
+ [nombre] => 10/13
+ [baja] => 1
+ )
+
+ [8] => Array
+ (
+ [atribValId] => 46
+ [atributoId] => 1
+ [nombre] => 11
+ [baja] => 1
+ )
+
+ [9] => Array
+ (
+ [atribValId] => 256
+ [atributoId] => 1
+ [nombre] => 11/12
+ [baja] => 1
+ )
+
+ [10] => Array
+ (
+ [atribValId] => 254
+ [atributoId] => 1
+ [nombre] => 12
+ [baja] => 1
+ )
+
+ [11] => Array
+ (
+ [atribValId] => 74
+ [atributoId] => 1
+ [nombre] => 12
+ [baja] => 1
+ )
+
+ [12] => Array
+ (
+ [atribValId] => 193
+ [atributoId] => 1
+ [nombre] => 12
+ [baja] => 1
+ )
+
+ [13] => Array
+ (
+ [atribValId] => 41
+ [atributoId] => 1
+ [nombre] => 12 MESES
+ [baja] => 1
+ )
+
+ [14] => Array
+ (
+ [atribValId] => 220
+ [atributoId] => 1
+ [nombre] => 12-14
+ [baja] => 1
+ )
+
+ [15] => Array
+ (
+ [atribValId] => 268
+ [atributoId] => 1
+ [nombre] => 12/18 MESES
+ [baja] => 1
+ )
+
+ [16] => Array
+ (
+ [atribValId] => 47
+ [atributoId] => 1
+ [nombre] => 13
+ [baja] => 1
+ )
+
+ [17] => Array
+ (
+ [atribValId] => 288
+ [atributoId] => 1
+ [nombre] => 13/18
+ [baja] => 1
+ )
+
+ [18] => Array
+ (
+ [atribValId] => 282
+ [atributoId] => 1
+ [nombre] => 14
+ [baja] => 1
+ )
+
+ [19] => Array
+ (
+ [atribValId] => 276
+ [atributoId] => 1
+ [nombre] => 14
+ [baja] => 1
+ )
+
+ [20] => Array
+ (
+ [atribValId] => 75
+ [atributoId] => 1
+ [nombre] => 14
+ [baja] => 1
+ )
+
+ [21] => Array
+ (
+ [atribValId] => 194
+ [atributoId] => 1
+ [nombre] => 14
+ [baja] => 1
+ )
+
+ [22] => Array
+ (
+ [atribValId] => 95
+ [atributoId] => 1
+ [nombre] => 14-16
+ [baja] => 1
+ )
+
+ [23] => Array
+ (
+ [atribValId] => 208
+ [atributoId] => 1
+ [nombre] => 15
+ [baja] => 1
+ )
+
+ [24] => Array
+ (
+ [atribValId] => 195
+ [atributoId] => 1
+ [nombre] => 16
+ [baja] => 1
+ )
+
+ [25] => Array
+ (
+ [atribValId] => 277
+ [atributoId] => 1
+ [nombre] => 16
+ [baja] => 1
+ )
+
+ [26] => Array
+ (
+ [atribValId] => 253
+ [atributoId] => 1
+ [nombre] => 16
+ [baja] => 1
+ )
+
+ [27] => Array
+ (
+ [atribValId] => 76
+ [atributoId] => 1
+ [nombre] => 16
+ [baja] => 1
+ )
+
+ [28] => Array
+ (
+ [atribValId] => 221
+ [atributoId] => 1
+ [nombre] => 16-18
+ [baja] => 1
+ )
+
+ [29] => Array
+ (
+ [atribValId] => 309
+ [atributoId] => 1
+ [nombre] => 17
+ [baja] => 1
+ )
+
+ [30] => Array
+ (
+ [atribValId] => 81
+ [atributoId] => 1
+ [nombre] => 18
+ [baja] => 1
+ )
+
+ [31] => Array
+ (
+ [atribValId] => 102
+ [atributoId] => 1
+ [nombre] => 18 MESES
+ [baja] => 1
+ )
+
+ [32] => Array
+ (
+ [atribValId] => 66
+ [atributoId] => 1
+ [nombre] => 2
+ [baja] => 1
+ )
+
+ [33] => Array
+ (
+ [atribValId] => 192
+ [atributoId] => 1
+ [nombre] => 20
+ [baja] => 1
+ )
+
+ [34] => Array
+ (
+ [atribValId] => 148
+ [atributoId] => 1
+ [nombre] => 24
+ [baja] => 1
+ )
+
+ [35] => Array
+ (
+ [atribValId] => 103
+ [atributoId] => 1
+ [nombre] => 24 MESES
+ [baja] => 1
+ )
+
+ [36] => Array
+ (
+ [atribValId] => 55
+ [atributoId] => 1
+ [nombre] => 28
+ [baja] => 1
+ )
+
+ [37] => Array
+ (
+ [atribValId] => 222
+ [atributoId] => 1
+ [nombre] => 28-30
+ [baja] => 1
+ )
+
+ [38] => Array
+ (
+ [atribValId] => 301
+ [atributoId] => 1
+ [nombre] => 3
+ [baja] => 1
+ )
+
+ [39] => Array
+ (
+ [atribValId] => 308
+ [atributoId] => 1
+ [nombre] => 3
+ [baja] => 1
+ )
+
+ [40] => Array
+ (
+ [atribValId] => 67
+ [atributoId] => 1
+ [nombre] => 3
+ [baja] => 1
+ )
+
+ [41] => Array
+ (
+ [atribValId] => 38
+ [atributoId] => 1
+ [nombre] => 3 MESES
+ [baja] => 1
+ )
+
+ [42] => Array
+ (
+ [atribValId] => 246
+ [atributoId] => 1
+ [nombre] => 3-6 MESES
+ [baja] => 1
+ )
+
+ [43] => Array
+ (
+ [atribValId] => 291
+ [atributoId] => 1
+ [nombre] => 3/5
+ [baja] => 1
+ )
+
+ [44] => Array
+ (
+ [atribValId] => 13
+ [atributoId] => 1
+ [nombre] => 30
+ [baja] => 1
+ )
+
+ [45] => Array
+ (
+ [atribValId] => 304
+ [atributoId] => 1
+ [nombre] => 30
+ [baja] => 1
+ )
+
+ [46] => Array
+ (
+ [atribValId] => 284
+ [atributoId] => 1
+ [nombre] => 32
+ [baja] => 1
+ )
+
+ [47] => Array
+ (
+ [atribValId] => 305
+ [atributoId] => 1
+ [nombre] => 32
+ [baja] => 1
+ )
+
+ [48] => Array
+ (
+ [atribValId] => 3
+ [atributoId] => 1
+ [nombre] => 32
+ [baja] => 1
+ )
+
+ [49] => Array
+ (
+ [atribValId] => 241
+ [atributoId] => 1
+ [nombre] => 32 B
+ [baja] => 1
+ )
+
+ [50] => Array
+ (
+ [atribValId] => 223
+ [atributoId] => 1
+ [nombre] => 32-34
+ [baja] => 1
+ )
+
+ [51] => Array
+ (
+ [atribValId] => 207
+ [atributoId] => 1
+ [nombre] => 33
+ [baja] => 1
+ )
+
+ [52] => Array
+ (
+ [atribValId] => 283
+ [atributoId] => 1
+ [nombre] => 34
+ [baja] => 1
+ )
+
+ [53] => Array
+ (
+ [atribValId] => 270
+ [atributoId] => 1
+ [nombre] => 34
+ [baja] => 1
+ )
+
+ [54] => Array
+ (
+ [atribValId] => 11
+ [atributoId] => 1
+ [nombre] => 34
+ [baja] => 1
+ )
+
+ [55] => Array
+ (
+ [atribValId] => 242
+ [atributoId] => 1
+ [nombre] => 34 B
+ [baja] => 1
+ )
+
+ [56] => Array
+ (
+ [atribValId] => 285
+ [atributoId] => 1
+ [nombre] => 36
+ [baja] => 1
+ )
+
+ [57] => Array
+ (
+ [atribValId] => 5
+ [atributoId] => 1
+ [nombre] => 36
+ [baja] => 1
+ )
+
+ [58] => Array
+ (
+ [atribValId] => 271
+ [atributoId] => 1
+ [nombre] => 36
+ [baja] => 1
+ )
+
+ [59] => Array
+ (
+ [atribValId] => 243
+ [atributoId] => 1
+ [nombre] => 36 B
+ [baja] => 1
+ )
+
+ [60] => Array
+ (
+ [atribValId] => 224
+ [atributoId] => 1
+ [nombre] => 36-38
+ [baja] => 1
+ )
+
+ [61] => Array
+ (
+ [atribValId] => 92
+ [atributoId] => 1
+ [nombre] => 38
+ [baja] => 1
+ )
+
+ [62] => Array
+ (
+ [atribValId] => 286
+ [atributoId] => 1
+ [nombre] => 38
+ [baja] => 1
+ )
+
+ [63] => Array
+ (
+ [atribValId] => 244
+ [atributoId] => 1
+ [nombre] => 38 B
+ [baja] => 1
+ )
+
+ [64] => Array
+ (
+ [atribValId] => 68
+ [atributoId] => 1
+ [nombre] => 3X
+ [baja] => 1
+ )
+
+ [65] => Array
+ (
+ [atribValId] => 302
+ [atributoId] => 1
+ [nombre] => 3X
+ [baja] => 1
+ )
+
+ [66] => Array
+ (
+ [atribValId] => 58
+ [atributoId] => 1
+ [nombre] => 4
+ [baja] => 1
+ )
+
+ [67] => Array
+ (
+ [atribValId] => 263
+ [atributoId] => 1
+ [nombre] => 4/6
+ [baja] => 1
+ )
+
+ [68] => Array
+ (
+ [atribValId] => 69
+ [atributoId] => 1
+ [nombre] => 40
+ [baja] => 1
+ )
+
+ [69] => Array
+ (
+ [atribValId] => 225
+ [atributoId] => 1
+ [nombre] => 40-42
+ [baja] => 1
+ )
+
+ [70] => Array
+ (
+ [atribValId] => 70
+ [atributoId] => 1
+ [nombre] => 42
+ [baja] => 1
+ )
+
+ [71] => Array
+ (
+ [atribValId] => 71
+ [atributoId] => 1
+ [nombre] => 44
+ [baja] => 1
+ )
+
+ [72] => Array
+ (
+ [atribValId] => 72
+ [atributoId] => 1
+ [nombre] => 46
+ [baja] => 1
+ )
+
+ [73] => Array
+ (
+ [atribValId] => 82
+ [atributoId] => 1
+ [nombre] => 5
+ [baja] => 1
+ )
+
+ [74] => Array
+ (
+ [atribValId] => 59
+ [atributoId] => 1
+ [nombre] => 6
+ [baja] => 1
+ )
+
+ [75] => Array
+ (
+ [atribValId] => 260
+ [atributoId] => 1
+ [nombre] => 6
+ [baja] => 1
+ )
+
+ [76] => Array
+ (
+ [atribValId] => 258
+ [atributoId] => 1
+ [nombre] => 6
+ [baja] => 1
+ )
+
+ [77] => Array
+ (
+ [atribValId] => 39
+ [atributoId] => 1
+ [nombre] => 6 MESES
+ [baja] => 1
+ )
+
+ [78] => Array
+ (
+ [atribValId] => 93
+ [atributoId] => 1
+ [nombre] => 6-8
+ [baja] => 1
+ )
+
+ [79] => Array
+ (
+ [atribValId] => 247
+ [atributoId] => 1
+ [nombre] => 6-9 MESES
+ [baja] => 1
+ )
+
+ [80] => Array
+ (
+ [atribValId] => 267
+ [atributoId] => 1
+ [nombre] => 6/12 MESES
+ [baja] => 1
+ )
+
+ [81] => Array
+ (
+ [atribValId] => 290
+ [atributoId] => 1
+ [nombre] => 6/8
+ [baja] => 1
+ )
+
+ [82] => Array
+ (
+ [atribValId] => 307
+ [atributoId] => 1
+ [nombre] => 7
+ [baja] => 1
+ )
+
+ [83] => Array
+ (
+ [atribValId] => 83
+ [atributoId] => 1
+ [nombre] => 7
+ [baja] => 1
+ )
+
+ [84] => Array
+ (
+ [atribValId] => 175
+ [atributoId] => 1
+ [nombre] => 7/8
+ [baja] => 1
+ )
+
+ [85] => Array
+ (
+ [atribValId] => 264
+ [atributoId] => 1
+ [nombre] => 7/9
+ [baja] => 1
+ )
+
+ [86] => Array
+ (
+ [atribValId] => 259
+ [atributoId] => 1
+ [nombre] => 8
+ [baja] => 1
+ )
+
+ [87] => Array
+ (
+ [atribValId] => 261
+ [atributoId] => 1
+ [nombre] => 8
+ [baja] => 1
+ )
+
+ [88] => Array
+ (
+ [atribValId] => 73
+ [atributoId] => 1
+ [nombre] => 8
+ [baja] => 1
+ )
+
+ [89] => Array
+ (
+ [atribValId] => 219
+ [atributoId] => 1
+ [nombre] => 8-10
+ [baja] => 1
+ )
+
+ [90] => Array
+ (
+ [atribValId] => 45
+ [atributoId] => 1
+ [nombre] => 9
+ [baja] => 1
+ )
+
+ [91] => Array
+ (
+ [atribValId] => 306
+ [atributoId] => 1
+ [nombre] => 9
+ [baja] => 1
+ )
+
+ [92] => Array
+ (
+ [atribValId] => 40
+ [atributoId] => 1
+ [nombre] => 9 MESES
+ [baja] => 1
+ )
+
+ [93] => Array
+ (
+ [atribValId] => 248
+ [atributoId] => 1
+ [nombre] => 9-12 MESES
+ [baja] => 1
+ )
+
+ [94] => Array
+ (
+ [atribValId] => 257
+ [atributoId] => 1
+ [nombre] => 9/10
+ [baja] => 1
+ )
+
+ [95] => Array
+ (
+ [atribValId] => 289
+ [atributoId] => 1
+ [nombre] => 9/12
+ [baja] => 1
+ )
+
+ [96] => Array
+ (
+ [atribValId] => 303
+ [atributoId] => 1
+ [nombre] => CH
+ [baja] => 1
+ )
+
+ [97] => Array
+ (
+ [atribValId] => 125
+ [atributoId] => 1
+ [nombre] => CH
+ [baja] => 1
+ )
+
+ [98] => Array
+ (
+ [atribValId] => 62
+ [atributoId] => 1
+ [nombre] => CH
+ [baja] => 1
+ )
+
+ [99] => Array
+ (
+ [atribValId] => 14
+ [atributoId] => 1
+ [nombre] => CH
+ [baja] => 1
+ )
+
+ [100] => Array
+ (
+ [atribValId] => 111
+ [atributoId] => 1
+ [nombre] => CH
+ [baja] => 1
+ )
+
+ [101] => Array
+ (
+ [atribValId] => 203
+ [atributoId] => 1
+ [nombre] => CH-6-8
+ [baja] => 1
+ )
+
+ [102] => Array
+ (
+ [atribValId] => 159
+ [atributoId] => 1
+ [nombre] => CH/M
+ [baja] => 1
+ )
+
+ [103] => Array
+ (
+ [atribValId] => 216
+ [atributoId] => 1
+ [nombre] => EEEG
+ [baja] => 1
+ )
+
+ [104] => Array
+ (
+ [atribValId] => 215
+ [atributoId] => 1
+ [nombre] => EEG
+ [baja] => 1
+ )
+
+ [105] => Array
+ (
+ [atribValId] => 198
+ [atributoId] => 1
+ [nombre] => EG
+ [baja] => 1
+ )
+
+ [106] => Array
+ (
+ [atribValId] => 36
+ [atributoId] => 1
+ [nombre] => EG
+ [baja] => 1
+ )
+
+ [107] => Array
+ (
+ [atribValId] => 65
+ [atributoId] => 1
+ [nombre] => EG
+ [baja] => 1
+ )
+
+ [108] => Array
+ (
+ [atribValId] => 226
+ [atributoId] => 1
+ [nombre] => EG1
+ [baja] => 1
+ )
+
+ [109] => Array
+ (
+ [atribValId] => 227
+ [atributoId] => 1
+ [nombre] => EG2
+ [baja] => 1
+ )
+
+ [110] => Array
+ (
+ [atribValId] => 199
+ [atributoId] => 1
+ [nombre] => EX
+ [baja] => 1
+ )
+
+ [111] => Array
+ (
+ [atribValId] => 64
+ [atributoId] => 1
+ [nombre] => G
+ [baja] => 1
+ )
+
+ [112] => Array
+ (
+ [atribValId] => 16
+ [atributoId] => 1
+ [nombre] => G
+ [baja] => 1
+ )
+
+ [113] => Array
+ (
+ [atribValId] => 113
+ [atributoId] => 1
+ [nombre] => G
+ [baja] => 1
+ )
+
+ [114] => Array
+ (
+ [atribValId] => 205
+ [atributoId] => 1
+ [nombre] => G-14-16
+ [baja] => 1
+ )
+
+ [115] => Array
+ (
+ [atribValId] => 160
+ [atributoId] => 1
+ [nombre] => G/EG
+ [baja] => 1
+ )
+
+ [116] => Array
+ (
+ [atribValId] => 229
+ [atributoId] => 1
+ [nombre] => JUVENIL
+ [baja] => 1
+ )
+
+ [117] => Array
+ (
+ [atribValId] => 279
+ [atributoId] => 1
+ [nombre] => L
+ [baja] => 1
+ )
+
+ [118] => Array
+ (
+ [atribValId] => 293
+ [atributoId] => 1
+ [nombre] => LG
+ [baja] => 1
+ )
+
+ [119] => Array
+ (
+ [atribValId] => 15
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [120] => Array
+ (
+ [atribValId] => 292
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [121] => Array
+ (
+ [atribValId] => 294
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [122] => Array
+ (
+ [atribValId] => 300
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [123] => Array
+ (
+ [atribValId] => 63
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [124] => Array
+ (
+ [atribValId] => 112
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [125] => Array
+ (
+ [atribValId] => 186
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [126] => Array
+ (
+ [atribValId] => 287
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [127] => Array
+ (
+ [atribValId] => 196
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [128] => Array
+ (
+ [atribValId] => 269
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [129] => Array
+ (
+ [atribValId] => 274
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [130] => Array
+ (
+ [atribValId] => 275
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [131] => Array
+ (
+ [atribValId] => 278
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [132] => Array
+ (
+ [atribValId] => 4
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [133] => Array
+ (
+ [atribValId] => 197
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [134] => Array
+ (
+ [atribValId] => 204
+ [atributoId] => 1
+ [nombre] => M-10-12
+ [baja] => 1
+ )
+
+ [135] => Array
+ (
+ [atribValId] => 201
+ [atributoId] => 1
+ [nombre] => M-G
+ [baja] => 1
+ )
+
+ [136] => Array
+ (
+ [atribValId] => 43
+ [atributoId] => 1
+ [nombre] => UNITALLA
+ [baja] => 1
+ )
+
+ [137] => Array
+ (
+ [atribValId] => 1
+ [atributoId] => 1
+ [nombre] => UNITALLA
+ [baja] => 0
+ )
+
+ [138] => Array
+ (
+ [atribValId] => 152
+ [atributoId] => 1
+ [nombre] => VAR.SURTIDOS
+ [baja] => 1
+ )
+
+ [139] => Array
+ (
+ [atribValId] => 183
+ [atributoId] => 1
+ [nombre] => VARIAS
+ [baja] => 1
+ )
+
+ [140] => Array
+ (
+ [atribValId] => 141
+ [atributoId] => 1
+ [nombre] => XCH
+ [baja] => 1
+ )
+
+ [141] => Array
+ (
+ [atribValId] => 142
+ [atributoId] => 1
+ [nombre] => XCH-JR.
+ [baja] => 1
+ )
+
+ [142] => Array
+ (
+ [atribValId] => 9
+ [atributoId] => 1
+ [nombre] => XG
+ [baja] => 1
+ )
+
+ [143] => Array
+ (
+ [atribValId] => 280
+ [atributoId] => 1
+ [nombre] => XL
+ [baja] => 1
+ )
+
+ )
+
+ )
+
+ [20] => Array
+ (
+ [atributoId] => 8
+ [nombre] => test
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [21] => Array
+ (
+ [atributoId] => 9
+ [nombre] => Textura
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [22] => Array
+ (
+ [atributoId] => 14
+ [nombre] => Vi
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+)
+
+[08-Jan-2026 00:45:59 America/Mexico_City] ####### ITEMS: Array
+(
+ [0] => Array
+ (
+ [atributoId] => 27
+ [nombre] => afad
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 331
+ [atributoId] => 27
+ [nombre] => asfaf
+ [baja] => 0
+ )
+
+ )
+
+ )
+
+ [1] => Array
+ (
+ [atributoId] => 25
+ [nombre] => agdga
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 329
+ [atributoId] => 25
+ [nombre] => asfdafs
+ [baja] => 0
+ )
+
+ [1] => Array
+ (
+ [atribValId] => 330
+ [atributoId] => 25
+ [nombre] => grrg
+ [baja] => 0
+ )
+
+ )
+
+ )
+
+ [2] => Array
+ (
+ [atributoId] => 22
+ [nombre] => asdf
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [3] => Array
+ (
+ [atributoId] => 21
+ [nombre] => asfd
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 328
+ [atributoId] => 21
+ [nombre] => asf
+ [baja] => 0
+ )
+
+ )
+
+ )
+
+ [4] => Array
+ (
+ [atributoId] => 12
+ [nombre] => Colores
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [5] => Array
+ (
+ [atributoId] => 2
+ [nombre] => Colores
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 155
+ [atributoId] => 2
+ [nombre] => 2 BLANCO
+ [baja] => 1
+ )
+
+ [1] => Array
+ (
+ [atribValId] => 281
+ [atributoId] => 2
+ [nombre] => A. FRANCIA
+ [baja] => 1
+ )
+
+ [2] => Array
+ (
+ [atribValId] => 140
+ [atributoId] => 2
+ [nombre] => ACERO
+ [baja] => 1
+ )
+
+ [3] => Array
+ (
+ [atribValId] => 50
+ [atributoId] => 2
+ [nombre] => AGUA
+ [baja] => 1
+ )
+
+ [4] => Array
+ (
+ [atribValId] => 37
+ [atributoId] => 2
+ [nombre] => AMARILLO
+ [baja] => 1
+ )
+
+ [5] => Array
+ (
+ [atribValId] => 151
+ [atributoId] => 2
+ [nombre] => AMARILLO O NARANJA
+ [baja] => 1
+ )
+
+ [6] => Array
+ (
+ [atribValId] => 32
+ [atributoId] => 2
+ [nombre] => AQUA
+ [baja] => 1
+ )
+
+ [7] => Array
+ (
+ [atribValId] => 17
+ [atributoId] => 2
+ [nombre] => ARENA
+ [baja] => 1
+ )
+
+ [8] => Array
+ (
+ [atribValId] => 124
+ [atributoId] => 2
+ [nombre] => ARENA C/BLANCO
+ [baja] => 1
+ )
+
+ [9] => Array
+ (
+ [atribValId] => 327
+ [atributoId] => 2
+ [nombre] => asf
+ [baja] => 0
+ )
+
+ [10] => Array
+ (
+ [atribValId] => 145
+ [atributoId] => 2
+ [nombre] => AZUL
+ [baja] => 1
+ )
+
+ [11] => Array
+ (
+ [atribValId] => 7
+ [atributoId] => 2
+ [nombre] => AZUL
+ [baja] => 1
+ )
+
+ [12] => Array
+ (
+ [atribValId] => 228
+ [atributoId] => 2
+ [nombre] => AZUL FRANCIA
+ [baja] => 1
+ )
+
+ [13] => Array
+ (
+ [atribValId] => 149
+ [atributoId] => 2
+ [nombre] => AZUL MEDIO
+ [baja] => 1
+ )
+
+ [14] => Array
+ (
+ [atribValId] => 173
+ [atributoId] => 2
+ [nombre] => AZUL-NEGRO
+ [baja] => 1
+ )
+
+ [15] => Array
+ (
+ [atribValId] => 239
+ [atributoId] => 2
+ [nombre] => BAMBI (MOSTAZA)
+ [baja] => 1
+ )
+
+ [16] => Array
+ (
+ [atribValId] => 29
+ [atributoId] => 2
+ [nombre] => BEIGE
+ [baja] => 1
+ )
+
+ [17] => Array
+ (
+ [atribValId] => 100
+ [atributoId] => 2
+ [nombre] => BEIGE/NEGRO
+ [baja] => 1
+ )
+
+ [18] => Array
+ (
+ [atribValId] => 238
+ [atributoId] => 2
+ [nombre] => BIEIGE
+ [baja] => 1
+ )
+
+ [19] => Array
+ (
+ [atribValId] => 250
+ [atributoId] => 2
+ [nombre] => BLANCO
+ [baja] => 1
+ )
+
+ [20] => Array
+ (
+ [atribValId] => 126
+ [atributoId] => 2
+ [nombre] => BLANCO
+ [baja] => 1
+ )
+
+ [21] => Array
+ (
+ [atribValId] => 20
+ [atributoId] => 2
+ [nombre] => BLANCO
+ [baja] => 1
+ )
+
+ [22] => Array
+ (
+ [atribValId] => 214
+ [atributoId] => 2
+ [nombre] => BLANCO C/AZUL
+ [baja] => 1
+ )
+
+ [23] => Array
+ (
+ [atribValId] => 189
+ [atributoId] => 2
+ [nombre] => BLANCO C/GRIS
+ [baja] => 1
+ )
+
+ [24] => Array
+ (
+ [atribValId] => 164
+ [atributoId] => 2
+ [nombre] => BLANCO C/MARINO
+ [baja] => 1
+ )
+
+ [25] => Array
+ (
+ [atribValId] => 213
+ [atributoId] => 2
+ [nombre] => BLANCO C/MORADO
+ [baja] => 1
+ )
+
+ [26] => Array
+ (
+ [atribValId] => 163
+ [atributoId] => 2
+ [nombre] => BLANCO C/NEGRO
+ [baja] => 1
+ )
+
+ [27] => Array
+ (
+ [atribValId] => 180
+ [atributoId] => 2
+ [nombre] => BLANCO C/VAR.
+ [baja] => 1
+ )
+
+ [28] => Array
+ (
+ [atribValId] => 298
+ [atributoId] => 2
+ [nombre] => BLANCO-CAFE
+ [baja] => 1
+ )
+
+ [29] => Array
+ (
+ [atribValId] => 326
+ [atributoId] => 2
+ [nombre] => BLANCO-FIUSHA
+ [baja] => 1
+ )
+
+ [30] => Array
+ (
+ [atribValId] => 299
+ [atributoId] => 2
+ [nombre] => BLANCO-NEGRO
+ [baja] => 1
+ )
+
+ [31] => Array
+ (
+ [atribValId] => 211
+ [atributoId] => 2
+ [nombre] => BLANCO/MORADO
+ [baja] => 1
+ )
+
+ [32] => Array
+ (
+ [atribValId] => 210
+ [atributoId] => 2
+ [nombre] => BLANCO/ROSA
+ [baja] => 1
+ )
+
+ [33] => Array
+ (
+ [atribValId] => 146
+ [atributoId] => 2
+ [nombre] => BUGAMBILIA
+ [baja] => 1
+ )
+
+ [34] => Array
+ (
+ [atribValId] => 24
+ [atributoId] => 2
+ [nombre] => CAFE
+ [baja] => 1
+ )
+
+ [35] => Array
+ (
+ [atribValId] => 154
+ [atributoId] => 2
+ [nombre] => CAFE Y BEIGE
+ [baja] => 1
+ )
+
+ [36] => Array
+ (
+ [atribValId] => 312
+ [atributoId] => 2
+ [nombre] => CAFE-HUESO
+ [baja] => 1
+ )
+
+ [37] => Array
+ (
+ [atribValId] => 322
+ [atributoId] => 2
+ [nombre] => CAFE-ROSA
+ [baja] => 1
+ )
+
+ [38] => Array
+ (
+ [atribValId] => 98
+ [atributoId] => 2
+ [nombre] => CAFE/NEGRO
+ [baja] => 1
+ )
+
+ [39] => Array
+ (
+ [atribValId] => 139
+ [atributoId] => 2
+ [nombre] => CANARIO
+ [baja] => 1
+ )
+
+ [40] => Array
+ (
+ [atribValId] => 56
+ [atributoId] => 2
+ [nombre] => CAPUCHINO
+ [baja] => 1
+ )
+
+ [41] => Array
+ (
+ [atribValId] => 165
+ [atributoId] => 2
+ [nombre] => CARGADO EN NEGRO
+ [baja] => 1
+ )
+
+ [42] => Array
+ (
+ [atribValId] => 136
+ [atributoId] => 2
+ [nombre] => CELESTE
+ [baja] => 1
+ )
+
+ [43] => Array
+ (
+ [atribValId] => 143
+ [atributoId] => 2
+ [nombre] => CEMENTO
+ [baja] => 1
+ )
+
+ [44] => Array
+ (
+ [atribValId] => 137
+ [atributoId] => 2
+ [nombre] => CHERRY
+ [baja] => 1
+ )
+
+ [45] => Array
+ (
+ [atribValId] => 101
+ [atributoId] => 2
+ [nombre] => CIELO
+ [baja] => 1
+ )
+
+ [46] => Array
+ (
+ [atribValId] => 21
+ [atributoId] => 2
+ [nombre] => COCOA
+ [baja] => 1
+ )
+
+ [47] => Array
+ (
+ [atribValId] => 252
+ [atributoId] => 2
+ [nombre] => COMBINADO
+ [baja] => 1
+ )
+
+ [48] => Array
+ (
+ [atribValId] => 23
+ [atributoId] => 2
+ [nombre] => CORAL
+ [baja] => 1
+ )
+
+ [49] => Array
+ (
+ [atribValId] => 234
+ [atributoId] => 2
+ [nombre] => CORAL-BLANCO
+ [baja] => 1
+ )
+
+ [50] => Array
+ (
+ [atribValId] => 107
+ [atributoId] => 2
+ [nombre] => CREMA
+ [baja] => 1
+ )
+
+ [51] => Array
+ (
+ [atribValId] => 177
+ [atributoId] => 2
+ [nombre] => DURAZNO
+ [baja] => 1
+ )
+
+ [52] => Array
+ (
+ [atribValId] => 240
+ [atributoId] => 2
+ [nombre] => ENTINTADO
+ [baja] => 1
+ )
+
+ [53] => Array
+ (
+ [atribValId] => 48
+ [atributoId] => 2
+ [nombre] => ESMERALDA
+ [baja] => 1
+ )
+
+ [54] => Array
+ (
+ [atribValId] => 26
+ [atributoId] => 2
+ [nombre] => FIUSHA
+ [baja] => 1
+ )
+
+ [55] => Array
+ (
+ [atribValId] => 233
+ [atributoId] => 2
+ [nombre] => FIUSHA-BLANCO
+ [baja] => 1
+ )
+
+ [56] => Array
+ (
+ [atribValId] => 313
+ [atributoId] => 2
+ [nombre] => FOOTBALL NEGRO
+ [baja] => 1
+ )
+
+ [57] => Array
+ (
+ [atribValId] => 116
+ [atributoId] => 2
+ [nombre] => FRANCIA
+ [baja] => 1
+ )
+
+ [58] => Array
+ (
+ [atribValId] => 314
+ [atributoId] => 2
+ [nombre] => FREE NEGRO
+ [baja] => 1
+ )
+
+ [59] => Array
+ (
+ [atribValId] => 325
+ [atributoId] => 2
+ [nombre] => FUISHA
+ [baja] => 1
+ )
+
+ [60] => Array
+ (
+ [atribValId] => 117
+ [atributoId] => 2
+ [nombre] => G.PERLA
+ [baja] => 1
+ )
+
+ [61] => Array
+ (
+ [atribValId] => 19
+ [atributoId] => 2
+ [nombre] => GRIS
+ [baja] => 1
+ )
+
+ [62] => Array
+ (
+ [atribValId] => 158
+ [atributoId] => 2
+ [nombre] => GRIS C/UVA
+ [baja] => 1
+ )
+
+ [63] => Array
+ (
+ [atribValId] => 310
+ [atributoId] => 2
+ [nombre] => GRIS CLARO
+ [baja] => 1
+ )
+
+ [64] => Array
+ (
+ [atribValId] => 174
+ [atributoId] => 2
+ [nombre] => GRIS Y ROJO
+ [baja] => 1
+ )
+
+ [65] => Array
+ (
+ [atribValId] => 168
+ [atributoId] => 2
+ [nombre] => GRIS Y VERDE
+ [baja] => 1
+ )
+
+ [66] => Array
+ (
+ [atribValId] => 273
+ [atributoId] => 2
+ [nombre] => GRIS.
+ [baja] => 1
+ )
+
+ [67] => Array
+ (
+ [atribValId] => 209
+ [atributoId] => 2
+ [nombre] => GRIS/NEGRO
+ [baja] => 1
+ )
+
+ [68] => Array
+ (
+ [atribValId] => 86
+ [atributoId] => 2
+ [nombre] => GUINDA
+ [baja] => 1
+ )
+
+ [69] => Array
+ (
+ [atribValId] => 91
+ [atributoId] => 2
+ [nombre] => HUESO
+ [baja] => 1
+ )
+
+ [70] => Array
+ (
+ [atribValId] => 133
+ [atributoId] => 2
+ [nombre] => HUESO
+ [baja] => 1
+ )
+
+ [71] => Array
+ (
+ [atribValId] => 188
+ [atributoId] => 2
+ [nombre] => INDIGO
+ [baja] => 1
+ )
+
+ [72] => Array
+ (
+ [atribValId] => 115
+ [atributoId] => 2
+ [nombre] => JADE
+ [baja] => 1
+ )
+
+ [73] => Array
+ (
+ [atribValId] => 131
+ [atributoId] => 2
+ [nombre] => JASPE
+ [baja] => 1
+ )
+
+ [74] => Array
+ (
+ [atribValId] => 89
+ [atributoId] => 2
+ [nombre] => JASPE
+ [baja] => 1
+ )
+
+ [75] => Array
+ (
+ [atribValId] => 90
+ [atributoId] => 2
+ [nombre] => KAKI
+ [baja] => 1
+ )
+
+ [76] => Array
+ (
+ [atribValId] => 132
+ [atributoId] => 2
+ [nombre] => KAKI
+ [baja] => 1
+ )
+
+ [77] => Array
+ (
+ [atribValId] => 122
+ [atributoId] => 2
+ [nombre] => KAKI C/BLANCO
+ [baja] => 1
+ )
+
+ [78] => Array
+ (
+ [atribValId] => 88
+ [atributoId] => 2
+ [nombre] => LILA
+ [baja] => 1
+ )
+
+ [79] => Array
+ (
+ [atribValId] => 170
+ [atributoId] => 2
+ [nombre] => LIMON
+ [baja] => 1
+ )
+
+ [80] => Array
+ (
+ [atribValId] => 231
+ [atributoId] => 2
+ [nombre] => LIMON-BLANCO
+ [baja] => 1
+ )
+
+ [81] => Array
+ (
+ [atribValId] => 179
+ [atributoId] => 2
+ [nombre] => MAGENTA
+ [baja] => 1
+ )
+
+ [82] => Array
+ (
+ [atribValId] => 171
+ [atributoId] => 2
+ [nombre] => MAMEY
+ [baja] => 1
+ )
+
+ [83] => Array
+ (
+ [atribValId] => 190
+ [atributoId] => 2
+ [nombre] => MANGO
+ [baja] => 1
+ )
+
+ [84] => Array
+ (
+ [atribValId] => 134
+ [atributoId] => 2
+ [nombre] => MARINO
+ [baja] => 1
+ )
+
+ [85] => Array
+ (
+ [atribValId] => 129
+ [atributoId] => 2
+ [nombre] => MARINO
+ [baja] => 1
+ )
+
+ [86] => Array
+ (
+ [atribValId] => 53
+ [atributoId] => 2
+ [nombre] => MARINO
+ [baja] => 1
+ )
+
+ [87] => Array
+ (
+ [atribValId] => 157
+ [atributoId] => 2
+ [nombre] => MARINO C/VINO
+ [baja] => 1
+ )
+
+ [88] => Array
+ (
+ [atribValId] => 153
+ [atributoId] => 2
+ [nombre] => MARINO Y GRIS
+ [baja] => 1
+ )
+
+ [89] => Array
+ (
+ [atribValId] => 187
+ [atributoId] => 2
+ [nombre] => MARINO Y ROJO
+ [baja] => 1
+ )
+
+ [90] => Array
+ (
+ [atribValId] => 319
+ [atributoId] => 2
+ [nombre] => MARINO-BLANCO
+ [baja] => 1
+ )
+
+ [91] => Array
+ (
+ [atribValId] => 324
+ [atributoId] => 2
+ [nombre] => MARINO-FIUSHA
+ [baja] => 1
+ )
+
+ [92] => Array
+ (
+ [atribValId] => 318
+ [atributoId] => 2
+ [nombre] => MARINO-ROJO
+ [baja] => 1
+ )
+
+ [93] => Array
+ (
+ [atribValId] => 51
+ [atributoId] => 2
+ [nombre] => MELON
+ [baja] => 1
+ )
+
+ [94] => Array
+ (
+ [atribValId] => 272
+ [atributoId] => 2
+ [nombre] => MENTA
+ [baja] => 1
+ )
+
+ [95] => Array
+ (
+ [atribValId] => 296
+ [atributoId] => 2
+ [nombre] => MENTA-ROSA
+ [baja] => 1
+ )
+
+ [96] => Array
+ (
+ [atribValId] => 105
+ [atributoId] => 2
+ [nombre] => MILITAR
+ [baja] => 1
+ )
+
+ [97] => Array
+ (
+ [atribValId] => 172
+ [atributoId] => 2
+ [nombre] => MLORADO
+ [baja] => 1
+ )
+
+ [98] => Array
+ (
+ [atribValId] => 57
+ [atributoId] => 2
+ [nombre] => MORADO
+ [baja] => 1
+ )
+
+ [99] => Array
+ (
+ [atribValId] => 128
+ [atributoId] => 2
+ [nombre] => MOSTAZA
+ [baja] => 1
+ )
+
+ [100] => Array
+ (
+ [atribValId] => 84
+ [atributoId] => 2
+ [nombre] => MOSTAZA
+ [baja] => 1
+ )
+
+ [101] => Array
+ (
+ [atribValId] => 96
+ [atributoId] => 2
+ [nombre] => MULTICOLOR
+ [baja] => 1
+ )
+
+ [102] => Array
+ (
+ [atribValId] => 49
+ [atributoId] => 2
+ [nombre] => NARANJA
+ [baja] => 1
+ )
+
+ [103] => Array
+ (
+ [atribValId] => 212
+ [atributoId] => 2
+ [nombre] => NARANJA C/MORADO
+ [baja] => 1
+ )
+
+ [104] => Array
+ (
+ [atribValId] => 311
+ [atributoId] => 2
+ [nombre] => NEGR0-GRIS
+ [baja] => 1
+ )
+
+ [105] => Array
+ (
+ [atribValId] => 12
+ [atributoId] => 2
+ [nombre] => NEGRO
+ [baja] => 1
+ )
+
+ [106] => Array
+ (
+ [atribValId] => 249
+ [atributoId] => 2
+ [nombre] => NEGRO
+ [baja] => 1
+ )
+
+ [107] => Array
+ (
+ [atribValId] => 127
+ [atributoId] => 2
+ [nombre] => NEGRO
+ [baja] => 1
+ )
+
+ [108] => Array
+ (
+ [atribValId] => 123
+ [atributoId] => 2
+ [nombre] => NEGRO C/ARENA
+ [baja] => 1
+ )
+
+ [109] => Array
+ (
+ [atribValId] => 121
+ [atributoId] => 2
+ [nombre] => NEGRO C/BLANCO
+ [baja] => 1
+ )
+
+ [110] => Array
+ (
+ [atribValId] => 161
+ [atributoId] => 2
+ [nombre] => NEGRO C/ROJO
+ [baja] => 1
+ )
+
+ [111] => Array
+ (
+ [atribValId] => 176
+ [atributoId] => 2
+ [nombre] => NEGRO C/SURTIDO
+ [baja] => 1
+ )
+
+ [112] => Array
+ (
+ [atribValId] => 110
+ [atributoId] => 2
+ [nombre] => NEGRO C/SURTIDOS
+ [baja] => 1
+ )
+
+ [113] => Array
+ (
+ [atribValId] => 184
+ [atributoId] => 2
+ [nombre] => NEGRO Y/O AZUL
+ [baja] => 1
+ )
+
+ [114] => Array
+ (
+ [atribValId] => 235
+ [atributoId] => 2
+ [nombre] => NEGRO-BLANCO
+ [baja] => 1
+ )
+
+ [115] => Array
+ (
+ [atribValId] => 315
+ [atributoId] => 2
+ [nombre] => NEGRO-GRIS
+ [baja] => 1
+ )
+
+ [116] => Array
+ (
+ [atribValId] => 323
+ [atributoId] => 2
+ [nombre] => NEGRO-LAVANDA
+ [baja] => 1
+ )
+
+ [117] => Array
+ (
+ [atribValId] => 79
+ [atributoId] => 2
+ [nombre] => NEGRO-REY
+ [baja] => 1
+ )
+
+ [118] => Array
+ (
+ [atribValId] => 77
+ [atributoId] => 2
+ [nombre] => NEGRO-ROJO
+ [baja] => 1
+ )
+
+ [119] => Array
+ (
+ [atribValId] => 144
+ [atributoId] => 2
+ [nombre] => NEON
+ [baja] => 1
+ )
+
+ [120] => Array
+ (
+ [atribValId] => 182
+ [atributoId] => 2
+ [nombre] => OCRE
+ [baja] => 1
+ )
+
+ [121] => Array
+ (
+ [atribValId] => 109
+ [atributoId] => 2
+ [nombre] => OLIVO
+ [baja] => 1
+ )
+
+ [122] => Array
+ (
+ [atribValId] => 191
+ [atributoId] => 2
+ [nombre] => ORO
+ [baja] => 1
+ )
+
+ [123] => Array
+ (
+ [atribValId] => 54
+ [atributoId] => 2
+ [nombre] => OXFORD
+ [baja] => 1
+ )
+
+ [124] => Array
+ (
+ [atribValId] => 181
+ [atributoId] => 2
+ [nombre] => OXFORD C/VAR.
+ [baja] => 1
+ )
+
+ [125] => Array
+ (
+ [atribValId] => 217
+ [atributoId] => 2
+ [nombre] => P.ROSA
+ [baja] => 1
+ )
+
+ [126] => Array
+ (
+ [atribValId] => 42
+ [atributoId] => 2
+ [nombre] => PAJA
+ [baja] => 1
+ )
+
+ [127] => Array
+ (
+ [atribValId] => 178
+ [atributoId] => 2
+ [nombre] => PALO DE ROSA
+ [baja] => 1
+ )
+
+ [128] => Array
+ (
+ [atribValId] => 87
+ [atributoId] => 2
+ [nombre] => PERLA
+ [baja] => 1
+ )
+
+ [129] => Array
+ (
+ [atribValId] => 135
+ [atributoId] => 2
+ [nombre] => PERLA
+ [baja] => 1
+ )
+
+ [130] => Array
+ (
+ [atribValId] => 150
+ [atributoId] => 2
+ [nombre] => PERLA O PLUMBAGO
+ [baja] => 1
+ )
+
+ [131] => Array
+ (
+ [atribValId] => 104
+ [atributoId] => 2
+ [nombre] => PETROLEO
+ [baja] => 1
+ )
+
+ [132] => Array
+ (
+ [atribValId] => 206
+ [atributoId] => 2
+ [nombre] => PISTACHE
+ [baja] => 1
+ )
+
+ [133] => Array
+ (
+ [atribValId] => 97
+ [atributoId] => 2
+ [nombre] => PLATA
+ [baja] => 1
+ )
+
+ [134] => Array
+ (
+ [atribValId] => 108
+ [atributoId] => 2
+ [nombre] => PLUMBAGO
+ [baja] => 1
+ )
+
+ [135] => Array
+ (
+ [atribValId] => 236
+ [atributoId] => 2
+ [nombre] => RATA
+ [baja] => 1
+ )
+
+ [136] => Array
+ (
+ [atribValId] => 106
+ [atributoId] => 2
+ [nombre] => REY
+ [baja] => 1
+ )
+
+ [137] => Array
+ (
+ [atribValId] => 162
+ [atributoId] => 2
+ [nombre] => REY C/ROJO
+ [baja] => 1
+ )
+
+ [138] => Array
+ (
+ [atribValId] => 230
+ [atributoId] => 2
+ [nombre] => REY-BLANCO
+ [baja] => 1
+ )
+
+ [139] => Array
+ (
+ [atribValId] => 317
+ [atributoId] => 2
+ [nombre] => REY-GRIS
+ [baja] => 1
+ )
+
+ [140] => Array
+ (
+ [atribValId] => 147
+ [atributoId] => 2
+ [nombre] => ROJ0
+ [baja] => 1
+ )
+
+ [141] => Array
+ (
+ [atribValId] => 130
+ [atributoId] => 2
+ [nombre] => ROJO
+ [baja] => 1
+ )
+
+ [142] => Array
+ (
+ [atribValId] => 6
+ [atributoId] => 2
+ [nombre] => ROJO
+ [baja] => 1
+ )
+
+ [143] => Array
+ (
+ [atribValId] => 80
+ [atributoId] => 2
+ [nombre] => ROJO MARINO
+ [baja] => 1
+ )
+
+ [144] => Array
+ (
+ [atribValId] => 297
+ [atributoId] => 2
+ [nombre] => ROJO-AZUL
+ [baja] => 1
+ )
+
+ [145] => Array
+ (
+ [atribValId] => 320
+ [atributoId] => 2
+ [nombre] => ROJO-BLANCO
+ [baja] => 1
+ )
+
+ [146] => Array
+ (
+ [atribValId] => 316
+ [atributoId] => 2
+ [nombre] => ROJO-MARINO
+ [baja] => 1
+ )
+
+ [147] => Array
+ (
+ [atribValId] => 78
+ [atributoId] => 2
+ [nombre] => ROJO-REY
+ [baja] => 1
+ )
+
+ [148] => Array
+ (
+ [atribValId] => 18
+ [atributoId] => 2
+ [nombre] => ROSA
+ [baja] => 1
+ )
+
+ [149] => Array
+ (
+ [atribValId] => 295
+ [atributoId] => 2
+ [nombre] => ROSA-AZUL
+ [baja] => 1
+ )
+
+ [150] => Array
+ (
+ [atribValId] => 321
+ [atributoId] => 2
+ [nombre] => ROSA-COMBINADO
+ [baja] => 1
+ )
+
+ [151] => Array
+ (
+ [atribValId] => 114
+ [atributoId] => 2
+ [nombre] => SHEDRON
+ [baja] => 1
+ )
+
+ [152] => Array
+ (
+ [atribValId] => 120
+ [atributoId] => 2
+ [nombre] => SKAY
+ [baja] => 1
+ )
+
+ [153] => Array
+ (
+ [atribValId] => 119
+ [atributoId] => 2
+ [nombre] => STONE
+ [baja] => 1
+ )
+
+ [154] => Array
+ (
+ [atribValId] => 202
+ [atributoId] => 2
+ [nombre] => SURT.MODA
+ [baja] => 1
+ )
+
+ [155] => Array
+ (
+ [atribValId] => 2
+ [atributoId] => 2
+ [nombre] => SURTIDOS
+ [baja] => 0
+ )
+
+ [156] => Array
+ (
+ [atribValId] => 237
+ [atributoId] => 2
+ [nombre] => SURTIDOS
+ [baja] => 1
+ )
+
+ [157] => Array
+ (
+ [atribValId] => 245
+ [atributoId] => 2
+ [nombre] => TOPO
+ [baja] => 1
+ )
+
+ [158] => Array
+ (
+ [atribValId] => 85
+ [atributoId] => 2
+ [nombre] => TURQUESA
+ [baja] => 1
+ )
+
+ [159] => Array
+ (
+ [atribValId] => 232
+ [atributoId] => 2
+ [nombre] => TURQUESA-BLANCO
+ [baja] => 1
+ )
+
+ [160] => Array
+ (
+ [atribValId] => 52
+ [atributoId] => 2
+ [nombre] => TURQUEZA
+ [baja] => 1
+ )
+
+ [161] => Array
+ (
+ [atribValId] => 138
+ [atributoId] => 2
+ [nombre] => ULTRAMAR
+ [baja] => 1
+ )
+
+ [162] => Array
+ (
+ [atribValId] => 118
+ [atributoId] => 2
+ [nombre] => UVA
+ [baja] => 1
+ )
+
+ [163] => Array
+ (
+ [atribValId] => 166
+ [atributoId] => 2
+ [nombre] => UVA Y VINO
+ [baja] => 1
+ )
+
+ [164] => Array
+ (
+ [atribValId] => 185
+ [atributoId] => 2
+ [nombre] => VAR.SURTIDO S/BLANCO
+ [baja] => 1
+ )
+
+ [165] => Array
+ (
+ [atribValId] => 169
+ [atributoId] => 2
+ [nombre] => VAR.SURTIDOS
+ [baja] => 1
+ )
+
+ [166] => Array
+ (
+ [atribValId] => 218
+ [atributoId] => 2
+ [nombre] => VARIOS PAISES
+ [baja] => 1
+ )
+
+ [167] => Array
+ (
+ [atribValId] => 8
+ [atributoId] => 2
+ [nombre] => VERDE
+ [baja] => 1
+ )
+
+ [168] => Array
+ (
+ [atribValId] => 99
+ [atributoId] => 2
+ [nombre] => VERDE/NEGRO
+ [baja] => 1
+ )
+
+ [169] => Array
+ (
+ [atribValId] => 44
+ [atributoId] => 2
+ [nombre] => VINO
+ [baja] => 1
+ )
+
+ [170] => Array
+ (
+ [atribValId] => 167
+ [atributoId] => 2
+ [nombre] => VINO Y KAKI
+ [baja] => 1
+ )
+
+ [171] => Array
+ (
+ [atribValId] => 200
+ [atributoId] => 2
+ [nombre] => VIOLETA
+ [baja] => 1
+ )
+
+ )
+
+ )
+
+ [6] => Array
+ (
+ [atributoId] => 17
+ [nombre] => df
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [7] => Array
+ (
+ [atributoId] => 20
+ [nombre] => dsf
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [8] => Array
+ (
+ [atributoId] => 7
+ [nombre] => Estilo de cuello
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 255
+ [atributoId] => 7
+ [nombre] => 9/10
+ [baja] => 0
+ )
+
+ )
+
+ )
+
+ [9] => Array
+ (
+ [atributoId] => 26
+ [nombre] => etee
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [10] => Array
+ (
+ [atributoId] => 6
+ [nombre] => Mangas
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [11] => Array
+ (
+ [atributoId] => 4
+ [nombre] => Patrón
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [12] => Array
+ (
+ [atributoId] => 18
+ [nombre] => sad
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [13] => Array
+ (
+ [atributoId] => 16
+ [nombre] => sad
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [14] => Array
+ (
+ [atributoId] => 23
+ [nombre] => sada
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [15] => Array
+ (
+ [atributoId] => 19
+ [nombre] => saf
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [16] => Array
+ (
+ [atributoId] => 15
+ [nombre] => sd
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [17] => Array
+ (
+ [atributoId] => 24
+ [nombre] => sfdsaf
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [18] => Array
+ (
+ [atributoId] => 13
+ [nombre] => Tablas
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [19] => Array
+ (
+ [atributoId] => 1
+ [nombre] => Tallas
+ [baja] => 0
+ [valores] => Array
+ (
+ [0] => Array
+ (
+ [atribValId] => 266
+ [atributoId] => 1
+ [nombre] => 0/6 MESES
+ [baja] => 1
+ )
+
+ [1] => Array
+ (
+ [atribValId] => 156
+ [atributoId] => 1
+ [nombre] => 1
+ [baja] => 1
+ )
+
+ [2] => Array
+ (
+ [atribValId] => 60
+ [atributoId] => 1
+ [nombre] => 10
+ [baja] => 1
+ )
+
+ [3] => Array
+ (
+ [atribValId] => 251
+ [atributoId] => 1
+ [nombre] => 10
+ [baja] => 1
+ )
+
+ [4] => Array
+ (
+ [atribValId] => 61
+ [atributoId] => 1
+ [nombre] => 10
+ [baja] => 1
+ )
+
+ [5] => Array
+ (
+ [atribValId] => 262
+ [atributoId] => 1
+ [nombre] => 10
+ [baja] => 1
+ )
+
+ [6] => Array
+ (
+ [atribValId] => 94
+ [atributoId] => 1
+ [nombre] => 10-12
+ [baja] => 1
+ )
+
+ [7] => Array
+ (
+ [atribValId] => 265
+ [atributoId] => 1
+ [nombre] => 10/13
+ [baja] => 1
+ )
+
+ [8] => Array
+ (
+ [atribValId] => 46
+ [atributoId] => 1
+ [nombre] => 11
+ [baja] => 1
+ )
+
+ [9] => Array
+ (
+ [atribValId] => 256
+ [atributoId] => 1
+ [nombre] => 11/12
+ [baja] => 1
+ )
+
+ [10] => Array
+ (
+ [atribValId] => 254
+ [atributoId] => 1
+ [nombre] => 12
+ [baja] => 1
+ )
+
+ [11] => Array
+ (
+ [atribValId] => 74
+ [atributoId] => 1
+ [nombre] => 12
+ [baja] => 1
+ )
+
+ [12] => Array
+ (
+ [atribValId] => 193
+ [atributoId] => 1
+ [nombre] => 12
+ [baja] => 1
+ )
+
+ [13] => Array
+ (
+ [atribValId] => 41
+ [atributoId] => 1
+ [nombre] => 12 MESES
+ [baja] => 1
+ )
+
+ [14] => Array
+ (
+ [atribValId] => 220
+ [atributoId] => 1
+ [nombre] => 12-14
+ [baja] => 1
+ )
+
+ [15] => Array
+ (
+ [atribValId] => 268
+ [atributoId] => 1
+ [nombre] => 12/18 MESES
+ [baja] => 1
+ )
+
+ [16] => Array
+ (
+ [atribValId] => 47
+ [atributoId] => 1
+ [nombre] => 13
+ [baja] => 1
+ )
+
+ [17] => Array
+ (
+ [atribValId] => 288
+ [atributoId] => 1
+ [nombre] => 13/18
+ [baja] => 1
+ )
+
+ [18] => Array
+ (
+ [atribValId] => 282
+ [atributoId] => 1
+ [nombre] => 14
+ [baja] => 1
+ )
+
+ [19] => Array
+ (
+ [atribValId] => 276
+ [atributoId] => 1
+ [nombre] => 14
+ [baja] => 1
+ )
+
+ [20] => Array
+ (
+ [atribValId] => 75
+ [atributoId] => 1
+ [nombre] => 14
+ [baja] => 1
+ )
+
+ [21] => Array
+ (
+ [atribValId] => 194
+ [atributoId] => 1
+ [nombre] => 14
+ [baja] => 1
+ )
+
+ [22] => Array
+ (
+ [atribValId] => 95
+ [atributoId] => 1
+ [nombre] => 14-16
+ [baja] => 1
+ )
+
+ [23] => Array
+ (
+ [atribValId] => 208
+ [atributoId] => 1
+ [nombre] => 15
+ [baja] => 1
+ )
+
+ [24] => Array
+ (
+ [atribValId] => 195
+ [atributoId] => 1
+ [nombre] => 16
+ [baja] => 1
+ )
+
+ [25] => Array
+ (
+ [atribValId] => 277
+ [atributoId] => 1
+ [nombre] => 16
+ [baja] => 1
+ )
+
+ [26] => Array
+ (
+ [atribValId] => 253
+ [atributoId] => 1
+ [nombre] => 16
+ [baja] => 1
+ )
+
+ [27] => Array
+ (
+ [atribValId] => 76
+ [atributoId] => 1
+ [nombre] => 16
+ [baja] => 1
+ )
+
+ [28] => Array
+ (
+ [atribValId] => 221
+ [atributoId] => 1
+ [nombre] => 16-18
+ [baja] => 1
+ )
+
+ [29] => Array
+ (
+ [atribValId] => 309
+ [atributoId] => 1
+ [nombre] => 17
+ [baja] => 1
+ )
+
+ [30] => Array
+ (
+ [atribValId] => 81
+ [atributoId] => 1
+ [nombre] => 18
+ [baja] => 1
+ )
+
+ [31] => Array
+ (
+ [atribValId] => 102
+ [atributoId] => 1
+ [nombre] => 18 MESES
+ [baja] => 1
+ )
+
+ [32] => Array
+ (
+ [atribValId] => 66
+ [atributoId] => 1
+ [nombre] => 2
+ [baja] => 1
+ )
+
+ [33] => Array
+ (
+ [atribValId] => 192
+ [atributoId] => 1
+ [nombre] => 20
+ [baja] => 1
+ )
+
+ [34] => Array
+ (
+ [atribValId] => 148
+ [atributoId] => 1
+ [nombre] => 24
+ [baja] => 1
+ )
+
+ [35] => Array
+ (
+ [atribValId] => 103
+ [atributoId] => 1
+ [nombre] => 24 MESES
+ [baja] => 1
+ )
+
+ [36] => Array
+ (
+ [atribValId] => 55
+ [atributoId] => 1
+ [nombre] => 28
+ [baja] => 1
+ )
+
+ [37] => Array
+ (
+ [atribValId] => 222
+ [atributoId] => 1
+ [nombre] => 28-30
+ [baja] => 1
+ )
+
+ [38] => Array
+ (
+ [atribValId] => 301
+ [atributoId] => 1
+ [nombre] => 3
+ [baja] => 1
+ )
+
+ [39] => Array
+ (
+ [atribValId] => 308
+ [atributoId] => 1
+ [nombre] => 3
+ [baja] => 1
+ )
+
+ [40] => Array
+ (
+ [atribValId] => 67
+ [atributoId] => 1
+ [nombre] => 3
+ [baja] => 1
+ )
+
+ [41] => Array
+ (
+ [atribValId] => 38
+ [atributoId] => 1
+ [nombre] => 3 MESES
+ [baja] => 1
+ )
+
+ [42] => Array
+ (
+ [atribValId] => 246
+ [atributoId] => 1
+ [nombre] => 3-6 MESES
+ [baja] => 1
+ )
+
+ [43] => Array
+ (
+ [atribValId] => 291
+ [atributoId] => 1
+ [nombre] => 3/5
+ [baja] => 1
+ )
+
+ [44] => Array
+ (
+ [atribValId] => 13
+ [atributoId] => 1
+ [nombre] => 30
+ [baja] => 1
+ )
+
+ [45] => Array
+ (
+ [atribValId] => 304
+ [atributoId] => 1
+ [nombre] => 30
+ [baja] => 1
+ )
+
+ [46] => Array
+ (
+ [atribValId] => 284
+ [atributoId] => 1
+ [nombre] => 32
+ [baja] => 1
+ )
+
+ [47] => Array
+ (
+ [atribValId] => 305
+ [atributoId] => 1
+ [nombre] => 32
+ [baja] => 1
+ )
+
+ [48] => Array
+ (
+ [atribValId] => 3
+ [atributoId] => 1
+ [nombre] => 32
+ [baja] => 1
+ )
+
+ [49] => Array
+ (
+ [atribValId] => 241
+ [atributoId] => 1
+ [nombre] => 32 B
+ [baja] => 1
+ )
+
+ [50] => Array
+ (
+ [atribValId] => 223
+ [atributoId] => 1
+ [nombre] => 32-34
+ [baja] => 1
+ )
+
+ [51] => Array
+ (
+ [atribValId] => 207
+ [atributoId] => 1
+ [nombre] => 33
+ [baja] => 1
+ )
+
+ [52] => Array
+ (
+ [atribValId] => 283
+ [atributoId] => 1
+ [nombre] => 34
+ [baja] => 1
+ )
+
+ [53] => Array
+ (
+ [atribValId] => 270
+ [atributoId] => 1
+ [nombre] => 34
+ [baja] => 1
+ )
+
+ [54] => Array
+ (
+ [atribValId] => 11
+ [atributoId] => 1
+ [nombre] => 34
+ [baja] => 1
+ )
+
+ [55] => Array
+ (
+ [atribValId] => 242
+ [atributoId] => 1
+ [nombre] => 34 B
+ [baja] => 1
+ )
+
+ [56] => Array
+ (
+ [atribValId] => 285
+ [atributoId] => 1
+ [nombre] => 36
+ [baja] => 1
+ )
+
+ [57] => Array
+ (
+ [atribValId] => 5
+ [atributoId] => 1
+ [nombre] => 36
+ [baja] => 1
+ )
+
+ [58] => Array
+ (
+ [atribValId] => 271
+ [atributoId] => 1
+ [nombre] => 36
+ [baja] => 1
+ )
+
+ [59] => Array
+ (
+ [atribValId] => 243
+ [atributoId] => 1
+ [nombre] => 36 B
+ [baja] => 1
+ )
+
+ [60] => Array
+ (
+ [atribValId] => 224
+ [atributoId] => 1
+ [nombre] => 36-38
+ [baja] => 1
+ )
+
+ [61] => Array
+ (
+ [atribValId] => 92
+ [atributoId] => 1
+ [nombre] => 38
+ [baja] => 1
+ )
+
+ [62] => Array
+ (
+ [atribValId] => 286
+ [atributoId] => 1
+ [nombre] => 38
+ [baja] => 1
+ )
+
+ [63] => Array
+ (
+ [atribValId] => 244
+ [atributoId] => 1
+ [nombre] => 38 B
+ [baja] => 1
+ )
+
+ [64] => Array
+ (
+ [atribValId] => 68
+ [atributoId] => 1
+ [nombre] => 3X
+ [baja] => 1
+ )
+
+ [65] => Array
+ (
+ [atribValId] => 302
+ [atributoId] => 1
+ [nombre] => 3X
+ [baja] => 1
+ )
+
+ [66] => Array
+ (
+ [atribValId] => 58
+ [atributoId] => 1
+ [nombre] => 4
+ [baja] => 1
+ )
+
+ [67] => Array
+ (
+ [atribValId] => 263
+ [atributoId] => 1
+ [nombre] => 4/6
+ [baja] => 1
+ )
+
+ [68] => Array
+ (
+ [atribValId] => 69
+ [atributoId] => 1
+ [nombre] => 40
+ [baja] => 1
+ )
+
+ [69] => Array
+ (
+ [atribValId] => 225
+ [atributoId] => 1
+ [nombre] => 40-42
+ [baja] => 1
+ )
+
+ [70] => Array
+ (
+ [atribValId] => 70
+ [atributoId] => 1
+ [nombre] => 42
+ [baja] => 1
+ )
+
+ [71] => Array
+ (
+ [atribValId] => 71
+ [atributoId] => 1
+ [nombre] => 44
+ [baja] => 1
+ )
+
+ [72] => Array
+ (
+ [atribValId] => 72
+ [atributoId] => 1
+ [nombre] => 46
+ [baja] => 1
+ )
+
+ [73] => Array
+ (
+ [atribValId] => 82
+ [atributoId] => 1
+ [nombre] => 5
+ [baja] => 1
+ )
+
+ [74] => Array
+ (
+ [atribValId] => 59
+ [atributoId] => 1
+ [nombre] => 6
+ [baja] => 1
+ )
+
+ [75] => Array
+ (
+ [atribValId] => 260
+ [atributoId] => 1
+ [nombre] => 6
+ [baja] => 1
+ )
+
+ [76] => Array
+ (
+ [atribValId] => 258
+ [atributoId] => 1
+ [nombre] => 6
+ [baja] => 1
+ )
+
+ [77] => Array
+ (
+ [atribValId] => 39
+ [atributoId] => 1
+ [nombre] => 6 MESES
+ [baja] => 1
+ )
+
+ [78] => Array
+ (
+ [atribValId] => 93
+ [atributoId] => 1
+ [nombre] => 6-8
+ [baja] => 1
+ )
+
+ [79] => Array
+ (
+ [atribValId] => 247
+ [atributoId] => 1
+ [nombre] => 6-9 MESES
+ [baja] => 1
+ )
+
+ [80] => Array
+ (
+ [atribValId] => 267
+ [atributoId] => 1
+ [nombre] => 6/12 MESES
+ [baja] => 1
+ )
+
+ [81] => Array
+ (
+ [atribValId] => 290
+ [atributoId] => 1
+ [nombre] => 6/8
+ [baja] => 1
+ )
+
+ [82] => Array
+ (
+ [atribValId] => 307
+ [atributoId] => 1
+ [nombre] => 7
+ [baja] => 1
+ )
+
+ [83] => Array
+ (
+ [atribValId] => 83
+ [atributoId] => 1
+ [nombre] => 7
+ [baja] => 1
+ )
+
+ [84] => Array
+ (
+ [atribValId] => 175
+ [atributoId] => 1
+ [nombre] => 7/8
+ [baja] => 1
+ )
+
+ [85] => Array
+ (
+ [atribValId] => 264
+ [atributoId] => 1
+ [nombre] => 7/9
+ [baja] => 1
+ )
+
+ [86] => Array
+ (
+ [atribValId] => 259
+ [atributoId] => 1
+ [nombre] => 8
+ [baja] => 1
+ )
+
+ [87] => Array
+ (
+ [atribValId] => 261
+ [atributoId] => 1
+ [nombre] => 8
+ [baja] => 1
+ )
+
+ [88] => Array
+ (
+ [atribValId] => 73
+ [atributoId] => 1
+ [nombre] => 8
+ [baja] => 1
+ )
+
+ [89] => Array
+ (
+ [atribValId] => 219
+ [atributoId] => 1
+ [nombre] => 8-10
+ [baja] => 1
+ )
+
+ [90] => Array
+ (
+ [atribValId] => 45
+ [atributoId] => 1
+ [nombre] => 9
+ [baja] => 1
+ )
+
+ [91] => Array
+ (
+ [atribValId] => 306
+ [atributoId] => 1
+ [nombre] => 9
+ [baja] => 1
+ )
+
+ [92] => Array
+ (
+ [atribValId] => 40
+ [atributoId] => 1
+ [nombre] => 9 MESES
+ [baja] => 1
+ )
+
+ [93] => Array
+ (
+ [atribValId] => 248
+ [atributoId] => 1
+ [nombre] => 9-12 MESES
+ [baja] => 1
+ )
+
+ [94] => Array
+ (
+ [atribValId] => 257
+ [atributoId] => 1
+ [nombre] => 9/10
+ [baja] => 1
+ )
+
+ [95] => Array
+ (
+ [atribValId] => 289
+ [atributoId] => 1
+ [nombre] => 9/12
+ [baja] => 1
+ )
+
+ [96] => Array
+ (
+ [atribValId] => 303
+ [atributoId] => 1
+ [nombre] => CH
+ [baja] => 1
+ )
+
+ [97] => Array
+ (
+ [atribValId] => 125
+ [atributoId] => 1
+ [nombre] => CH
+ [baja] => 1
+ )
+
+ [98] => Array
+ (
+ [atribValId] => 62
+ [atributoId] => 1
+ [nombre] => CH
+ [baja] => 1
+ )
+
+ [99] => Array
+ (
+ [atribValId] => 14
+ [atributoId] => 1
+ [nombre] => CH
+ [baja] => 1
+ )
+
+ [100] => Array
+ (
+ [atribValId] => 111
+ [atributoId] => 1
+ [nombre] => CH
+ [baja] => 1
+ )
+
+ [101] => Array
+ (
+ [atribValId] => 203
+ [atributoId] => 1
+ [nombre] => CH-6-8
+ [baja] => 1
+ )
+
+ [102] => Array
+ (
+ [atribValId] => 159
+ [atributoId] => 1
+ [nombre] => CH/M
+ [baja] => 1
+ )
+
+ [103] => Array
+ (
+ [atribValId] => 216
+ [atributoId] => 1
+ [nombre] => EEEG
+ [baja] => 1
+ )
+
+ [104] => Array
+ (
+ [atribValId] => 215
+ [atributoId] => 1
+ [nombre] => EEG
+ [baja] => 1
+ )
+
+ [105] => Array
+ (
+ [atribValId] => 198
+ [atributoId] => 1
+ [nombre] => EG
+ [baja] => 1
+ )
+
+ [106] => Array
+ (
+ [atribValId] => 36
+ [atributoId] => 1
+ [nombre] => EG
+ [baja] => 1
+ )
+
+ [107] => Array
+ (
+ [atribValId] => 65
+ [atributoId] => 1
+ [nombre] => EG
+ [baja] => 1
+ )
+
+ [108] => Array
+ (
+ [atribValId] => 226
+ [atributoId] => 1
+ [nombre] => EG1
+ [baja] => 1
+ )
+
+ [109] => Array
+ (
+ [atribValId] => 227
+ [atributoId] => 1
+ [nombre] => EG2
+ [baja] => 1
+ )
+
+ [110] => Array
+ (
+ [atribValId] => 199
+ [atributoId] => 1
+ [nombre] => EX
+ [baja] => 1
+ )
+
+ [111] => Array
+ (
+ [atribValId] => 64
+ [atributoId] => 1
+ [nombre] => G
+ [baja] => 1
+ )
+
+ [112] => Array
+ (
+ [atribValId] => 16
+ [atributoId] => 1
+ [nombre] => G
+ [baja] => 1
+ )
+
+ [113] => Array
+ (
+ [atribValId] => 113
+ [atributoId] => 1
+ [nombre] => G
+ [baja] => 1
+ )
+
+ [114] => Array
+ (
+ [atribValId] => 205
+ [atributoId] => 1
+ [nombre] => G-14-16
+ [baja] => 1
+ )
+
+ [115] => Array
+ (
+ [atribValId] => 160
+ [atributoId] => 1
+ [nombre] => G/EG
+ [baja] => 1
+ )
+
+ [116] => Array
+ (
+ [atribValId] => 229
+ [atributoId] => 1
+ [nombre] => JUVENIL
+ [baja] => 1
+ )
+
+ [117] => Array
+ (
+ [atribValId] => 279
+ [atributoId] => 1
+ [nombre] => L
+ [baja] => 1
+ )
+
+ [118] => Array
+ (
+ [atribValId] => 293
+ [atributoId] => 1
+ [nombre] => LG
+ [baja] => 1
+ )
+
+ [119] => Array
+ (
+ [atribValId] => 15
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [120] => Array
+ (
+ [atribValId] => 292
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [121] => Array
+ (
+ [atribValId] => 294
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [122] => Array
+ (
+ [atribValId] => 300
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [123] => Array
+ (
+ [atribValId] => 63
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [124] => Array
+ (
+ [atribValId] => 112
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [125] => Array
+ (
+ [atribValId] => 186
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [126] => Array
+ (
+ [atribValId] => 287
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [127] => Array
+ (
+ [atribValId] => 196
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [128] => Array
+ (
+ [atribValId] => 269
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [129] => Array
+ (
+ [atribValId] => 274
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [130] => Array
+ (
+ [atribValId] => 275
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [131] => Array
+ (
+ [atribValId] => 278
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [132] => Array
+ (
+ [atribValId] => 4
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [133] => Array
+ (
+ [atribValId] => 197
+ [atributoId] => 1
+ [nombre] => M
+ [baja] => 1
+ )
+
+ [134] => Array
+ (
+ [atribValId] => 204
+ [atributoId] => 1
+ [nombre] => M-10-12
+ [baja] => 1
+ )
+
+ [135] => Array
+ (
+ [atribValId] => 201
+ [atributoId] => 1
+ [nombre] => M-G
+ [baja] => 1
+ )
+
+ [136] => Array
+ (
+ [atribValId] => 43
+ [atributoId] => 1
+ [nombre] => UNITALLA
+ [baja] => 1
+ )
+
+ [137] => Array
+ (
+ [atribValId] => 1
+ [atributoId] => 1
+ [nombre] => UNITALLA
+ [baja] => 0
+ )
+
+ [138] => Array
+ (
+ [atribValId] => 152
+ [atributoId] => 1
+ [nombre] => VAR.SURTIDOS
+ [baja] => 1
+ )
+
+ [139] => Array
+ (
+ [atribValId] => 183
+ [atributoId] => 1
+ [nombre] => VARIAS
+ [baja] => 1
+ )
+
+ [140] => Array
+ (
+ [atribValId] => 141
+ [atributoId] => 1
+ [nombre] => XCH
+ [baja] => 1
+ )
+
+ [141] => Array
+ (
+ [atribValId] => 142
+ [atributoId] => 1
+ [nombre] => XCH-JR.
+ [baja] => 1
+ )
+
+ [142] => Array
+ (
+ [atribValId] => 9
+ [atributoId] => 1
+ [nombre] => XG
+ [baja] => 1
+ )
+
+ [143] => Array
+ (
+ [atribValId] => 280
+ [atributoId] => 1
+ [nombre] => XL
+ [baja] => 1
+ )
+
+ )
+
+ )
+
+ [20] => Array
+ (
+ [atributoId] => 8
+ [nombre] => test
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [21] => Array
+ (
+ [atributoId] => 9
+ [nombre] => Textura
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+ [22] => Array
+ (
+ [atributoId] => 14
+ [nombre] => Vi
+ [baja] => 0
+ [valores] => Array
+ (
+ )
+
+ )
+
+)
+
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:47:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
+[08-Jan-2026 00:48:41 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:48:46 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:49:54 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:50:07 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:51:08 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:51:12 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:51:50 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:54:18 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:55:23 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:55:33 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:56:55 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:57:55 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:58:51 America/Mexico_City] === SAVE VALOR ===
+[08-Jan-2026 00:58:51 America/Mexico_City] atributoId recibido: 1
+[08-Jan-2026 00:58:51 America/Mexico_City] nombre recibido: SURTIDO
+[08-Jan-2026 00:58:51 America/Mexico_City] Resultado Save: SUCCESS ID: 332
+[08-Jan-2026 00:58:52 America/Mexico_City] === DEBUG ENUMERATEALL ===
+[08-Jan-2026 00:58:52 America/Mexico_City] atributoId: 1
+[08-Jan-2026 00:58:52 America/Mexico_City] empresaId: 1
+[08-Jan-2026 00:58:52 America/Mexico_City] Antes de EnumerateAll()
+[08-Jan-2026 00:58:52 America/Mexico_City] Resultado EnumerateAll(): Array
+(
+ [0] => Array
+ (
+ [atribValId] => 332
+ [atributoId] => 1
+ [nombre] => SURTIDO
+ [baja] => 0
+ )
+
+ [1] => Array
+ (
+ [atribValId] => 1
+ [atributoId] => 1
+ [nombre] => UNITALLA
+ [baja] => 0
+ )
+
+)
+
+[08-Jan-2026 00:58:52 America/Mexico_City] Count: 2
+[08-Jan-2026 00:58:59 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 00:59:50 America/Mexico_City] ########### Mandando 23 items a Smarty ###########
+[08-Jan-2026 01:02:39 America/Mexico_City] === SAVE VALOR ===
+[08-Jan-2026 01:02:39 America/Mexico_City] atributoId recibido: 1
+[08-Jan-2026 01:02:39 America/Mexico_City] nombre recibido: todos
+[08-Jan-2026 01:02:39 America/Mexico_City] Resultado Save: SUCCESS ID: 333
+[08-Jan-2026 01:02:39 America/Mexico_City] === DEBUG ENUMERATEALL ===
+[08-Jan-2026 01:02:39 America/Mexico_City] atributoId: 1
+[08-Jan-2026 01:02:39 America/Mexico_City] empresaId: 1
+[08-Jan-2026 01:02:39 America/Mexico_City] Antes de EnumerateAll()
+[08-Jan-2026 01:02:39 America/Mexico_City] Resultado EnumerateAll(): Array
+(
+ [0] => Array
+ (
+ [atribValId] => 332
+ [atributoId] => 1
+ [nombre] => SURTIDO
+ [baja] => 0
+ )
+
+ [1] => Array
+ (
+ [atribValId] => 333
+ [atributoId] => 1
+ [nombre] => todos
+ [baja] => 0
+ )
+
+ [2] => Array
+ (
+ [atribValId] => 1
+ [atributoId] => 1
+ [nombre] => UNITALLA
+ [baja] => 0
+ )
+
+)
+
+[08-Jan-2026 01:02:39 America/Mexico_City] Count: 3
+[08-Jan-2026 01:02:56 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/9f7a51167e64afe4bcfd339161960b40e41200d3.file.pages_ajax.tpl.php on line 19
+[08-Jan-2026 01:02:56 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/9f7a51167e64afe4bcfd339161960b40e41200d3.file.pages_ajax.tpl.php:19
Stack trace:
#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
@@ -82,48 +6288,3 @@ Stack trace:
#7 /var/www/html/ventas/ajax/sucursales.php(153): Smarty->display()
#8 {main}
thrown in /var/www/html/ventas/templates_c/9f7a51167e64afe4bcfd339161960b40e41200d3.file.pages_ajax.tpl.php on line 19
-[07-Jan-2026 18:42:57 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined method Util::DecodeUrlRow() in /var/www/html/ventas/ajax/datos-generales.php:67
-Stack trace:
-#0 {main}
- thrown in /var/www/html/ventas/ajax/datos-generales.php on line 67
-[07-Jan-2026 18:43:03 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined method Util::DecodeUrlRow() in /var/www/html/ventas/ajax/datos-generales.php:13
-Stack trace:
-#0 {main}
- thrown in /var/www/html/ventas/ajax/datos-generales.php on line 13
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 18:43:09 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 19:00:43 America/Mexico_City] PHP Warning: Undefined array key "tipoUsr" in /var/www/html/ventas/ajax/logout.php on line 10
-[07-Jan-2026 19:00:43 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/empresa.class.php on line 446
-[07-Jan-2026 19:39:55 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/empresa.class.php on line 446
-[07-Jan-2026 19:40:05 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/inventario.class.php:1014
-Stack trace:
-#0 /var/www/html/ventas/modules/inventario-wizard-list.php(7): Inventario->EnumWizard()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/inventario.class.php on line 1014
diff --git a/md/plan-accion-multi-empresa.md b/md/plan-accion-multi-empresa.md
old mode 100644
new mode 100755
diff --git a/modules/atributos.php b/modules/atributos.php
index 20d1407..dcb3e4b 100755
--- a/modules/atributos.php
+++ b/modules/atributos.php
@@ -1,23 +1,48 @@
AuthUser();
-
- $p = intval($_GET["p"] ?? 0);
- $atributo->SetPage($p);
- $atributos = $atributo->Enumerate();
-
- $items = array();
- foreach($atributos['items'] as $res){
- $card = $res;
-
- $atribVal->setAtributoId($res['atributoId']);
- $card['valores'] = $atribVal->EnumerateAll();
-
- $items[] = $card;
- }
- $atributos['items'] = $items;
-
- $smarty->assign('atributos', $atributos);
+ $empresa->AuthUser();
+
+
+
+ $all_atributos = $atributo->EnumerateAll();
+
+
+
+ $items = array();
+
+ foreach($all_atributos as $res){
+
+ $card = $res;
+
+
+
+ $atribVal->setAtributoId($res['atributoId']);
+
+ $card['valores'] = $atribVal->EnumerateAll();
+
+
+
+ $items[] = $card;
+
+ }
+
+
+
+ $atributos_for_smarty = array();
+
+ $atributos_for_smarty['items'] = $items;
+
+ $atributos_for_smarty['pages'] = null;
+
+
+
+ $num_items = count($atributos_for_smarty['items']);
+
+ error_log("########### Mandando $num_items items a Smarty ###########");
+
+
+
+ $smarty->assign('atributos', $atributos_for_smarty);
?>
\ No newline at end of file
diff --git a/php8-migration/MIGRATION_FILES_LIST.md b/php8-migration/MIGRATION_FILES_LIST.md
old mode 100644
new mode 100755
diff --git a/php_errors.log b/php_errors.log
deleted file mode 100755
index dfaf86e..0000000
--- a/php_errors.log
+++ /dev/null
@@ -1,3118 +0,0 @@
-[06-Jan-2026 19:17:36 America/Mexico_City] PHP Fatal error: Uncaught Exception: Unable to load template file '/templates/menus/main.tpl' in /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php:169
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(513): Smarty_Internal_Template->isExisting()
-#1 /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php(55): Smarty_Internal_Template->getRenderedTemplate()
-#2 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#4 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(120): Smarty_Internal_Template->getRenderedTemplate()
-#5 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#7 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#8 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#9 /var/www/html/ventas/index.php(178): Smarty->display()
-#10 {main}
- thrown in /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php on line 169
-[06-Jan-2026 21:14:46 America/Mexico_City] PHP Warning: Undefined array key "page" in /var/www/html/ventas/index.php on line 9
-[06-Jan-2026 21:14:46 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/config.php on line 5
-[06-Jan-2026 21:14:46 America/Mexico_City] PHP Warning: Undefined array key "lang" in /var/www/html/ventas/classes/util.class.php on line 596
-[06-Jan-2026 21:14:46 America/Mexico_City] PHP Warning: Undefined array key "page" in /var/www/html/ventas/index.php on line 18
-[06-Jan-2026 21:14:46 America/Mexico_City] PHP Warning: Undefined array key "tipoUsr" in /var/www/html/ventas/modules/user.php on line 3
-[06-Jan-2026 21:14:46 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/user.class.php on line 12
-[06-Jan-2026 21:14:46 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined function mysql_connect() in /var/www/html/ventas/classes/db.class.php:87
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(94): DB->DatabaseConnect()
-#1 /var/www/html/ventas/classes/db.class.php(152): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/user.class.php(14): DB->GetRow()
-#3 /var/www/html/ventas/modules/user.php(9): User->Info()
-#4 /var/www/html/ventas/index.php(148): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 87
-[06-Jan-2026 21:16:09 America/Mexico_City] PHP Warning: Undefined array key "page" in /var/www/html/ventas/index.php on line 9
-[06-Jan-2026 21:16:09 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/config.php on line 5
-[06-Jan-2026 21:16:09 America/Mexico_City] PHP Warning: Undefined array key "lang" in /var/www/html/ventas/classes/util.class.php on line 596
-[06-Jan-2026 21:16:09 America/Mexico_City] PHP Warning: Undefined array key "page" in /var/www/html/ventas/index.php on line 18
-[06-Jan-2026 21:16:09 America/Mexico_City] PHP Warning: Undefined array key "tipoUsr" in /var/www/html/ventas/modules/user.php on line 3
-[06-Jan-2026 21:16:09 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/user.class.php on line 12
-[06-Jan-2026 21:16:09 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Access denied for user 'root'@'localhost' (using password: YES) in /var/www/html/ventas/classes/db.class.php:87
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(87): mysqli_connect()
-#1 /var/www/html/ventas/classes/db.class.php(96): DB->DatabaseConnect()
-#2 /var/www/html/ventas/classes/db.class.php(154): DB->ExecuteQuery()
-#3 /var/www/html/ventas/classes/user.class.php(14): DB->GetRow()
-#4 /var/www/html/ventas/modules/user.php(9): User->Info()
-#5 /var/www/html/ventas/index.php(148): include_once('...')
-#6 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 87
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "page" in /var/www/html/ventas/index.php on line 9
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/config.php on line 5
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "lang" in /var/www/html/ventas/classes/util.class.php on line 596
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "page" in /var/www/html/ventas/index.php on line 18
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "tipoUsr" in /var/www/html/ventas/modules/user.php on line 3
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/user.class.php on line 12
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 11
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 12
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 13
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 14
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/empresa.class.php on line 427
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined property: Empresa::$Util in /var/www/html/ventas/classes/main.class.php on line 137
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/config.php on line 5
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "lang" in /var/www/html/ventas/classes/util.class.php on line 596
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "tipoUsr" in /var/www/html/ventas/modules/user.php on line 3
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/user.class.php on line 12
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 11
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 12
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 13
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 14
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined property: Empresa::$Util in /var/www/html/ventas/classes/main.class.php on line 137
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined property: Util::$DB in /var/www/html/ventas/classes/util.class.php on line 8
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "section" in /var/www/html/ventas/index.php on line 153
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/index.php on line 160
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined variable $cIva in /var/www/html/ventas/index.php on line 161
-[06-Jan-2026 21:22:51 America/Mexico_City] PHP Warning: Undefined array key "section" in /var/www/html/ventas/index.php on line 164
-[06-Jan-2026 21:26:24 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/config.php on line 5
-[06-Jan-2026 21:26:24 America/Mexico_City] PHP Fatal error: Cannot declare class DB, because the name is already in use in /var/www/html/ventas/classes/database-manager.class.php on line 155
-[06-Jan-2026 21:27:49 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/config.php on line 5
-[06-Jan-2026 21:27:49 America/Mexico_City] PHP Fatal error: Cannot declare class DB, because the name is already in use in /var/www/html/ventas/classes/database-manager.class.php on line 155
-[06-Jan-2026 21:36:26 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/config.php on line 5
-[06-Jan-2026 21:36:26 America/Mexico_City] PHP Fatal error: Cannot declare class DB, because the name is already in use in /var/www/html/ventas/classes/database-manager.class.php on line 155
-[06-Jan-2026 21:38:07 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/config.php on line 5
-[06-Jan-2026 21:38:07 America/Mexico_City] PHP Fatal error: Cannot declare class DB, because the name is already in use in /var/www/html/ventas/classes/database-manager.class.php on line 155
-[06-Jan-2026 21:38:10 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/config.php on line 5
-[06-Jan-2026 21:38:10 America/Mexico_City] PHP Fatal error: Cannot declare class DB, because the name is already in use in /var/www/html/ventas/classes/database-manager.class.php on line 155
-[06-Jan-2026 21:39:48 America/Mexico_City] PHP Fatal error: Uncaught Error: Class "Util" not found in /var/www/html/ventas/classes/pac.class.php:3
-Stack trace:
-#0 /var/www/html/ventas/libraries.php(56): include_once()
-#1 /var/www/html/ventas/index.php(16): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/pac.class.php on line 3
-[06-Jan-2026 21:42:02 America/Mexico_City] PHP Fatal error: Uncaught Error: Class "Util" not found in /var/www/html/ventas/classes/pac.class.php:3
-Stack trace:
-#0 /var/www/html/ventas/libraries.php(61): include_once()
-#1 /var/www/html/ventas/index.php(16): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/pac.class.php on line 3
-[06-Jan-2026 21:50:08 America/Mexico_City] Error validando BD avantikads_nm1: Connection refused
-[06-Jan-2026 21:50:08 America/Mexico_City] PHP Fatal error: Uncaught Exception: Base de datos no existe para empresaId: 1 (DB: avantikads_nm1) in /var/www/html/ventas/classes/database-manager.class.php:65
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(104): DatabaseManager->getEmpresaConnection()
-#1 /var/www/html/ventas/libraries.php(65): DB->__construct()
-#2 /var/www/html/ventas/index.php(16): include_once('...')
-#3 {main}
- thrown in /var/www/html/ventas/classes/database-manager.class.php on line 65
-[06-Jan-2026 21:50:56 America/Mexico_City] Error validando BD avantikads_nm151: Connection refused
-[06-Jan-2026 21:50:56 America/Mexico_City] PHP Fatal error: Uncaught Exception: Base de datos no existe para empresaId: 1 (DB: avantikads_nm151) in /var/www/html/ventas/classes/database-manager.class.php:65
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(104): DatabaseManager->getEmpresaConnection()
-#1 /var/www/html/ventas/libraries.php(65): DB->__construct()
-#2 /var/www/html/ventas/index.php(16): include_once('...')
-#3 {main}
- thrown in /var/www/html/ventas/classes/database-manager.class.php on line 65
-[06-Jan-2026 21:51:36 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Connection refused in /var/www/html/ventas/classes/database-manager.class.php:37
-Stack trace:
-#0 /var/www/html/ventas/classes/database-manager.class.php(37): mysqli->__construct()
-#1 /var/www/html/ventas/classes/db.class.php(110): DatabaseManager->getMasterConnection()
-#2 /var/www/html/ventas/libraries.php(65): DB->__construct()
-#3 /var/www/html/ventas/index.php(16): include_once('...')
-#4 {main}
- thrown in /var/www/html/ventas/classes/database-manager.class.php on line 37
-[06-Jan-2026 21:54:56 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Connection refused in /var/www/html/ventas/classes/database-manager.class.php:37
-Stack trace:
-#0 /var/www/html/ventas/classes/database-manager.class.php(37): mysqli->__construct()
-#1 /var/www/html/ventas/classes/db.class.php(110): DatabaseManager->getMasterConnection()
-#2 /var/www/html/ventas/libraries.php(65): DB->__construct()
-#3 /var/www/html/ventas/index.php(16): include_once('...')
-#4 {main}
- thrown in /var/www/html/ventas/classes/database-manager.class.php on line 37
-[06-Jan-2026 22:05:58 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:05:58 America/Mexico_City] PHP Warning: Undefined array key "lang" in /var/www/html/ventas/classes/util.class.php on line 363
-[06-Jan-2026 22:05:58 America/Mexico_City] PHP Warning: Undefined array key "tipoUsr" in /var/www/html/ventas/modules/user.php on line 3
-[06-Jan-2026 22:05:58 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/user.class.php on line 12
-[06-Jan-2026 22:05:58 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:05:58 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 11
-[06-Jan-2026 22:05:58 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 12
-[06-Jan-2026 22:05:58 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 13
-[06-Jan-2026 22:05:58 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 14
-[06-Jan-2026 22:05:58 America/Mexico_City] PHP Warning: Undefined property: Empresa::$Util in /var/www/html/ventas/classes/main.class.php on line 137
-[06-Jan-2026 22:05:58 America/Mexico_City] PHP Fatal error: Uncaught Error: Cannot access private property Util::$DB in /var/www/html/ventas/modules/login.php:4
-Stack trace:
-#0 /var/www/html/ventas/index.php(149): include_once()
-#1 {main}
- thrown in /var/www/html/ventas/modules/login.php on line 4
-[06-Jan-2026 22:07:59 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:07:59 America/Mexico_City] PHP Warning: Undefined array key "lang" in /var/www/html/ventas/classes/util.class.php on line 363
-[06-Jan-2026 22:07:59 America/Mexico_City] PHP Warning: Undefined array key "tipoUsr" in /var/www/html/ventas/modules/user.php on line 3
-[06-Jan-2026 22:07:59 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/user.class.php on line 12
-[06-Jan-2026 22:07:59 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:07:59 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 11
-[06-Jan-2026 22:07:59 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 12
-[06-Jan-2026 22:07:59 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 13
-[06-Jan-2026 22:07:59 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/modules/user.php on line 14
-[06-Jan-2026 22:07:59 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:07:59 America/Mexico_City] PHP Fatal error: Uncaught TypeError: mysqli_fetch_assoc(): Argument #1 ($result) must be of type mysqli_result, MockResult given in /var/www/html/ventas/classes/db.class.php:147
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(147): mysqli_fetch_assoc()
-#1 /var/www/html/ventas/modules/login.php(5): DB->GetResult()
-#2 /var/www/html/ventas/index.php(149): include_once('...')
-#3 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 147
-[06-Jan-2026 22:10:20 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:10:20 America/Mexico_City] PHP Warning: Undefined array key "lang" in /var/www/html/ventas/classes/util.class.php on line 363
-[06-Jan-2026 22:10:20 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:10:20 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:10:20 America/Mexico_City] PHP Fatal error: Uncaught TypeError: mysqli_fetch_assoc(): Argument #1 ($result) must be of type mysqli_result, MockResult given in /var/www/html/ventas/classes/db.class.php:147
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(147): mysqli_fetch_assoc()
-#1 /var/www/html/ventas/modules/login.php(5): DB->GetResult()
-#2 /var/www/html/ventas/index.php(149): include_once('...')
-#3 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 147
-[06-Jan-2026 22:11:28 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:11:28 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:11:28 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:11:28 America/Mexico_City] PHP Fatal error: Uncaught TypeError: mysqli_fetch_assoc(): Argument #1 ($result) must be of type mysqli_result, MockResult given in /var/www/html/ventas/classes/db.class.php:147
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(147): mysqli_fetch_assoc()
-#1 /var/www/html/ventas/modules/login.php(5): DB->GetResult()
-#2 /var/www/html/ventas/index.php(149): include_once('...')
-#3 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 147
-[06-Jan-2026 22:14:31 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:14:31 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:14:31 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:14:31 America/Mexico_City] PHP Warning: Undefined array key "section" in /var/www/html/ventas/index.php on line 153
-[06-Jan-2026 22:14:31 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/index.php on line 160
-[06-Jan-2026 22:14:31 America/Mexico_City] PHP Warning: Undefined variable $cIva in /var/www/html/ventas/index.php on line 161
-[06-Jan-2026 22:14:31 America/Mexico_City] PHP Warning: Undefined array key "section" in /var/www/html/ventas/index.php on line 164
-[06-Jan-2026 22:15:57 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:15:57 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:15:57 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:15:57 America/Mexico_City] PHP Warning: Undefined array key "section" in /var/www/html/ventas/index.php on line 153
-[06-Jan-2026 22:15:57 America/Mexico_City] PHP Warning: Undefined array key "curBD" in /var/www/html/ventas/index.php on line 160
-[06-Jan-2026 22:15:57 America/Mexico_City] PHP Warning: Undefined variable $cIva in /var/www/html/ventas/index.php on line 161
-[06-Jan-2026 22:15:57 America/Mexico_City] PHP Warning: Undefined array key "section" in /var/www/html/ventas/index.php on line 164
-[06-Jan-2026 22:19:39 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:19:39 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:19:39 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:19:56 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:19:56 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:19:56 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:21:08 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:21:08 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:21:08 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:24:36 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:24:36 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:24:36 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:26:10 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:26:10 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:26:10 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:29:32 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:29:32 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:29:32 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:30:27 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:30:27 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:30:27 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:34:01 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:34:01 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:34:01 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:35:03 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:35:03 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:35:03 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:37:11 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:37:11 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:37:11 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:38:03 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:38:03 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:38:03 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:42:42 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:42:42 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:42:42 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:45:01 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:45:01 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:45:01 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:45:02 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:45:02 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:45:02 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:48:13 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:48:13 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:48:13 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:52:26 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:52:26 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:52:26 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:54:01 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:54:01 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:54:01 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:58:34 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:58:34 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 22:58:34 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 22:58:57 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 22:58:57 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 22:58:57 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 22:58:57 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:00:49 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:00:49 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:00:49 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:00:49 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:02:58 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:02:58 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:02:58 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:02:58 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:05:04 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:05:04 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:05:04 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:05:04 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:05:34 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:05:34 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:05:34 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:05:34 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:07:10 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:07:10 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:07:10 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:07:10 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:15:35 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:15:35 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:15:35 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:15:35 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:16:40 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:16:40 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:16:40 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:16:40 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:20:06 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:20:06 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:20:06 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:20:06 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:22:06 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:22:06 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:22:06 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:22:06 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:29:19 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:29:19 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:29:19 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:29:19 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:30:07 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:30:07 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:30:07 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:30:07 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:31:08 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:31:08 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:31:08 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:31:08 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:31:59 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:31:59 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:32:02 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:32:02 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:32:02 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined method Util::GetNameUsrType() in /var/www/html/ventas/modules/usuarios.php:28
-Stack trace:
-#0 /var/www/html/ventas/index.php(149): include_once()
-#1 {main}
- thrown in /var/www/html/ventas/modules/usuarios.php on line 28
-[06-Jan-2026 23:32:04 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:32:04 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:32:07 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:32:07 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/empresa.class.php on line 422
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 41
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 68
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 80
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:32:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 163
-[06-Jan-2026 23:32:07 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:32:07 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = ''
-[06-Jan-2026 23:32:07 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:33:12 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:33:12 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:33:12 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:33:12 America/Mexico_City] Mock Query: SELECT * FROM empresa
-[06-Jan-2026 23:33:18 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:33:18 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:33:22 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:33:22 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:33:22 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined method Util::GetNameUsrType() in /var/www/html/ventas/modules/usuarios.php:28
-Stack trace:
-#0 /var/www/html/ventas/index.php(149): include_once()
-#1 {main}
- thrown in /var/www/html/ventas/modules/usuarios.php on line 28
-[06-Jan-2026 23:33:24 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:33:24 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:33:27 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:33:27 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:33:27 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/pedidos.php on line 13
-[06-Jan-2026 23:33:27 America/Mexico_City] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(201): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/pedido.class.php(352): DB->GetSingle()
-#3 /var/www/html/ventas/modules/pedidos.php(15): Pedido->Enumerate2()
-#4 /var/www/html/ventas/index.php(149): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:33:30 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:33:30 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:33:49 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:33:49 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:33:49 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/pedidos.php on line 13
-[06-Jan-2026 23:33:49 America/Mexico_City] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(201): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/pedido.class.php(352): DB->GetSingle()
-#3 /var/www/html/ventas/modules/pedidos.php(15): Pedido->Enumerate2()
-#4 /var/www/html/ventas/index.php(149): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:35:19 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:35:19 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:35:19 America/Mexico_City] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(201): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/pedido.class.php(352): DB->GetSingle()
-#3 /var/www/html/ventas/modules/pedidos.php(15): Pedido->Enumerate2()
-#4 /var/www/html/ventas/index.php(149): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:36:56 America/Mexico_City] Error validando BD avantikads_nm15: Connection refused
-[06-Jan-2026 23:36:56 America/Mexico_City] Base de datos avantikads_nm15 no encontrada, usando fallback a master
-[06-Jan-2026 23:36:56 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nmgen.pedido' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(201): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/pedido.class.php(354): DB->GetSingle()
-#3 /var/www/html/ventas/modules/pedidos.php(15): Pedido->Enumerate2()
-#4 /var/www/html/ventas/index.php(149): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:38:48 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.usuario' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(186): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/user.class.php(15): DB->GetRow()
-#3 /var/www/html/ventas/modules/user.php(11): User->Info()
-#4 /var/www/html/ventas/index.php(148): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:38:52 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.usuario' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(186): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/user.class.php(15): DB->GetRow()
-#3 /var/www/html/ventas/modules/user.php(11): User->Info()
-#4 /var/www/html/ventas/index.php(148): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:40:05 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.usuario' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(186): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/user.class.php(15): DB->GetRow()
-#3 /var/www/html/ventas/modules/user.php(11): User->Info()
-#4 /var/www/html/ventas/index.php(148): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:40:33 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.usuario' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(186): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/user.class.php(15): DB->GetRow()
-#3 /var/www/html/ventas/modules/user.php(11): User->Info()
-#4 /var/www/html/ventas/index.php(148): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:40:59 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.usuario' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(186): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/user.class.php(15): DB->GetRow()
-#3 /var/www/html/ventas/modules/user.php(11): User->Info()
-#4 /var/www/html/ventas/index.php(148): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:45:36 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:45:36 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:45:36 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.empresa' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(186): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/empresa.class.php(357): DB->GetRow()
-#3 /var/www/html/ventas/classes/empresa.class.php(424): Empresa->Info()
-#4 /var/www/html/ventas/classes/empresa.class.php(458): Empresa->IsLoggedIn()
-#5 /var/www/html/ventas/modules/pedidos.php(3): Empresa->AuthUser()
-#6 /var/www/html/ventas/index.php(149): include_once('...')
-#7 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:46:38 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:46:38 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:46:38 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.empresa' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(186): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/empresa.class.php(357): DB->GetRow()
-#3 /var/www/html/ventas/classes/empresa.class.php(424): Empresa->Info()
-#4 /var/www/html/ventas/classes/empresa.class.php(458): Empresa->IsLoggedIn()
-#5 /var/www/html/ventas/modules/pedidos.php(3): Empresa->AuthUser()
-#6 /var/www/html/ventas/index.php(149): include_once('...')
-#7 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:46:44 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:46:44 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:46:44 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.empresa' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(186): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/empresa.class.php(357): DB->GetRow()
-#3 /var/www/html/ventas/classes/empresa.class.php(424): Empresa->Info()
-#4 /var/www/html/ventas/classes/empresa.class.php(458): Empresa->IsLoggedIn()
-#5 /var/www/html/ventas/modules/homepage.php(3): Empresa->AuthUser()
-#6 /var/www/html/ventas/index.php(149): include_once('...')
-#7 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:46:47 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:46:47 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:46:47 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.empresa' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(186): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/empresa.class.php(357): DB->GetRow()
-#3 /var/www/html/ventas/classes/empresa.class.php(424): Empresa->Info()
-#4 /var/www/html/ventas/classes/empresa.class.php(458): Empresa->IsLoggedIn()
-#5 /var/www/html/ventas/modules/homepage.php(3): Empresa->AuthUser()
-#6 /var/www/html/ventas/index.php(149): include_once('...')
-#7 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:48:49 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:48:49 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:48:49 America/Mexico_City] Mock Query: SELECT * FROM empresa WHERE empresaId = ''
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 41
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 68
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 80
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:48:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 163
-[06-Jan-2026 23:49:08 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:49:08 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:49:08 America/Mexico_City] Mock Query: SELECT * FROM empresa WHERE empresaId = ''
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 41
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 68
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 80
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:49:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 163
-[06-Jan-2026 23:50:39 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:50:39 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:50:39 America/Mexico_City] Mock Query: SELECT * FROM empresa WHERE empresaId = ''
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 41
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 68
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 80
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:50:39 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 163
-[06-Jan-2026 23:53:15 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:53:15 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:53:15 America/Mexico_City] Mock Query: SELECT * FROM empresa WHERE empresaId = ''
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "nombre" in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 41
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 68
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 80
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:15 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 163
-[06-Jan-2026 23:53:23 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:53:23 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:53:23 America/Mexico_City] Mock Query: SELECT * FROM empresa WHERE empresaId = ''
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "nombre" in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 41
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/27570b10fa6af06579c60ea0a36ab2ec4691ad05.file.header.tpl.php on line 43
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 32
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 44
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 56
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 68
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 80
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 92
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 104
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 116
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 126
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 138
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 150
-[06-Jan-2026 23:53:23 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/templates_c/609737f18f894abfa6157e8d0005cc9d18d3c612.file.main.tpl.php on line 163
-[06-Jan-2026 23:54:14 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:54:14 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:54:14 America/Mexico_City] Mock Query: SELECT * FROM empresa WHERE empresaId = ''
-[06-Jan-2026 23:54:44 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:54:44 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:54:44 America/Mexico_City] Mock Query: SELECT * FROM empresa WHERE empresaId = ''
-[06-Jan-2026 23:54:44 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.usuario' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(201): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/usuario.class.php(436): DB->GetSingle()
-#3 /var/www/html/ventas/classes/usuario.class.php(540): Usuario->GetTypeById()
-#4 /var/www/html/ventas/modules/pedidos.php(5): Usuario->AllowPage()
-#5 /var/www/html/ventas/index.php(149): include_once('...')
-#6 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[06-Jan-2026 23:54:49 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:54:49 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:54:49 America/Mexico_City] Mock Query: SELECT * FROM empresa WHERE empresaId = ''
-[06-Jan-2026 23:56:27 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:56:27 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:56:27 America/Mexico_City] Mock Query: SELECT * FROM empresa WHERE empresaId = ''
-[06-Jan-2026 23:57:51 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:57:51 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:59:20 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:59:20 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:59:27 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:59:27 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[06-Jan-2026 23:59:38 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[06-Jan-2026 23:59:38 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[07-Jan-2026 00:01:00 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[07-Jan-2026 00:01:00 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[07-Jan-2026 00:01:00 America/Mexico_City] Mock Query: SELECT DATABASE()
-[07-Jan-2026 00:01:00 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/classes/db.class.php on line 208
-[07-Jan-2026 00:01:00 America/Mexico_City] Mock Query: SELECT COUNT(*) FROM usuario WHERE usuarioId = 1
-[07-Jan-2026 00:01:00 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/classes/db.class.php on line 208
-[07-Jan-2026 00:01:48 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[07-Jan-2026 00:01:48 America/Mexico_City] Mock Query: SELECT * FROM usuario
- LEFT JOIN empresa ON usuario.empresaId = empresa.empresaId
- WHERE usuarioId = '1'
-[07-Jan-2026 00:01:48 America/Mexico_City] Mock Query: SELECT DATABASE()
-[07-Jan-2026 00:01:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/classes/db.class.php on line 208
-[07-Jan-2026 00:01:48 America/Mexico_City] Mock Query: SELECT COUNT(*) FROM usuario WHERE usuarioId = 1
-[07-Jan-2026 00:01:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/classes/db.class.php on line 208
-[07-Jan-2026 00:02:04 America/Mexico_City] WARNING: No hay conexión a base de datos. Usando modo desarrollo. Connection refused
-[07-Jan-2026 00:04:00 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.usuario' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(145): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/usuario.class.php(198): DB->GetResult()
-#3 /var/www/html/ventas/modules/usuarios.php(21): Usuario->GetUsuariosByEmpresa()
-#4 /var/www/html/ventas/index.php(149): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[07-Jan-2026 00:04:52 America/Mexico_City] PHP Fatal error: Uncaught mysqli_sql_exception: Table 'avantikads_nm15.usuario' doesn't exist in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(145): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/usuario.class.php(198): DB->GetResult()
-#3 /var/www/html/ventas/modules/usuarios.php(21): Usuario->GetUsuariosByEmpresa()
-#4 /var/www/html/ventas/index.php(149): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[07-Jan-2026 00:07:28 America/Mexico_City] PHP Parse error: syntax error, unexpected token "and" in /var/www/html/ventas/classes/usuario.class.php on line 216
-[07-Jan-2026 00:07:32 America/Mexico_City] PHP Parse error: syntax error, unexpected token "and" in /var/www/html/ventas/classes/usuario.class.php on line 216
-[07-Jan-2026 00:07:55 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined method Util::GetNameUsrType() in /var/www/html/ventas/modules/usuarios.php:28
-Stack trace:
-#0 /var/www/html/ventas/index.php(149): include_once()
-#1 {main}
- thrown in /var/www/html/ventas/modules/usuarios.php on line 28
-[07-Jan-2026 00:09:03 America/Mexico_City] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /var/www/html/ventas/classes/db.class.php:132
-Stack trace:
-#0 /var/www/html/ventas/classes/db.class.php(132): mysqli_query()
-#1 /var/www/html/ventas/classes/db.class.php(201): DB->ExecuteQuery()
-#2 /var/www/html/ventas/classes/sucursal.class.php(208): DB->GetSingle()
-#3 /var/www/html/ventas/modules/usuarios.php(32): Sucursal->GetNameById()
-#4 /var/www/html/ventas/index.php(149): include_once('...')
-#5 {main}
- thrown in /var/www/html/ventas/classes/db.class.php on line 132
-[07-Jan-2026 00:11:02 America/Mexico_City] PHP Warning: Undefined variable $sqlFilter in /var/www/html/ventas/classes/sucursal.class.php on line 173
-[07-Jan-2026 00:11:02 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined method Util::DecodeUrlResult() in /var/www/html/ventas/modules/usuarios.php:40
-Stack trace:
-#0 /var/www/html/ventas/index.php(149): include_once()
-#1 {main}
- thrown in /var/www/html/ventas/modules/usuarios.php on line 40
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Undefined array key "msgU" in /var/www/html/ventas/modules/usuarios.php on line 43
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Undefined variable $nomSuc in /var/www/html/ventas/modules/usuarios.php on line 47
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Undefined array key "sucursal" in /var/www/html/ventas/templates_c/e85f9d694d4f200f132b4040dda6b61222954514.file.usuarios-base.tpl.php on line 27
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Undefined array key "sucursal" in /var/www/html/ventas/templates_c/e85f9d694d4f200f132b4040dda6b61222954514.file.usuarios-base.tpl.php on line 27
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Undefined array key "sucursal" in /var/www/html/ventas/templates_c/e85f9d694d4f200f132b4040dda6b61222954514.file.usuarios-base.tpl.php on line 27
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Undefined array key "sucursal" in /var/www/html/ventas/templates_c/e85f9d694d4f200f132b4040dda6b61222954514.file.usuarios-base.tpl.php on line 27
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:11:52 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/9463f5eb94e258299f76f9fcf7196e1f49f4ffbd.file.usuarios.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/af4a33906a984a2eddc18baccfb8f084f52707ed.file.usuarios.tpl.php(54): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:13:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:14:33 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:15:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:21 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined method Util::FormatDateDMMMY() in /var/www/html/ventas/modules/pedidos.php:55
-Stack trace:
-#0 /var/www/html/ventas/index.php(149): include_once()
-#1 {main}
- thrown in /var/www/html/ventas/modules/pedidos.php on line 55
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:16:24 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:34 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:17:38 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined method User::setUsuarioId() in /var/www/html/ventas/debug_layout.php:10
-Stack trace:
-#0 {main}
- thrown in /var/www/html/ventas/debug_layout.php on line 10
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:18:35 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:19:54 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/empresa.class.php on line 422
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:20:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:00 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/empresa.class.php on line 422
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:21:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:04 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:23:25 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/metodos-pago.php on line 10
-[07-Jan-2026 00:23:26 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/metodoPago.class.php:74
-Stack trace:
-#0 /var/www/html/ventas/modules/metodos-pago.php(11): MetodoPago->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/metodoPago.class.php on line 74
-[07-Jan-2026 00:23:45 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/metodos-pago.php on line 10
-[07-Jan-2026 00:23:45 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/metodoPago.class.php:74
-Stack trace:
-#0 /var/www/html/ventas/modules/metodos-pago.php(11): MetodoPago->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/metodoPago.class.php on line 74
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:07 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:24:26 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/metodos-pago.php on line 10
-[07-Jan-2026 00:24:26 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/metodoPago.class.php:74
-Stack trace:
-#0 /var/www/html/ventas/modules/metodos-pago.php(11): MetodoPago->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/metodoPago.class.php on line 74
-[07-Jan-2026 00:25:19 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/metodoPago.class.php:74
-Stack trace:
-#0 /var/www/html/ventas/modules/metodos-pago.php(12): MetodoPago->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/metodoPago.class.php on line 74
-[07-Jan-2026 00:25:34 America/Mexico_City] PHP Fatal error: Access level to MetodoPago::$page must be protected (as in class Main) or weaker in /var/www/html/ventas/classes/metodoPago.class.php on line 0
-[07-Jan-2026 00:26:40 America/Mexico_City] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function Util::HandleMultipages(), 3 passed in /var/www/html/ventas/classes/metodoPago.class.php on line 83 and at least 4 expected in /var/www/html/ventas/classes/util.class.php:265
-Stack trace:
-#0 /var/www/html/ventas/classes/metodoPago.class.php(83): Util->HandleMultipages()
-#1 /var/www/html/ventas/modules/metodos-pago.php(12): MetodoPago->Enumerate()
-#2 /var/www/html/ventas/index.php(149): include_once('...')
-#3 {main}
- thrown in /var/www/html/ventas/classes/util.class.php on line 265
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:45 America/Mexico_City] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function Util::HandleMultipages(), 3 passed in /var/www/html/ventas/classes/metodoPago.class.php on line 83 and at least 4 expected in /var/www/html/ventas/classes/util.class.php:265
-Stack trace:
-#0 /var/www/html/ventas/classes/metodoPago.class.php(83): Util->HandleMultipages()
-#1 /var/www/html/ventas/modules/metodos-pago.php(12): MetodoPago->Enumerate()
-#2 /var/www/html/ventas/index.php(149): include_once('...')
-#3 {main}
- thrown in /var/www/html/ventas/classes/util.class.php on line 265
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:53 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/clientes.php on line 5
-[07-Jan-2026 00:26:53 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/cliente.class.php:149
-Stack trace:
-#0 /var/www/html/ventas/modules/clientes.php(6): Cliente->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/cliente.class.php on line 149
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:26:55 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:23 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:27:25 America/Mexico_City] PHP Warning: Undefined array key "numbers" in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:27:25 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/e682fffe84dcbb3fa98ccc115451e12066cd4653.file.metodos-pago.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/bbfe3c565cd3f2f2c953eb3e23916a882ff69965.file.metodos-pago.tpl.php(33): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:28:17 America/Mexico_City] PHP Warning: Undefined array key "first" in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 27
-[07-Jan-2026 00:28:17 America/Mexico_City] PHP Warning: Undefined array key "prev" in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 30
-[07-Jan-2026 00:28:17 America/Mexico_City] PHP Warning: Undefined array key "last" in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 50
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:31:57 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/modules/usuarios-agregar.php on line 10
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Undefined variable $nomSuc in /var/www/html/ventas/modules/usuarios-agregar.php on line 124
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Undefined variable $usuarios in /var/www/html/ventas/modules/usuarios-agregar.php on line 125
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 21
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 22
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 23
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 24
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 25
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 26
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 27
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 28
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 30
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/d0649508e027639767e1537e59292e52dc25cb35.file.enumUserTypes.tpl.php on line 31
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:32:08 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b7032056f09f7f3c275f271ca640b0434330b09e.file.enumSucursales.tpl.php on line 29
-[07-Jan-2026 00:44:02 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/clientes.php on line 5
-[07-Jan-2026 00:44:02 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/cliente.class.php:149
-Stack trace:
-#0 /var/www/html/ventas/modules/clientes.php(6): Cliente->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/cliente.class.php on line 149
-[07-Jan-2026 00:45:47 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/proveedores.php on line 10
-[07-Jan-2026 00:45:47 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/proveedor.class.php:391
-Stack trace:
-#0 /var/www/html/ventas/modules/proveedores.php(11): Proveedor->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/proveedor.class.php on line 391
-[07-Jan-2026 00:45:55 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/productos.php on line 5
-[07-Jan-2026 00:45:55 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/producto.class.php:295
-Stack trace:
-#0 /var/www/html/ventas/modules/productos.php(6): Producto->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/producto.class.php on line 295
-[07-Jan-2026 00:45:59 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/proveedores.php on line 10
-[07-Jan-2026 00:45:59 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/proveedor.class.php:391
-Stack trace:
-#0 /var/www/html/ventas/modules/proveedores.php(11): Proveedor->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/proveedor.class.php on line 391
-[07-Jan-2026 00:46:12 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/productos.php on line 5
-[07-Jan-2026 00:46:12 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/producto.class.php:295
-Stack trace:
-#0 /var/www/html/ventas/modules/productos.php(6): Producto->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/producto.class.php on line 295
-[07-Jan-2026 00:46:22 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/temporadas.php on line 10
-[07-Jan-2026 00:46:22 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/temporada.class.php:62
-Stack trace:
-#0 /var/www/html/ventas/modules/temporadas.php(11): Temporada->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/temporada.class.php on line 62
-[07-Jan-2026 00:46:32 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/materiales.php on line 10
-[07-Jan-2026 00:46:32 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/material.class.php:61
-Stack trace:
-#0 /var/www/html/ventas/modules/materiales.php(11): Material->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/material.class.php on line 61
-[07-Jan-2026 00:46:46 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/cuentas-bancarias.php on line 10
-[07-Jan-2026 00:46:46 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/cuentaBancaria.class.php:83
-Stack trace:
-#0 /var/www/html/ventas/modules/cuentas-bancarias.php(11): CuentaBancaria->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/cuentaBancaria.class.php on line 83
-[07-Jan-2026 00:46:58 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/atributos.php on line 5
-[07-Jan-2026 00:46:58 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/atributo.class.php:63
-Stack trace:
-#0 /var/www/html/ventas/modules/atributos.php(6): Atributo->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/atributo.class.php on line 63
-[07-Jan-2026 00:47:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:47:14 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/d032cf6ebde534c8af270afbf0281c13d9aedf68.file.datos-generales.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/a731eada2d67702a4b0b5edde01bc21cd0e4f10a.file.datos-generales.tpl.php(33): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:47:29 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/motivos.php on line 5
-[07-Jan-2026 00:47:29 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/motivo.class.php:50
-Stack trace:
-#0 /var/www/html/ventas/modules/motivos.php(6): Motivo->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/motivo.class.php on line 50
-[07-Jan-2026 00:47:40 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:47:40 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/d032cf6ebde534c8af270afbf0281c13d9aedf68.file.datos-generales.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/a731eada2d67702a4b0b5edde01bc21cd0e4f10a.file.datos-generales.tpl.php(33): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:47:42 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/promociones.php on line 5
-[07-Jan-2026 00:47:42 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/promocion.class.php:213
-Stack trace:
-#0 /var/www/html/ventas/modules/promociones.php(6): Promocion->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/promocion.class.php on line 213
-[07-Jan-2026 00:47:50 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:47:50 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/d032cf6ebde534c8af270afbf0281c13d9aedf68.file.datos-generales.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/a731eada2d67702a4b0b5edde01bc21cd0e4f10a.file.datos-generales.tpl.php(33): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:47:52 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/bonificacion-devolucion.php on line 5
-[07-Jan-2026 00:47:52 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/politica.class.php:40
-Stack trace:
-#0 /var/www/html/ventas/modules/bonificacion-devolucion.php(6): Politica->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/politica.class.php on line 40
-[07-Jan-2026 00:48:02 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:48:02 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/d032cf6ebde534c8af270afbf0281c13d9aedf68.file.datos-generales.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/a731eada2d67702a4b0b5edde01bc21cd0e4f10a.file.datos-generales.tpl.php(33): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:48:06 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/comisiones.php on line 5
-[07-Jan-2026 00:48:06 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/comision.class.php:68
-Stack trace:
-#0 /var/www/html/ventas/modules/comisiones.php(6): Comision->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/comision.class.php on line 68
-[07-Jan-2026 00:48:16 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:48:16 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/d032cf6ebde534c8af270afbf0281c13d9aedf68.file.datos-generales.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/a731eada2d67702a4b0b5edde01bc21cd0e4f10a.file.datos-generales.tpl.php(33): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/productos-duplicados.php on line 5
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Undefined variable $sqlAdd in /var/www/html/ventas/classes/producto.class.php on line 318
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Undefined variable $pages in /var/www/html/ventas/classes/producto.class.php on line 323
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Undefined array key "msgP" in /var/www/html/ventas/modules/productos-duplicados.php on line 32
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:48:19 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/93d3d76b3a9ddd8bc707828ea335a1cdac9a63ad.file.productos-duplicados.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/81c1df1cee4c68431b8873b84f72209daf22472a.file.productos-duplicados.tpl.php(36): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:51:47 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/proveedor.class.php:391
-Stack trace:
-#0 /var/www/html/ventas/modules/proveedores.php(12): Proveedor->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/proveedor.class.php on line 391
-[07-Jan-2026 00:51:57 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/proveedor.class.php:391
-Stack trace:
-#0 /var/www/html/ventas/modules/proveedores.php(12): Proveedor->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/proveedor.class.php on line 391
-[07-Jan-2026 00:52:01 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/producto.class.php:295
-Stack trace:
-#0 /var/www/html/ventas/modules/productos.php(7): Producto->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/producto.class.php on line 295
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:50 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:57 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/producto.class.php:295
-Stack trace:
-#0 /var/www/html/ventas/modules/productos.php(7): Producto->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/producto.class.php on line 295
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:55:59 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:56:05 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/cuentaBancaria.class.php:83
-Stack trace:
-#0 /var/www/html/ventas/modules/cuentas-bancarias.php(12): CuentaBancaria->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/cuentaBancaria.class.php on line 83
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:23 America/Mexico_City] PHP Warning: Undefined array key "telefono" in /var/www/html/ventas/templates_c/6b0aca1c9bdc5ca451fffae7f560cf9e4c19e89a.file.proveedores-base.tpl.php on line 26
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:26 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/5488f24312a41144df3e3124e4197048e9bdb3be.file.atributos-valores.tpl.php on line 47
-[07-Jan-2026 00:58:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/5488f24312a41144df3e3124e4197048e9bdb3be.file.atributos-valores.tpl.php on line 47
-[07-Jan-2026 00:58:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/5488f24312a41144df3e3124e4197048e9bdb3be.file.atributos-valores.tpl.php on line 47
-[07-Jan-2026 00:58:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/5488f24312a41144df3e3124e4197048e9bdb3be.file.atributos-valores.tpl.php on line 47
-[07-Jan-2026 00:58:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/5488f24312a41144df3e3124e4197048e9bdb3be.file.atributos-valores.tpl.php on line 47
-[07-Jan-2026 00:58:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/5488f24312a41144df3e3124e4197048e9bdb3be.file.atributos-valores.tpl.php on line 47
-[07-Jan-2026 00:58:38 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/5488f24312a41144df3e3124e4197048e9bdb3be.file.atributos-valores.tpl.php on line 47
-[07-Jan-2026 00:58:43 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:58:43 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/d032cf6ebde534c8af270afbf0281c13d9aedf68.file.datos-generales.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/a731eada2d67702a4b0b5edde01bc21cd0e4f10a.file.datos-generales.tpl.php(33): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:58:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/b246a0bcfefc9f2fc5969a37e845b91f4b56bd12.file.politicas.tpl.php on line 47
-[07-Jan-2026 00:58:48 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:58:48 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/b246a0bcfefc9f2fc5969a37e845b91f4b56bd12.file.politicas.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/fb97ea987e7d6fdce550a9f1a9d1c48cdb0f0c00.file.bonificacion-devolucion.tpl.php(35): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/productos-duplicados.php on line 5
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Undefined variable $sqlAdd in /var/www/html/ventas/classes/producto.class.php on line 327
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Undefined variable $pages in /var/www/html/ventas/classes/producto.class.php on line 332
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a9320269e979be196a642c4c32c15d74383f9ac4.file.search-productos.tpl.php on line 49
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/dd134ab36e5f56989ffcafbe177bbbfc028f7b80.file.enumProdCatSearch.tpl.php on line 29
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:58:51 America/Mexico_City] PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php:24
-Stack trace:
-#0 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include()
-#1 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#2 /var/www/html/ventas/templates_c/93d3d76b3a9ddd8bc707828ea335a1cdac9a63ad.file.productos-duplicados.tpl.php(47): Smarty_Internal_Template->getRenderedTemplate()
-#3 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#4 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#5 /var/www/html/ventas/templates_c/81c1df1cee4c68431b8873b84f72209daf22472a.file.productos-duplicados.tpl.php(36): Smarty_Internal_Template->getRenderedTemplate()
-#6 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#7 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#8 /var/www/html/ventas/templates_c/70bf41642baf30444e6a2fab648bee6d25dd5d77.file.index.tpl.php(129): Smarty_Internal_Template->getRenderedTemplate()
-#9 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(405): include('...')
-#10 /var/www/html/ventas/libs/sysplugins/smarty_internal_template.php(517): Smarty_Internal_Template->renderTemplate()
-#11 /var/www/html/ventas/libs/Smarty.class.php(308): Smarty_Internal_Template->getRenderedTemplate()
-#12 /var/www/html/ventas/libs/Smarty.class.php(325): Smarty->fetch()
-#13 /var/www/html/ventas/index.php(176): Smarty->display()
-#14 {main}
- thrown in /var/www/html/ventas/templates_c/a2d84734284ccd0cf65c401208f8cbb3abc2582f.file.pages_new.tpl.php on line 24
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 00:59:53 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:00:00 America/Mexico_City] PHP Warning: Undefined array key "sucursal" in /var/www/html/ventas/templates_c/0f859fc3985b1f0c639870f0c1aa05194a5bf0fc.file.detalles-usuario.tpl.php on line 28
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:41 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:49 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:01:51 America/Mexico_City] PHP Warning: Undefined array key "type" in /var/www/html/ventas/modules/usuarios-editar.php on line 12
-[07-Jan-2026 01:01:51 America/Mexico_City] PHP Warning: Undefined variable $usuarios in /var/www/html/ventas/modules/usuarios-editar.php on line 168
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:02:54 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:03:06 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:06:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:03 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:10 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to undefined method Util::FormatDateDMMMY() in /var/www/html/ventas/modules/pedidos.php:55
-Stack trace:
-#0 /var/www/html/ventas/index.php(149): include_once()
-#1 {main}
- thrown in /var/www/html/ventas/modules/pedidos.php on line 55
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:11 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:12 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/inventario.class.php:1014
-Stack trace:
-#0 /var/www/html/ventas/modules/inventario-wizard-list.php(7): Inventario->EnumWizard()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/inventario.class.php on line 1014
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:14 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:15 America/Mexico_City] PHP Warning: Undefined array key "msgI" in /var/www/html/ventas/modules/ventas.php on line 12
-[07-Jan-2026 01:10:15 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/ventas.php on line 17
-[07-Jan-2026 01:10:15 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/venta.class.php:174
-Stack trace:
-#0 /var/www/html/ventas/modules/ventas.php(19): Venta->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/venta.class.php on line 174
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:17 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:19 America/Mexico_City] PHP Warning: Undefined array key "p" in /var/www/html/ventas/modules/envios.php on line 10
-[07-Jan-2026 01:10:20 America/Mexico_City] PHP Fatal error: Uncaught Error: Call to a member function HandleMultipages() on null in /var/www/html/ventas/classes/envio.class.php:299
-Stack trace:
-#0 /var/www/html/ventas/modules/envios.php(20): Envio->Enumerate()
-#1 /var/www/html/ventas/index.php(149): include_once('...')
-#2 {main}
- thrown in /var/www/html/ventas/classes/envio.class.php on line 299
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:22 America/Mexico_City] PHP Warning: Trying to access array offset on null in /var/www/html/ventas/templates_c/6ee39a69f93600ffc67951af38acf5d081a06bfd.file.search-usuarios.tpl.php on line 70
-[07-Jan-2026 01:10:23 America/Mexico_City] PHP Warning: Undefined array key "showAll" in /var/www/html/ventas/modules/reportes-ventas.php on line 10
-[07-Jan-2026 01:10:38 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/empresa.class.php on line 422
-[07-Jan-2026 01:10:49 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/empresa.class.php on line 422
-[07-Jan-2026 01:10:55 America/Mexico_City] PHP Warning: Undefined array key "loginKey" in /var/www/html/ventas/classes/empresa.class.php on line 422
-[07-Jan-2026 17:55:16 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 17:55:16 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 17:55:28 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 17:55:28 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 17:56:34 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 17:56:34 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 17:56:44 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 17:56:44 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 17:57:51 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
-[07-Jan-2026 17:57:51 America/Mexico_City] Base de datos ventas_nm15 no encontrada, usando fallback a master
diff --git a/templates/lists/atributos-valores-rows.tpl b/templates/lists/atributos-valores-rows.tpl
new file mode 100644
index 0000000..4accac0
--- /dev/null
+++ b/templates/lists/atributos-valores-rows.tpl
@@ -0,0 +1,12 @@
+
+{if count($item.valores)}
+ {foreach from=$item.valores item=itm key=key}
+ {if $key%2 == 0}
+ {include file="{$DOC_ROOT}/templates/items/atributos-valores-base.tpl" clase="Off"}
+ {else}
+ {include file="{$DOC_ROOT}/templates/items/atributos-valores-base.tpl" clase="On"}
+ {/if}
+ {/foreach}
+{else}
+ | Ningún registro encontrado. |
+{/if}
\ No newline at end of file
diff --git a/templates/lists/atributos-valores.tpl b/templates/lists/atributos-valores.tpl
index d8d13d5..d5d9f78 100755
--- a/templates/lists/atributos-valores.tpl
+++ b/templates/lists/atributos-valores.tpl
@@ -1,4 +1,7 @@
+
+
+
{include file="{$DOC_ROOT}/templates/items/atributos-valores-header.tpl" clase="Off"}
{if count($item.valores)}
@@ -13,4 +16,8 @@
| Ningún registro encontrado. |
{/if}
-{include file="{$DOC_ROOT}/templates/lists/pages_new2.tpl" pages=$valores.pages colspan=3}
\ No newline at end of file
+{if isset($valores) && $valores}
+ {include file="{$DOC_ROOT}/templates/lists/pages_new2.tpl" pages=$valores.pages colspan=3}
+{/if}
+
+
\ No newline at end of file
diff --git a/templates_c/067b9a951f0631648e0635480ebe2ada4ecf6402.file.datos-generales-header.tpl.php b/templates_c/067b9a951f0631648e0635480ebe2ada4ecf6402.file.datos-generales-header.tpl.php
new file mode 100644
index 0000000..7ff13e3
--- /dev/null
+++ b/templates_c/067b9a951f0631648e0635480ebe2ada4ecf6402.file.datos-generales-header.tpl.php
@@ -0,0 +1,35 @@
+
+decodeProperties(array (
+ 'file_dependency' =>
+ array (
+ '067b9a951f0631648e0635480ebe2ada4ecf6402' =>
+ array (
+ 0 => '/var/www/html/ventas/templates/items/datos-generales-header.tpl',
+ 1 => 1767836456,
+ ),
+ ),
+ 'nocache_hash' => '2056558171695f54e0cf7d53-94705125',
+ 'function' =>
+ array (
+ ),
+ 'has_nocache_code' => false,
+)); /*/%%SmartyHeaderCode%%*/?>
+
+
+