Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • 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
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

How does specification of a XML View in v8 work?

Odoberať

Get notified when there's activity on this post

This question has been flagged
v8viewsxmlviewodoo
1 Odpoveď
5193 Zobrazenia
Avatar
Peter Nietz

I tried to reproduce this tutorial for my module with the same data structure:

specify_view_to_use_doc_v6  

Is this still the right way for Odoo V8 because only the view with priority 15 is shown in both menu entries?

Is there a difference if there is no form view but only a tree/list view?

THX.

0
Avatar
Zrušiť
Peter Nietz
Autor

The tutorial to specify the FORM view works so far for me, but if I change the view type to list instead of form only the view with the higher priority is shown. Is there a way to specify a list view, too?

Peter Nietz
Autor

Did it! - Had to add my custom view_modes to VIEW_TYPES in: /openerp/addons/base/ir/ir_actions.py Then just I used my custom_type as view_mode for ir.actions.act_window.view and it works like perfect.

Avatar
John
Best Answer

To my knowledge, that is still applicable.  You did notice that the only difference in the two actions was specifying the view_id in the following line, correct?

   <field name="view_id" ref="client_form_view_1"/> 
1
Avatar
Zrušiť
Peter Nietz
Autor

and also in the "ir.ui.view" for the higher priority: field name="priority" eval="15"

John

Setting the eval to 15 makes client_form_view_2 a higher priority (the default view), but I thought you were saying that only the one with eval=15 was showing. Again, the only difference between the two actions are that client_form_action calls the default view and client_form_action1 specifies a view_id and that "overrides" the default view.

Peter Nietz
Autor

ok for the form view it works without priority, but for list graph gantt kanban its not working at all... how is it possible to use the "REF" for lists or even better for customized lists derived from list of the web module.

John

Peter,

As far as I know, without using the "views" option in some python code, you can only specify a single view_id or set the priority like you did originally to get the views you want by default.

Look at the answer here for an example of how to specify the views for all view types using python code:
http://stackoverflow.com/questions/27441230/why-isnt-my-act-window-with-views-definition-and-using-act-window-view-equival

So, you could call an action that specifies some python code which returns the list, graph, gantt, kanban, etc. views specified with the 'views' dictionary key.

Hope that helps!

John

I also just came across this:

https://answers.launchpad.net/openobject-server/+question/197559

I've never done it, but please try it and let me know if it works for you!

Peter Nietz
Autor

I also found the method with ir.actions.act_window.view and it all works with form,tree,kanban,graph but if I add list or custom_list to view_mode it tells me: ParseError: "Wrong value for ir.actions.act_window.view.view_mode: 'custom_list'" but in the normal ir.actions.act_window the view_mode custom_list works fine but not with a ref to a view_id.

OdooBot
Peter,

I'm sorry, but I've not used lists or custom_lists before, so I have no idea what it could be.

Maybe try looking at the postgres and see what the other view_modes look like?
 
~John Walsh



On Wednesday, June 10, 2015 11:37 AM, Peter Nietz <nietz-gmx.net@mail.odoo.com> wrote:


I also found the method with ir.actions.act_window.view and it all works with form,tree,kanban,graph but if I add list or custom_list to view_mode it tells me: ParseError: "Wrong value for ir.actions.act_window.view.view_mode: 'custom_list'" but in the normal ir.actions.act_window the view_mode custom_list works fine but not with a ref to a view_id.
--
Peter Nietz
Sent by Odoo Inc. using Odoo access your messages


Peter Nietz
Autor

Thx ... u put me on the right track ... just had to add custom_list to VIEW_TYPES in /openerp/addons/base/ir/ir_actions.py

OdooBot
Glad to hear it! Good luck!
 
~John Walsh




On Thursday, June 11, 2015 11:52 AM, Peter Nietz <nietz-gmx.net@mail.odoo.com> wrote:


Thx ... u put me on the right track ... just had to add custom_list to VIEW_TYPES in /openerp/addons/base/ir/ir_actions.py
--
Peter Nietz
Sent by Odoo Inc. using Odoo access your messages


Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
partner view blank page
javascript v8 views xml odoo
Avatar
0
aug 16
3648
Why on my module which works in saas-5 in v8 field labels are missing?
v8 views view
Avatar
Avatar
1
mar 15
4320
Display eternal duration in Gantt view (f. e. without end date)
views xml view
Avatar
0
mar 15
2597
[ODOO 16CE] How to choose the form used when clicking on 'Add a line' in a tree view?
views view odoo odoo16features
Avatar
Avatar
2
jún 23
3853
[ODOO 16CE] How to choose the form view used with Many2One or Many2Many (m2x) field? Solved
views view odoo odoo16features
Avatar
Avatar
1
jún 23
3611
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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