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 create a new module and iframe inside each menu?

Suscribirse

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

Se marcó esta pregunta
newmoduleiframeodoo16features
1 Responder
48760 Vistas
Avatar
Jeffrey

Hi Guys,

I am trying to create a new module, which will have different menus, inside different menus, different iframe will be appeared.

This is my code which is not working, can anybody tell me the correct way to get what I want? Thank you!

PS: wasn't able to paste my current code here properly, command/image/link are not working, please help.

update 1:

I successfully added the iframe under the menu now, but every time I select to another module and then go back to the iframe under the menu, it will refresh, how to make iframe remember the status during switching modules? Thanks.

​​
​​​ ​

0
Avatar
Descartar
Avatar
LandLogic IT s.n.c.
Mejor respuesta

To create a new Odoo module with different menus containing iframes, follow these steps. Additionally, we'll address how to maintain the iframe state during module switches.

1. Module Creation Basics

a. Folder Structure

Create the following directory structure for your custom module:

custom_module/
├── __init__.py
├── __manifest__.py
├── models/
│   ├── __init__.py
├── views/
│   ├── custom_module_views.xml
│   ├── custom_module_menus.xml

2. Define __manifest__.py

This file specifies the metadata for your module:

{
    'name': 'Custom Iframe Module',
    'version': '16.0.1.0',
    'summary': 'A module to add menus with iframes',
    'description': 'This module adds menus that display specific iframes.',
    'author': 'Your Name',
    'website': 'https://yourwebsite.com',
    'category': 'Custom',
    'depends': ['base'],
    'data': [
        'views/custom_module_menus.xml',
        'views/custom_module_views.xml',
    ],
    'installable': True,
    'application': True,
    'license': 'LGPL-3',
}

3. Add Menus in custom_module_menus.xml

Define menus and link them to actions for the iframe views:

<odoo>
    <menuitem id="menu_custom_module" name="Custom Module" sequence="10" />
    <menuitem id="menu_iframe_1" name="Iframe 1" parent="menu_custom_module" action="action_iframe_1" sequence="20" />
    <menuitem id="menu_iframe_2" name="Iframe 2" parent="menu_custom_module" action="action_iframe_2" sequence="30" />
</odoo>

4. Define Views with Iframes in custom_module_views.xml

Here’s an example of how to embed iframes:

<odoo>
    <!-- Action for Iframe 1 -->
    <record id="action_iframe_1" model="ir.actions.act_window">
        <field name="name">Iframe 1</field>
        <field name="res_model">custom.module.iframe</field>
        <field name="view_mode">form</field>
        <field name="target">inline</field>
        <field name="context">{'iframe_url': 'https://example.com/page1'}</field>
    </record>

    <!-- Action for Iframe 2 -->
    <record id="action_iframe_2" model="ir.actions.act_window">
        <field name="name">Iframe 2</field>
        <field name="res_model">custom.module.iframe</field>
        <field name="view_mode">form</field>
        <field name="target">inline</field>
        <field name="context">{'iframe_url': 'https://example.com/page2'}</field>
    </record>

    <!-- Form View to Display the Iframe -->
    <record id="view_custom_module_form" model="ir.ui.view">
        <field name="name">custom.module.form</field>
        <field name="model">custom.module.iframe</field>
        <field name="arch" type="xml">
            <form>
                <sheet>
                    <iframe style="width: 100%; height: 800px;" src="javascript:void(0);" t-att-src="context.get('iframe_url')"/>
                </sheet>
            </form>
        </field>
    </record>
</odoo>

5. Define the Model in models/__init__.py

For a simple iframe display, you don’t need a complex model, but you can define a dummy model:

from . import models

6. Handle State Persistence

By default, the iframe will refresh when navigating back to its menu. To preserve its state:

  1. Use Local Storage in JavaScript: Extend the web client to save and restore the iframe state.
    Create a file static/src/js/custom_iframe.js:
    odoo.define('custom_module.iframe_state', function (require) {
        "use strict";
    
        const AbstractAction = require('web.AbstractAction');
    
        const CustomIframe = AbstractAction.extend({
            start: function () {
                const iframeElement = this.$('iframe');
                const urlKey = this.context.iframe_url;
    
                // Restore saved state
                const savedState = localStorage.getItem(urlKey);
                if (savedState) {
                    iframeElement.attr('src', savedState);
                }
    
                // Save state on navigation
                iframeElement.on('load', function () {
                    localStorage.setItem(urlKey, iframeElement.attr('src'));
                });
    
                return this._super.apply(this, arguments);
            }
        });
    
        return CustomIframe;
    });
    
  2. Include the Script in the Manifest: Add this JavaScript file to the module’s assets:
    'assets': {
        'web.assets_backend': [
            'custom_module/static/src/js/custom_iframe.js',
        ],
    },
    

7. Restart and Install the Module

  1. Restart your Odoo server:
    sudo service odoo restart
    
  2. Go to Apps, update the app list, and install the module.

8. Test and Debug

  • Navigate to the custom menus and confirm the iframes display the correct content.
  • Switch between modules and ensure the iframe remembers its state.

With this implementation, you have a scalable and stateful iframe module in Odoo 16.

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
How to write Token into cookie in <iframe>
token iframe OWL odoo16features
Avatar
0
mar 23
2684
Issue of new module now showing
development newmodule windows11 odoo16features
Avatar
Avatar
2
ene 24
4090
DeprecationWarning: The longpolling-port is a deprecated alias to the gevent-port option, please use the latter Resuelto
odoo16features
Avatar
Avatar
Avatar
Avatar
Avatar
5
sept 25
24379
How to Add wizard under print button inside the form view.
odoo16features
Avatar
Avatar
Avatar
Avatar
3
ago 25
3728
How to add @api.onchange in _get_view() method odoo 16
odoo16features
Avatar
Avatar
1
may 25
3614
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