Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

How to fix TypeError: Cannot convert undefined or null to object

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
javascript18.0
1 Responder
6283 Vistas
Avatar
Omar El Zaatari

Hello, I'm trying to integrate an open source odoo 16 module that I found online in Odoo 18 but I'm receiving the following error in the developer console of chrome.

web.assets_web.min.js:17 Uncaught Error: Error while loading "@datetime_calendar/components/datetime_calendar":
TypeError: Cannot convert undefined or null to object
    at ModuleLoader.startModule (web.assets_web.min.js:17:225)
    at ModuleLoader.startModules (web.assets_web.min.js:16:57)
    at ModuleLoader.addJob (web.assets_web.min.js:13:39)
    at ModuleLoader.define (web.assets_web.min.js:12:127)
    at web.assets_web.min.js:20259:6

And here's the code:

/* @odoo-module */

import { dateField, DateTimeField } from "@web/views/fields/datetime/datetime_field";import { patch } from "@web/core/utils/patch";const { DateTime } = luxon;const { useState } = owl;

console.log(DateTimeField);

function setCalendar(date, calendar, format = DateTime.DATE_FULL) { console.log("setCalendar called with:", date, calendar); if (!date) return ''; const luxonDate = DateTime.fromISO(date); if (!luxonDate.isValid) return ''; return luxonDate.reconfigure({ outputCalendar: calendar }).toLocaleString(format);}

patch(dateField.prototype, { setup() { this._super?.(); console.log("setup: Value of this.props.value:", this.props.value);

this.calendar = useState({ 'hebrew': setCalendar(this.props.value || DateTime.now().toISO(), "hebrew"), 'islamic': setCalendar(this.props.value || DateTime.now().toISO(), "islamic"), }); },

onDateTimeChanged(date) { this._super?.(date); this.calendar.islamic = setCalendar(date, "islamic"); },

get formattedValue() { return this.isDateTime ? setCalendar(this.props.value, "islamic", DateTime.DATETIME_MED) : setCalendar(this.props.value, "islamic"); },});

patch(DateTimeField.prototype, { setup() { this._super?.(); console.log("setup: Value of this.props.value:", this.props.value);

this.calendar = useState({ 'hebrew': setCalendar(this.props.value || DateTime.now().toISO(), "hebrew"), 'islamic': setCalendar(this.props.value || DateTime.now().toISO(), "islamic"), }); },

onDateTimeChanged(date) { this._super?.(date); this.calendar.islamic = setCalendar(date, "islamic"); },

get formattedValue() { return setCalendar(this.props.value, "islamic"); },});

Why is this error showing, and how can I fix it?
Thank you!

0
Avatar
Descartar
Avatar
Gracious Joseph
Mejor respuesta

The error TypeError: Cannot convert undefined or null to object typically occurs because an object or property you're trying to use in your code is either undefined or null. Based on the provided code and error message, here's a detailed analysis and fix for the issue:

Root Cause

The error arises when the patch function tries to apply a patch to dateField.prototype or DateTimeField.prototype, but one or both of these are undefined or improperly imported in your module.

The problem seems to stem from this line:

javascriptCopy codeimport { dateField, DateTimeField } from "@web/views/fields/datetime/datetime_field";
  • Odoo 18 (or 16) may not define dateField or DateTimeField as exported members in the module @web/views/fields/datetime/datetime_field. This means you're importing something that does not exist or has changed in the newer version.

Steps to Fix

1. Check the Imports

Ensure the imports match the actual exported objects in @web/views/fields/datetime/datetime_field. Check the source code of this module to confirm whether dateField and DateTimeField are available.

  • You can inspect Odoo’s source code for this module or log the imported objects:
    javascriptCopy codeimport * as datetimeField from "@web/views/fields/datetime/datetime_field";
    console.log(datetimeField);
    
  • If dateField or DateTimeField is undefined, it means these are not part of the module's exports.

2. Update the Module Path or Import Statement

In newer Odoo versions, there might be changes in the structure of the module. Check if dateField or DateTimeField is located in another module. For instance:

javascriptCopy codeimport { DateTimeField } from "@web/views/fields/fields";

If dateField does not exist, you can drop it from your imports.

3. Ensure Luxon Is Properly Imported

Ensure that the luxon library is available in your environment and properly imported:

javascriptCopy codeimport { DateTime } from "luxon";

Odoo typically includes Luxon in its dependencies, but verify this by logging DateTime:

javascriptCopy codeconsole.log(DateTime);

If DateTime is undefined, install Luxon in your development environment:

bashCopy codenpm install luxon

4. Update the patch Function Calls

The patch function attempts to extend the prototypes of dateField and DateTimeField. If either is undefined, it will throw an error.

To prevent this error, add defensive checks before applying patches:

javascriptCopy codeif (dateField) {
    patch(dateField.prototype, {
        setup() {
            this._super?.();
            console.log("setup: Value of this.props.value:", this.props.value);

            this.calendar = useState({
                'hebrew': setCalendar(this.props.value || DateTime.now().toISO(), "hebrew"),
                'islamic': setCalendar(this.props.value || DateTime.now().toISO(), "islamic"),
            });
        },

        onDateTimeChanged(date) {
            this._super?.(date);
            this.calendar.islamic = setCalendar(date, "islamic");
        },

        get formattedValue() {
            return this.isDateTime
                ? setCalendar(this.props.value, "islamic", DateTime.DATETIME_MED)
                : setCalendar(this.props.value, "islamic");
        },
    });
}

if (DateTimeField) {
    patch(DateTimeField.prototype, {
        setup() {
            this._super?.();
            console.log("setup: Value of this.props.value:", this.props.value);

            this.calendar = useState({
                'hebrew': setCalendar(this.props.value || DateTime.now().toISO(), "hebrew"),
                'islamic': setCalendar(this.props.value || DateTime.now().toISO(), "islamic"),
            });
        },

        onDateTimeChanged(date) {
            this._super?.(date);
            this.calendar.islamic = setCalendar(date, "islamic");
        },

        get formattedValue() {
            return setCalendar(this.props.value, "islamic");
        },
    });
}

This ensures the patch is only applied when the target object exists.


5. Debugging Missing Objects

If dateField or DateTimeField is completely missing from Odoo 18, it may have been deprecated or replaced. In this case:

  1. Search the Odoo source code for similar objects.
  2. Update your module to patch the replacement objects or write a custom implementation.

Conclusion

Here’s the key takeaway:

  • Ensure dateField and DateTimeField exist in your version of Odoo.
  • Use defensive programming (e.g., checks for undefined) when applying patches.
  • Verify dependencies like luxon are correctly installed and accessible.

0
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
Cannot import @website_sale/js/utils
javascript
Avatar
Avatar
2
nov 25
556
How To Hide Action Report By Picking Type Code ?
18.0
Avatar
Avatar
Avatar
3
nov 25
538
How do I set up budget management / planning Resuelto
18.0
Avatar
Avatar
2
ago 25
1069
Cómo cerrar una transferencia interna al recibirla desde la vista de código de barras stock.picking
javascript
Avatar
0
jul 25
1118
Why use the Lazy Translation function _lt()
javascript
Avatar
Avatar
1
jul 25
6407
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now