Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Producție
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Dashboard doesn't save state v7

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
v7dashboard
9 Răspunsuri
8828 Vizualizări
Imagine profil
Flyguy

The views and graphs that I have created and added to my dashboard lose their filter, group and graph type settings

Example: I create a list with customers, grouped by country and add it to my dashboard. I also create a pie chart with opportunities grouped by campagin. I add both to my dashboard. After log out/in I can see a list with all my customers, but they are not grouped by country. I can also see a barchart with opportunities, but they are not grouped by campaign.

I have also tried saving these filters first, and then adding them to my dashboard, but the result is the same...

4
Imagine profil
Abandonează
Gilles Major (gim)

Hello, it would be more appropriate to report this as a bug on launchpad (https://launchpad.net/openobject).

Obay Albadri

I have the same issue, it seems to be a bug in v7. did someone report it? or i have to.

Flyguy
Autor

I would report it if I were you. I've put it on launchpad, but didn't send a mail to their helpdesk.

Yannick Payot

@Flyguy, Could you write here the link to the bug report you putted on Launchpad ?

Pablo

https://bugs.launchpad.net/openobject

Cameron

Just an idea - I notice if you "upgrade" then various views and filters are lost!

Imagine profil
Shashank Verma
Cel mai bun răspuns

Hello flyguy,

I think this is not a bug in odoo. This is how Structure has been designed in odoo.
If someone  noticed one thing while creating your 1st dashboard from menu->reporting->mydashboard: see help description :-

***************************************************************
Your personal dashboard is empty.

To add your first report into this dashboard, go to any menu, switch to list or graph view, and click 'Add to Dashboard' in the extended search options.

You can filter and group data before inserting into the dashboard using the search options.
***************************************************************

This means the user select view mode of any object and create dashboard. So if your graph mode is "bar" then dashboard will always remain in "bar" mode.
lets take an example:

1.go to sale->sale order->select graph mode

2. now u can see that your garph is in bar mode

3. from search bar click create dashboard

4.go back to reporting->my dashboard

5.now u see the dashboard is in  bars mode.

This will remain static always.
So if a user wants to change the graph mode to piechart despite of weather user login or logout  then we need to hack code of sale order dashboard.

Do the following steps to make piechart dashboard for sale order:

1. Edit the code of sale order module
2. go to openerp addons->sale->edit sale_view.xml file
3. You can view the graph code something like this:


        <record model="ir.ui.view" id="view_sale_order_graph">
            <field name="name">sale.order.graph</field>
            <field name="model">sale.order</field>
            <field name="arch" type="xml">
                <graph string="Sales Orders" type="bar">
                    <field name="partner_id"/>
                    <field name="amount_total" operator="+"/>
                </graph>
            </field>
        </record>

4. modify this line: <graph string="Sales Orders" type="bar">
to :<graph string="Sales Orders" type="pie">

5. so final code will  look like this-
<record model="ir.ui.view" id="view_sale_order_graph">
            <field name="name">sale.order.graph</field>
            <field name="model">sale.order</field>
            <field name="arch" type="xml">
                <graph string="Sales Orders" type="pie">
                    <field name="partner_id"/>
                    <field name="amount_total" operator="+"/>
                </graph>
            </field>
        </record>

6. restart your erp server

7. go back to reporting->mydashboard-> now ur dashboard is in pie chart mode

NOTE: filteration and group by remains alive even if you login or logout. I tested and its works fine.

1
Imagine profil
Abandonează
Imagine profil
Wilbert Tan
Cel mai bun răspuns

Hello
Any workaround for this?

[Odoo 8.1]

0
Imagine profil
Abandonează
Imagine profil
flg
Cel mai bun răspuns

Hello

 

Any news on this ? I get the same issue in v8 RC1

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How to define a custom dashboard with important documents? Rezolvat
v7 dashboard
Imagine profil
Imagine profil
Imagine profil
2
mar. 15
13270
Share customized dashboards with other users v7
customer v7 dashboard
Imagine profil
0
mar. 15
5198
Possibility to resize dashboards in v7
views v7 dashboard
Imagine profil
Imagine profil
1
mar. 15
6913
How to add a "Delete" button on the popup form? Rezolvat
v7
Imagine profil
Imagine profil
1
oct. 25
5468
Minimum Lot Charge For Sales Order Line Items
v7
Imagine profil
0
dec. 24
10415
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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