Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

How to create a new module and iframe inside each menu?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
newmoduleiframeodoo16features
1 Răspunde
48769 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
LandLogic IT s.n.c.
Cel mai bun răspuns

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
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How to write Token into cookie in <iframe>
token iframe OWL odoo16features
Imagine profil
0
mar. 23
2686
Issue of new module now showing
development newmodule windows11 odoo16features
Imagine profil
Imagine profil
2
ian. 24
4091
DeprecationWarning: The longpolling-port is a deprecated alias to the gevent-port option, please use the latter Rezolvat
odoo16features
Imagine profil
Imagine profil
Imagine profil
Imagine profil
Imagine profil
5
sept. 25
24396
How to Add wizard under print button inside the form view.
odoo16features
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
aug. 25
3730
How to add @api.onchange in _get_view() method odoo 16
odoo16features
Imagine profil
Imagine profil
1
mai 25
3620
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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