Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

"Ghost" cache - Stubborn problem in Odoo Custom development

Subscriure's

Get notified when there's activity on this post

This question has been flagged
odoo19
576 Vistes
Avatar
Hein Htet Aung

I'm trying to change the default pop-up's UI of Odoo POS, as a part of developing custom module for a mobile shop using Odoo 19. The Point of Sale's OWL (Odoo Web Library) template has been overridden to make the pop-up clearer for a mobile shop.


The code and the file placement are correct. All possible causes have also been tried to solve. 

  1. Watchdog' module installed
  2. Went to the Point of Sale and did a Hard Reload (Cmd + Shift + R) to clear the browser's old files.
  3. Forced-Clear the Browser's Local Database (Clicked the "Application->Storage -> Clear site data" button from the Developer Tools)
  4. Disabled the server cache (--dev=all)
  5. Clicked "Regenerate Asset Bundles" for solving "stuck" frontend caches.
  6. Deleted the Manifest's Cache (the compiled Python files (__pycache__)
  7. Cleared Entire Browser Cache (both "Cookies and Site Data" and "Cached Web Content" are checked, and clicked Clear)
  8. Used the Developer Tools to clear cache (Storage tab->Indexed DB, right-click on localhost entry, and "Delete Database"). With the dev tools still open, did a Hard Reload.
  9. Restarted with All Flags (.../odoo.conf --dev=all -u mobile_shop)

Seems like the Odoo cache is still holding on to the old files, despite our best efforts. Thank you in advance for your suggestions. 


Here is our mobile_shop/__manifest__.py

    # Module dependencies

    'depends': [

        'base',

        'sale_management',

        'purchase',

        'stock',

        'point_of_sale',

        'mail',  # For chatter on repairs, etc.

    ],


  


    # Data files (we'll add views here)

    'data': [

         'security/ir.model.access.csv',

         'views/imei_history_views.xml',

         'views/stock_lot_views.xml',

         'views/product_template_views.xml',

    ],


    # Odoo will now be able to read this key

    'assets': {

        'point_of_sale.assets': [

            'mobile_shop/static/src/xml/pos_lot_popup.xml',

            'mobile_shop/static/src/css/pos.css',

        ],

    },


    'installable': True,

    'application': True,

    'auto_install': False,

}


File: mobile_shop/static/src/xml/pos_lot_popup.xml

<?xml version="1.0" encoding="UTF-8"?>

<templates id="template" xml:space="preserve">


    <t t-name="point_of_sale.EditListPopup" t-inherit="point_of_sale.EditListPopup" t-inherit-mode="extension" owl="1">

       

        <xpath expr="//h1[has-class('popup-title')]" position="replace">

            <h1 class="popup-title">

                <t t-if="props.title == 'Lot/Serial number(s) required'">

                    Enter IMEI Number(s) for <t t-esc="props.product.display_name"/>

                </t>

                <t t-else="">

                    <t t-esc="props.title"/>

                </t>

            </h1>

        </xpath>


        <xpath expr="//div[has-class('popup-body')]" position="inside">

            <p class="popup-help-text">

                Scan or type each IMEI. Press Enter after each one.

            </p>

        </xpath>


    </t>


</templates>

 

0
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
Upgrade to Odoo 19 Solved
upgrade odoo19
Avatar
Avatar
1
d’oct. 25
3697
LLM Model from Default Agent odoo 19
odoo19 ia
Avatar
Avatar
Avatar
2
d’oct. 25
601
Why can't I use Google Gemini to create AI fields in Odoo 19?
AI odoo19
Avatar
0
d’oct. 25
1164
odoo 16 saas
odoo18 odoo19
Avatar
0
de jul. 23
4
Odoo Default Map View
javascript map odoo19
Avatar
0
de nov. 25
126
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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