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

How can I edit the calendar view? Note: not the form but the view of the calendar labels of the project module

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
enterprisetaskcalendarview17.0
2 Odpowiedzi
1754 Widoki
Awatar
www.fdc-corporation.com

Apart from just showing the name and time I want it to show more information 

The odoo is hosted on a vps and is v17 Enterprise, if anyone knows about the customization or maybe some documentation they have found.


0
Awatar
Odrzuć
Awatar
D Enterprise
Najlepsza odpowiedź

Hi,

Add a Computed Display Field + Inherit the Calendar View

Create a new field in a custom module to compute the display label. 

from odoo import models, fields


class ProjectTask(models.Model):

    _inherit = 'project.task'


    calendar_label = fields.Char(

        string="Calendar Label",

        compute="_compute_calendar_label",

        store=False

    )


    def _compute_calendar_label(self):

        for task in self:

            priority = dict(self._fields['priority'].selection).get(task.priority, '')

            user = task.user_id.name or ''

            task.calendar_label = f"{task.name} [{priority}] - {user}"


Inherit the Calendar View

Now replace the default label ( name ) with your new computed field ( calendar_label ).


<odoo>

    <record id="project_task_calendar_custom" model="ir.ui.view">

        <field name="name">project.task.calendar.inherit</field>

        <field name="model">project.task</field>

        <field name="inherit_id" ref="project.view_task_calendar"/>

        <field name="arch" type="xml">

            <!-- Replace name field used as label -->

            <xpath expr="//field[@name='name']" position="replace">

                <field name="calendar_label"/>

            </xpath>

        </field>

    </record>

</odoo>


I hope it is of full use.

0
Awatar
Odrzuć
Awatar
Cybrosys Techno Solutions Pvt.Ltd
Najlepsza odpowiedź

Hi,

Please refer to the code below:

Python:


class ProjectTask(models.Model):

    _inherit = 'project.task'


    custom_title = fields.Char(string="Custom Calendar Title",

                               compute="_compute_custom_title")


    def _compute_custom_title(self):

        """

        Compute the custom title for calendar view display.


        This method sets the `custom_title` field by combining the task's

        stage name and task name in the format: [Stage] Task Name.

        Example:

            If a task is in stage "In Progress" and named "Fix Bug",

            the computed custom_title will be "[In Progress] Fix Bug".

        """

        for task in self:

            task.custom_title = f"[{task.stage_id.name}] {task.name}"


XML:


<record id="view_task_calendar" model="ir.ui.view">

    <field name="name">project.task.view.calendar</field>

    <field name="model">project.task</field>

    <field name="inherit_id" ref="view_task_calendar"/>

    <field name="mode">primary</field>

    <field name="arch" type="xml">

        <xpath expr="//calendar" position="attributes">

            <attribute name="name">custom_title</attribute>

        </xpath>

    </field>

</record>


Hope it helps.

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ść
Payment method in invoice Rozwiązane
enterprise Payment-Methods 17.0
Awatar
Awatar
Awatar
3
wrz 25
6570
How to link to a task in the calendar view (from the project.task model)
task calendarview calendar_view
Awatar
Awatar
1
lut 23
4190
Custom colors in task calendar view
task color calendarview
Awatar
0
wrz 20
4342
Missing menu and breadcrumb on project task opened from email
project community task 17.0
Awatar
0
paź 24
1362
Optional Products not showing when adding product to cart
enterprise products webshop 17.0
Awatar
Awatar
Awatar
Awatar
3
wrz 24
3140
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