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

Select all records of a group in list view

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
listviewgroupbygrouped_fieldsv18CommunityEdition
3 Odpowiedzi
1514 Widoki
Awatar
Shreya Doodipala

I want to be able to select all records of a group in the list view (with a checkbox), similar to the current way to select all records visible?

How can I do this? OR
Are there any free modules online for this functionality?

Odoo v18 Community Edition

0
Awatar
Odrzuć
Awatar
Shreya Doodipala
Autor Najlepsza odpowiedź

The following code has worked for me:

class GroupSelectableListRenderer extends ListRenderer {

    /**

     * Toggles the selection of all rows within a group.

     * @param {Object} group - The group node (representing the group header data).

     * @param {boolean} checked - Whether the rows should be checked or unchecked.

     */

    toggleGroupRows(group, checked) {

        if (!Array.isArray(group.children)) {

            return;

        }


        for (const item of group.children) {

            // Ensure we are only selecting actual records, not other nested group nodes and that the selection state actually needs to change.

            if (item.id && this.props.isSelected(item.id) !== checked) {

                this.props.selectRow(item, checked);

            }

        }

    }


    /**

     * Overrides the getGroupRow method to add the group selection checkbox.

     * @param {Object} node - The group node.

     * @param {number} groupLevel - The nesting level of the group.

     * @returns {Object} The VNode representing the group row.

     */

    getGroupRow(node, groupLevel) {

        // Get the original group row VNode from the parent class.

        // This call is crucial as it sets up the basic structure and potentially the default click handlers for expansion/collapse.

        const row = super.getGroupRow(node, groupLevel);


        // Find the <td> element that contains the group label. This is typically the first <td> in the group row.

        const labelCell = row.children.find(child => child.tag === "td");


        if (labelCell) {

            // Create the checkbox VNode.

            const checkboxVNode = {

                tag: "input",

                attrs: {

                    type: "checkbox",

                    class: "o_group_checkbox form-check-input", // Added form-check-input for Odoo styling

                    style: "margin-right: 8px;",

                },

                on: {

                    click: ev => {

                        // Prevent this click from bubbling up to the labelCell's or row's default click handler (which would toggle the group).

                        ev.stopPropagation();

                    },

                    change: ev => this.toggleGroupRows(node, ev.target.checked),

                },

            };


            // Insert the checkbox at the beginning of the label cell's content. We use unshift to place it before the group name.

            if (Array.isArray(labelCell.children)) {

                labelCell.children.unshift(checkboxVNode);

            } else {

                // If labelCell.children is not an array (e.g., it's just a string), we need to wrap the original content and then add the checkbox.

                const originalContent = labelCell.children;

                labelCell.children = [checkboxVNode, originalContent];

            }


            // The `row` VNode itself has an `onClick` property if the base ListRenderer adds it to the row directly. Let's try to preserve/augment that.

            const originalRowOnClick = row.on && row.on.click;


            row.on = {

                ...(row.on || {}), // Preserve other existing event handlers on the row

                click: ev => {

                    // If the click originated from our checkbox, do nothing here.

                    // The checkbox's own `stopPropagation` should already prevent this.

                    if (ev.target.classList.contains("o_group_checkbox")) {

                        return;

                    }


                    // Call the original group toggle handler if it exists.

                    // This is the cleanest way to ensure default behavior is preserved.

                    if (originalRowOnClick) {

                        originalRowOnClick(ev);

                    } else {

                        // Fallback: If no original handler, we manually toggle the group.

                        // The ListModel has a method to toggle group expansion.

                        // This assumes `this.props.list` is the ListModel instance.

                        // The `toggleGroup` method of the ListModel expects the group node.

                        // This is a more direct way to ensure the group state changes.

                        this.props.list.toggleGroup(node);

                    }

                },

            };

        }


        return row;

    }

}


const CustomListView = registry.category("views").get("list");

registry.category("views").add("group_select_list", {

    ...CustomListView,

    Renderer: GroupSelectableListRenderer,

});

// add js_class = "group_select_list" in the <list> tag of whichever list needs to be Group Selectable

// OR add <field name="context">{'view_type': 'group_select_list'}</field> to the action definition

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

Hi,

    By default, Odoo 18 Community does not support selecting all records in a group with one checkbox.


    You can try a free module made by the Odoo Community Association (OCA) to improve selection.


    Module: List Range Selection(web_listview_range_select) – https://apps.odoo.com/apps/modules/16.0/web_listview_range_select


    This module lets you select multiple rows using Shift + Click, even in grouped list views.


    It does not add a checkbox to group headers, but makes bulk selection easier.


    It is made for Odoo 16, but you can test it in Odoo 18---it often works without issues.



Hope it helps.

0
Awatar
Odrzuć
Awatar
D Enterprise
Najlepsza odpowiedź

hii,

Create a module named group_select_checkbox:
__manifest__.py

{ "name": "Group Select Checkbox", "version": "18.0", "category": "Web", "summary": "Add select-all checkboxes to group headers in list view", "author": "You", "depends": ["web"], "assets": { "web.assets_backend": [ "group_select_checkbox/static/src/js/list_renderer.js", ], }, "installable": True, "application": False, }

tatic/src/js/list_renderer.js

js

CopyEdit

/** @odoo-module **/ import { ListRenderer } from "@web/views/list/list_renderer"; import { registry } from "@web/core/registry"; class GroupSelectableListRenderer extends ListRenderer { toggleGroup(group, checked) { for (const item of group.children) { if (item.id && this.props.isSelected(item.id) !== checked) { this.props.selectRow(item, checked); } } } getGroupRow(node, groupLevel) { const row = super.getGroupRow(node, groupLevel); const checkbox = { tag: "input", attrs: { type: "checkbox", class: "o_group_checkbox", }, on: { change: ev => this.toggleGroup(node, ev.target.checked), }, }; row.children.unshift(checkbox); return row; } } const CustomListView = registry.category("views").get("list"); registry.category("views").add("group_select_list", { ...CustomListView, Renderer: GroupSelectableListRenderer, });

Use the renderer in your action or view

In your action XML, instruct it to use this custom renderer:

<record id="action_mymodel_with_group_select" model="ir.actions.act_window"> <field name="name">My Model (Grouped)</field> <field name="res_model">my.model</field> <field name="view_mode">tree,form</field> <field name="context">{'view_type': 'group_select_list'}</field> </record>

Alternatively, in a specific list view:


<list js_class="group_select_list" group_by="category_id"> <!-- ...fields... --> </list>

i hope it is use full

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ść
Modify Pivot View
Pivot v18 CommunityEdition
Awatar
Awatar
1
cze 25
1879
Unable to send email notifications through write
notifications v18 CommunityEdition
Awatar
Awatar
1
cze 25
1941
Hide Records based on user group only in a particular view
views record_rule v18 CommunityEdition
Awatar
Awatar
Awatar
2
wrz 25
1555
Unable to pass context to an action
context server_action v18 CommunityEdition
Awatar
Awatar
1
lip 25
1751
Hide menus in user_menuitems from specific users
visibility v18 CommunityEdition user_menuitem
Awatar
Awatar
Awatar
3
lip 25
2256
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