Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • E-learning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Sociale media-marketing
    • E-mailmarketing
    • Sms-marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Horeca & Hospitality
    • Bar en café
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van mede-eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brouwerij
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Diensten
    • Klusjesman
    • IT-hardware & ondersteuning
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Alle bedrijfstakken bekijken
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijsprogramma
    • Scale Up! Business Game
    • Odoo bezoeken
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Partner worden
    • Diensten voor partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Changing a default view

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
2 Antwoorden
28151 Weergaven
Avatar
Andrew

Hi!

I am looking to personalize my Odoo. For this I started working on the Suppliers list available via Purchases --> Purchase --> Suppliers.

By default the view is shown in Kanban view, whereas I prefer List view. This was fixed in the following way:

  1. Go to Settings → Technical → Actions → Window Actions

  2. Find the action with Action Name ‘Suppliers’

  3. Under Views, edit the View Mode parameter from “kanban,tree,form” to “tree,kanban,form”

  4. Click Save

Next, by default the Supplier view lists both companies and persons. I would like to filter on companies only by default. Now I have to edit the search (click downward arrow in search box) and filter on Companies.

  1. I tried the following:

  2. Go to Settings → Technical → Actions → Window Actions

  3. Find the action with Action Name ‘Suppliers’

  4. Under Filters, I changed the Context Value to {'search_default_supplier': 1,'default_customer': 0,'default_supplier': 1,'search_default_is_company': 1} (I added the last item in the dict object; the first 3 were already there)

  5. Click Save

Unfortunately this does not work. Can someone point me in the right direction? Please note that I only have access to the web interface of Odoo. Thanks!

1
Avatar
Annuleer
Andrew
Auteur

What (partially) works is the following: Go to Settings → Technical → Actions → Window Actions Find the action with Action Name ‘Suppliers’ Under Views, edit the View Mode parameter from “kanban,tree,form” to “tree,kanban,form” Under Filters, edit the Domain Value from “[]” to “[['is_company', '=', 1]]” Downside is that now all persons are no longer present in the underlying data. I guess that what I am asking is the following: if you go to the Suppliers View (Purchases → Purchase → Suppliers) and expand the search box by clicking on the down facing arrow, you are presented with a set of common filter criteria. Of those 'Suppliers' is enabled by default, whereas 'Companies' is not. Where are those filters defined? And where can I set defaults?

Andrew
Auteur

Alright, my solution was to do the following: Via GitHub I found out that the view and filters are defined in: odoo/openerp/addons/base/res/res_partner_view.xml The important line here is: To enable this filter by default I added 'search_default_type_company': 1 to the Context Value

Avatar
Ray Carnes (ray)
Beste antwoord

At the bottom of the Window Action you will see a list of Views (for some Menus where there are none, Odoo will use the defaults).

The View at the top will be shown first, so if you want the LIST instead of the KANBAN, drag the LIST to the top.

For more information see https://www.odoo.com/forum/help-1/odoo10-how-to-set-the-tree-list-view-as-default-view-for-customers-and-products-in-sales-module-129021 


(although this post is for Odoo 10 it is applicable for all versions of Odoo)

1
Avatar
Annuleer
Avatar
Akram El Gabry
Beste antwoord

Hi when you go into the supplier view, you can see that 'Suppliers' are already selected as a filter. If you select the filter in that screen area you can see you can also select 'Companies'.

Now you want to both save that search and make it your default, you first need to select to save the filter, to do this you must give it a name (I used 'Supplier Companies'), now when you select to save the filter you also get an option to 'Use By Default' (as well as sharing the filter), if you set use by default, this filter will appear every time you go into that view as default.

1
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Partner worden
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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