Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Custom code: Can clicking on a Task with Subtasks (in Kanban View) open another Kanban with the Subtasks?

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
owlOWL
2 Risposte
2137 Visualizzazioni
Avatar
Santiago Carbonell Forment

Hi,


I have a question about how to manage a project requirement:


A client uses the projects module in Odoo 16 with tasks and subtasks. They asked me as a requirement that, in the task kanban, when clicking on a task that has subtasks, instead of opening the form with the task data, a Kanban with the subtasks of the parent task should reopen.


I understand that this requirement must be implemented with Owl, but I can't get it to work. In fact, I can't inherit the Kanban view from the tasks and change the on-click behavior to change the functionality. Do you have any examples of how to inherit a Kanban and change the on-click using Owl?


Thank you


Best regards.

0
Avatar
Abbandona
Avatar
Sufiyan Muzaffar Shaikh (smsh)
Risposta migliore

Hello Santiago Carbonell Forment,


You cannot inherit the KanbanRecord template directly because it is an OWL template.

This means you cannot inherit it using a regular: <odoo><template inherit_id="..."></template></odoo> since that only works for backend QWeb views.


✅ Instead, you can either directly replace the template or patch the existing onClick function.


I’ve attached the code which directly opens the Kanban view of Subtasks, you just have change the module name.


```import { patch } from '@web/core/utils/patch';

import { KanbanRecord } from '@web/views/kanban/kanban_record';


export const CANCEL_GLOBAL_CLICK = ["a", ".dropdown", ".oe_kanban_action", "[data-bs-toggle]"].join(

    ","

);

patch(KanbanRecord.prototype, 'my_module.KanbanRecord', {

        onGlobalClick(ev) {

            const { archInfo, forceGlobalClick, openRecord, record } = this.props;

            console.log("Called", record.data)

            if (record.data.child_text != false) {

                this.env.services.action.doAction({

                    type: 'ir.actions.act_window',

                    name: 'Subtasks',

                    res_model: 'project.task',

                    domain: [['parent_id', '=', record.resId]],

                    view_mode: 'kanban',

                    views: [[false, 'kanban']],

                    target: 'current',

                });

            }

            else {

                if (ev.target.closest(CANCEL_GLOBAL_CLICK)) {

                    return;

                }

                if (!forceGlobalClick && archInfo.openAction) {

                    this.action.doActionButton({

                        name: archInfo.openAction.action,

                        type: archInfo.openAction.type,

                        resModel: record.resModel,

                        resId: record.resId,

                        resIds: record.resIds,

                        context: record.context,

                        onClose: async () => {

                            await record.model.root.load();

                            record.model.notify();

                        },

                    });

                } else if (forceGlobalClick || this.allowGlobalClick) {

                    openRecord(record);

                }

            }

        },


}); ```

⚠️ Please note: this code is only for reference purposes.

If you patch the onClick method, it will change the behavior across all kanban views in Odoo, so you need to handle it carefully and test every case where a kanban view is used.


❓ If you implement this then how user will open the parent task?

0
Avatar
Abbandona
Santiago Carbonell Forment
Autore

Hello Sufiyan Muzaffar Shaikh

I haven't written to you before because I had to take a rushed Owl course in Odoo because understanding this whole new environment is complicated, and I wanted to understand what you sent me.

Congratulations! This is by far the best answer I've received, and now I think I understand. In fact, the problem isn't the projects module, but rather that the onclick is actually in the base web module, and it's from there that you have to inherit. Also, you have to change that onGlobalClick method, which I've been looking for, and not just onclick. It's huge and indeed complicated to update because it actually affects many modules such as CRM, Project, HR, Employee, etc.

I don't know if there's a simple way with parent or super to have the onGlobalClick inherit everything from the parent module, and I just add my code, although I don't think it would work well.

Thinking about it, it might be simpler to use doubleClick or rightClick instead of onGlobalClick, which I don't think are used, and detect the model using, for example, record.data.tag_ids.parentRecord.resModel, where I can see if it's a project or a task and decide based on that.

I'm a little new to Owl. Do you know if I can add a rightClick event to do this?

Thank you very much.

Avatar
D Enterprise
Risposta migliore

Here,

Create a JS File : project_task_kanban_patch.js

/** @odoo -module **/ import { patch } from "@web/core/utils/patch" ; import { KanbanRecord } from "@web/views/kanban/kanban_record/kanban_record" ; import { useService } from "@web/core/utils/hooks" ; patch ( KanbanRecord . prototype , { setup ( ) { super . setup (); this . action = useService ( "action" ); }, async onRecordClick ( ev ) { const record = this . props . record . data ; // If task has subtasks, open them in Kanban if ( this . props . record . model === "project.task" && record. child_ids . length > 0 ) { house. preventDefault (); await this . action . doAction ({ type : "ir.actions.act_window" , name : `Subtasks of ${record.name} `, res_model : "project.task" , view_mode : "kanban,form" , domain : [[ "id" , "in" , record. child_ids ]], context : { default_parent_id : record. id }, target : "current" , }); return ; } // Otherwise, use default behavior await super . onRecordClick (home); }, });

Include in Manifest

In your __manifest__.py :

"assets" : { "web.assets_backend" : [ "your_module/static/src/js/project_task_kanban_patch.js" , ], },

Ensure child_ids is in the Kanban view

Add this in XML:

<record id = "project.task.kanban.view.inherit" model="ir.ui.view"> <field name = "model" >project.task </field> <field name = "inherit_id" ref ="project.view_task_kanban"/> <field name = "arch" type = "xml"> <field name = "name" position = "before"> <field name = "child_ids"/> </field> </field> </record> ​

i hope it is usefull

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
Alter existing owl app
owl OWL
Avatar
Avatar
1
mar 24
2388
Odoo owl
owl OWL
Avatar
0
ott 22
2585
How to inherit owl template and qweb in custom module V17.0? Risolto
manufacturing owl OWL
Avatar
Avatar
Avatar
3
mag 25
5831
Patching Owl Service Function
javascript owl OWL
Avatar
Avatar
Avatar
3
ott 23
6575
Skills needed for Odoo OWL Development ?
OWL
Avatar
Avatar
Avatar
2
set 25
2660
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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