Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

Custom Graph Widget

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
OWLv18
1723 Widoki
Awatar
Shreya Doodipala

I'm trying to make a custom graph widget that creates a bar chart from a JSON.

model file:

class CrmLead(models.Model):

    _inherit = 'crm.lead'

​

​graph_json = fields.Text(compute='_compute_raw_duration')


​def _compute_raw_duration(self):

        Stage = self.env['crm.stage'].search([])  # get all stages

        for record in self:

            # Get the original duration tracking (e.g., {"15": 71, "19": 85406})

            duration_dict = record.duration_tracking or {}


            # Initialize with all stage names and 0 durations

            mapped_duration = {stage.name: 0 for stage in Stage}


            # Add actual durations for stages that exist

            for stage_id_str, duration in duration_dict.items():

                try:

                    stage_id = int(stage_id_str)

                    stage = Stage.filtered(lambda s: s.id == stage_id)

                    if stage:

                        mapped_duration[stage.name] = duration

                    else:

                        mapped_duration[f"Unknown Stage ({stage_id})"] = duration

                except ValueError:

                    mapped_duration[f"Invalid Stage ID ({stage_id_str})"] = duration


            # Store the result

            record.graph_json = json.dumps(mapped_duration)

custom_crm/static/src/xml/graph_widget_template.xml

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

  <templates xml:space="preserve">

    <t t-name="custom_crm.GraphWidget">

      <canvas t-ref="canvas" width="400" height="200"></canvas>

    </t>

  </templates>

custom_crm/static/src/js/graph_widget.js

/** @odoo-module **/


import { Component, useRef } from "@odoo/owl";

import { registry } from "@web/core/registry";

import { loadJS } from "@web/core/assets";


console.log("✅ graph_widget.js JS loaded")


class GraphWidget extends Component {

    setup() {

        this.canvasRef = useRef("canvas");

        console.log("setup done")

    }

    async willStart() {

        await loadJS("/web/static/lib/Chart/Chart.js");

        console.log("✅ Chart.js loaded successfully");

    }


    mounted() {

        console.log("✅ GraphWidget mounted");


        const jsonString = this.props.record.data.graph_json || '{}';

        console.log("Raw JSON:", jsonString);  

        const data = JSON.parse(jsonString);


        const labels = Object.keys(data);

        const values = Object.values(data);


        //const ctx = this.refs.canvas.getContext('2d');

        const ctx = this.canvasRef.el.getContext('2d');

        if (!ctx) {

            console.warn("Canvas not found");

            return;

        }


        new Chart(ctx, {

            type: 'bar',

            data: {

                labels: labels,

                datasets: [{

                    label: 'Stage Time (s)',

                    data: values,

                    backgroundColor: 'rgba(54, 162, 235, 0.6)',

                    borderColor: 'rgba(54, 162, 235, 1)',

                    borderWidth: 1

                }]

            },

            options: {

                scales: {

                    y: { beginAtZero: true }

                }

            }

        });

    }


    static template = "custom_crm.GraphWidget";

}


registry.category("fields").add("json_graph", {

    component: GraphWidget,

    supportedTypes: ["Text"],

});

  • The canvas is present in the view, but there is no graph.
  • The console has the following messages only:

​✅ graph_widget.js JS loaded

​setup done

0
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
[✅ SOLVED] How to get the current user id from a patched method of mail.Activity OWL component ?
OWL v18
Awatar
Awatar
1
maj 25
2542
Change Sign & Pay Button on Quotation E-mails
v18
Awatar
Awatar
Awatar
Awatar
3
lis 25
364
Problem including JS asset in v18
v18
Awatar
Awatar
Awatar
3
lis 25
8432
Is it possible to sell on credit directly at the point of sale and leave the order pending payment?
v18
Awatar
Awatar
2
wrz 25
768
Skills needed for Odoo OWL Development ?
OWL
Awatar
Awatar
Awatar
2
wrz 25
2661
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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