Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Bricoleur
    • Matériel informatique & support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Parcourir toutes les industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenir partenaire
    • Services pour partenaires
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Client Action using Owl Component - how do I get the control panel to show?

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
owlv14
10072 Vues
Avatar
kevin lall

Hi there, I am currently using Odoo 14 to try out the Owl framework, I am able to get my component to work via the client action with the ComponentWrapper.

my question is how do I get the control panel to show (breadcrumbs, search view)

I spend a few days trying to figure this out, I went over example code in Odoo I am pretty much stuck


here is my code 


odoo.define("todo", function (require) {

  "use strict";


  const AbstractAction = require("web.AbstractAction");

  const {

    ComponentWrapper,

    WidgetAdapterMixin,

  } = require("web.OwlCompatibility");

  const core = require("web.core");


  const { Component, tags } = owl;

  const { useRef, useState } = owl.hooks;


  class Task extends Component {

    toggleTask() {

      this.trigger("toggle-task", { id: this.props.task.id }); 

    }


    deleteTask() {

      this.trigger("delete-task", { id: this.props.task.id });

    }

  }

  Task.template = tags.xml`

  <div class="task" t-att-class="props.task.isCompleted ? 'done' : ''">

    <input type="checkbox" t-att-checked="props.task.isCompleted" t-on-click="toggleTask"/>

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

    <span class="delete" t-on-click="deleteTask">🗑</span>

  </div>

  `;

  Task.props = ["task"];


  class Todo extends Component {

    constructor() {


      super(...arguments);

    }


    tasks = useState([]);

    inputRef = useRef("add-input");


    mounted() {

      this.inputRef.el.focus();

    }


    async willStart() {

      const fields = ["id", "name", "completed"];

      const tasks = await this.env.services.rpc({

        model: "todo",

        method: "search_read",

        kwargs: {

          fields,

        },

      });

      tasks.map((task) =>

        this.tasks.push({

          id: task.id,

          title: task.name,

          isCompleted: task.completed,

        })

      );

    }


    async addTask(ev) {

      // 13 is keycode for ENTER

      if (ev.keyCode === 13) {

        const title = ev.target.value.trim();

        ev.target.value = "";

        if (title) {

          const newTask = await this.env.services.rpc({

            model: "todo",

            method: "create",

            args: [

              {

                name: title,

                completed: false,

              },

            ],

          });

          this.tasks.push({

            id: newTask,

            title: title,

            isCompleted: false,

          });

        }

      }

    }


    async toggleTask(ev) {

      const task = this.tasks.find((t) => t.id === ev.detail.id);

      task.isCompleted = !task.isCompleted;

      await this.env.services.rpc({

        model: "todo",

        method: "write",

        args: [

          [task.id],

          {

            completed: task.isCompleted,

          },

        ],

      });

    }


    async deleteTask(ev) {

      const index = this.tasks.findIndex((t) => t.id === ev.detail.id);

      this.tasks.splice(index, 1);

      await this.env.services.rpc({

        model: "todo",

        method: "unlink",

        args: [[ev.detail.id]],

      });

    }

  }


  Todo.components = { Task };


  Todo.template = tags.xml`

    <div>

      <div class="o_form_view">

        <div class="o_form_sheet_bg">

          <div class="o_form_sheet">

            <div class="todo-app">

              <input placeholder="Enter a new task" t-on-keyup="addTask" t-ref="add-input"/>

              <div class="task-list" t-on-toggle-task="toggleTask" t-on-delete-task="deleteTask">

                <t t-foreach="tasks" t-as="task" t-key="task.id">

                  <Task task="task"/>

                </t>

              </div>

            </div>

          </div>

        </div>

      </div>

    </div>

  `;


  const ClientAction = AbstractAction.extend(WidgetAdapterMixin, {

    start() {

      const component = new ComponentWrapper(this, Todo);

      return component.mount(this.el.querySelector(".o_content"));

    },

  });


  core.action_registry.add("todo_client_action", ClientAction);

  return ClientAction;

});


I am calling the action from a button 

def open_client_action(self):
print('open action called')
return {
'res_model': 'todo',
'type': 'ir.actions.client',
'tag': 'todo_client_action',
}




0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
How can i extend constructor of a class in odoo14?
javascript owl v14
Avatar
0
oct. 22
571
Inherit OWL JS
js owl v14
Avatar
Avatar
1
août 21
5453
How to define a qweb template in owl (Odoo14)
qweb template view owl v14
Avatar
0
mai 21
5077
How to replace JS class in Odoo 14?
JS owl v14
Avatar
0
déc. 20
4806
Attached PDF file is not formatted properly
v14
Avatar
Avatar
1
déc. 25
428
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenir partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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