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

Groupby Search filter Not working for a custom field

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
group_bysearch_viewodooV8
1 Odpowiedz
9772 Widoki
Awatar
Zohair Iyaz

I am using Odoo v8 community version on (bitnami) virtual machine


I have created a custom field [name: x_Task_Status, type: Selection (Open,Completed)]. When I add it to the Search view, the result is shown as

Group
  Completed (0)
  Open(0)


When Directly searching for Open Task Status (or Completed Task Status), there are results shown. Just not working when i try to group then in one view.


Here is my project.task.tree xml:

<?xml version="1.0"?>
<!--Zohair: Replacing x_start_date with x_Planned_Start_Date-->
<tree default_order="x_Planned_Start_Date asc" fonts="bold:message_unread==True" colors="red: x_Planned_Start_Date and (x_Planned_Start_Date &lt;=current_date) and x_Task_Status=='Open'" string="Tasks">
<field name="message_unread" invisible="1"/>
<field name="sequence" invisible="not context.get('seq_visible', False)"/>
<field name="name"/>
<!--Zohair: Change Project heading to PO# by adding string="PO#" to the "project_id" filed attributes-->
<field name="project_id" invisible="context.get('user_invisible', False)" string="PO#"/>
<field name="partner_id"/>
<!--Zohair: Replacing date_start and date_end with x_Planned_Start_Date and date_deadline-->
<field name="x_Planned_Start_Date"/>
<!--Zohair: Change Stage heading to Task Status by adding string="Task Status" to the "stage_id" filed attributes-->
<!--Zohair12/16: removing stage_id usage and replacing with x_Task_Status-->
<!--field name="stage_id" invisible="context.get('set_visible',False)" string="Task Status"/-->
<field name="x_Task_Status"/>
<field name="user_id" invisible="context.get('user_invisible', False)"/>
<field name="delegated_user_id" invisible="context.get('show_delegated', True)"/>
<field name="total_hours" invisible="1"/>
<field name="planned_hours" invisible="context.get('set_visible',False)" groups="project.group_time_work_estimation_tasks"/>
<field name="effective_hours" widget="float_time" sum="Spent Hours" invisible="1"/>
<field name="remaining_hours" widget="float_time" sum="Remaining Hours" on_change="onchange_remaining(remaining_hours,planned_hours)" invisible="context.get('set_visible',False)" groups="project.group_time_work_estimation_tasks"/>
<field name="date_deadline" invisible="context.get('deadline_visible',True)"/>
<!--Zohair: Hide progressbar widget-->
<!--field name="progress" widget="progressbar" invisible="context.get('set_visible',False)"/-->
</tree>



Here's my project.task.search.form xml:

<?xml version="1.0"?>
<search string="Tasks">
<field name="name" string="Tasks"/>
<field name="categ_ids"/>
<field name="partner_id"/>
<field name="project_id"/>
<field name="reviewer_id"/>
<field name="user_id"/>
<field name="x_Task_Status"/>
<filter string="My Tasks" domain="[('user_id','=',uid)]"/>
<filter string="Unassigned" name="unassigned" domain="[('user_id', '=', False)]"/>
<separator/>
<!--filter string="New" name="draft" domain="[('stage_id.sequence', '&lt;=', 1)]"/-->
<!--separator/-->
<!--filter string="New Mail" name="message_unread" domain="[('message_unread','=',True)]"/-->
<group expand="0" string="Group By">
<filter string="PO" name="project" context="{'group_by':'project_id'}"/>
<filter string="Task" context="{'group_by':'name'}"/>
<filter string="Assigned to" name="User" context="{'group_by':'user_id'}"/>
<!--filter string="Task Status" name="x_Task_Status" context="{'group_by':'x_Task_Status'}"/-->
<filter string="Company" context="{'group_by':'company_id'}" groups="base.group_multi_company"/>
<separator/>
<!--filter string="Last Message" name="group_message_last_post" context="{'group_by':'message_last_post:week'}"/-->
<!--filter string="Assignation Month" context="{'group_by':'date_start:month'}" help="Creation Date"/-->
</group>
</search>

Do I need to add any other parameter? How to make it work?


Note: Created a custom field for task status because I was not able to do some tasks on the original Stage field.

(question/set-color-in-tree-view-based-on-task-stage-94556)


EDIT:

My Field is x_Task_Status. I just corrected the xml as well. ( I was trying with _id just to check if its an issue with field type). But no, its not working with either.


EDIT #2:

Adding the full xml above




0
Awatar
Odrzuć
Jignesh Mehta

Can u please post your full xml code ??

Zohair Iyaz
Autor

I have done that now

Awatar
Jignesh Mehta
Najlepsza odpowiedź

Hello Zohair,


If Your field is x_Task_Status_id, Try this :-

<filter string="Task Status" name="x_Task_Status_id" context="{'group_by':'x_Task_Status_id'}"/>

If Your field is x_Task_Status, Try this :-

<filter string="Task Status" name="x_Task_Status" context="{'group_by':'x_Task_Status'}"/>
 

Hope this is works for you.

Thanks,


5
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ść
forcing the group to remain open in search view group_by ??
group_by search_view
Awatar
0
mar 15
3705
v16: Group by is not working in custom module Rozwiązane
group_by search_view odoo16features
Awatar
Awatar
2
gru 23
2413
Group by product_id in invoice_lines
group_by odoo odooV8
Awatar
0
sie 19
2728
Search View: group_by filter
v7 group_by search_view
Awatar
Awatar
1
sie 15
8846
group_by filter doesn't work
search group_by search_view odoo8.0
Awatar
0
mar 17
4133
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