Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

searchpanel, display name, context doesn't work

Odebírat

Get notified when there's activity on this post

This question has been flagged
categorysearch_viewv14
2 Odpovědi
4991 Zobrazení
Avatar
Borja

I've added a searchpanel to the product views to show the categories. But the name of the categories is shown with all the path 




I tried to add something like this to the field:

context="{'show_short_category': True}"


But the context is not passed to the name_get function.


Is there a way to show only the name of the category? (keeping the current display_name for all the other cases (like in the list view)





0
Avatar
Zrušit
Avatar
Cemal Bayram
Nejlepší odpověď

Hi,

First you have to inherit name_get function and make it run with context variable 'show_category_path'. In this function set '_rec_name' to 'name'.

class ProductCategory(models.Model):
_inherit = "product.category"
_rec_name = 'name'

@api.depends('name')
def name_get(self):

if self\._context\.get\('show_category_path'\):
\ \ \ \ \ \ \ \ \ \ \ \ new_res\ =\ \[\]
\ \ \ \ \ \ \ \ \ \ \ \ for\ category\ in\ self:
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ name\ =\ category\.complete_name
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ new_res\.append\(\(category\.id,\ name\)\)
\ \ \ \ \ \ \ \ \ \ \ \ ctx\ =\ dict\(self\.env\.context,\ show_category_path=False\)
\ \ \ \ \ \ \ \ \ \ \ \ self\.env\.context\ =\ ctx
\ \ \ \ \ \ \ \ \ \ \ \ return\ new_res
\ \ \ \ \ \ \ \ else:
\ \ \ \ \ \ \ \ \ \ \ \ return\ super\(ProductCategory,\ self\)\.name_get\(\)

Second,\ create\ a\ view\ that\ contains\ action\ and\ view\ definitions\ of\ the\ module\ you\ are\ working\ with\ like\ below\. 

The\ first\ context\ change\ is\ in\ action\ definition\ but\ it\ does\ not\ effect\ searchpanel\.\ Because\ of\ this,\ setting\ '_rec_name'\ to\ 'name'\ makes\ it\ work\ as\ you\ need\.\ After\ view\ s\ created\ context\ is\ changed\ with\ your\ variable\ 'show_category_path'\ \.

You\ can\ change\ field\ context\ values\ as\ you\ need\ for\ other\ field\ definitions\ as\ below\.


\ \
\ \ \ \
\ \ \ \ \ \ \ \ Products
\ \ \ \ \ \ \ \ ir\.actions\.act_window
\ \ \ \ \ \ \ \ product\.template
\ \ \ \ \ \ \ \ kanban,tree,form
\ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \ \{"search_default_consumable":\ 1,\ 'default_type':\ \ ​\ \ \ \ \ \ 'product','show_category_path':\ True\}
\ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \ \ \ \ \


\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Create\ a\ new\ product
\ \ \ \ \ \ \ \ \ \ \ \


\ \ \ \ \ \ \ \
\ \ \ \
\ \ \ \ ir\.ui\.view"\ id="product_template_form_view_sale_order_button">
\ \ \ \ \ \ \ \ product\.template\.sale\.order\.button
\ \ \ \ \ \ \ \ product\.template
\ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \{'show_category_path':\ True\}
\ \ \ \ \ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \
\ \ \ \
\ \ \ \ \ \
\ \ \ \ "\ rel="ugc">ir\.ui\.view">
\ \ \ \ \ \ \ \ app\.product\.template\.search
\ \ \ \ \ \ \ \ product\.template
\ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \ \ \ \ \
\ \ \ \ \ \ \ \
\ \ \ \
\ \ \ \
\ \ \ \ "\ rel="ugc">ir\.ui\.view">
\ \ \ \ \ \ \ \ app.stock.quant.template.search
stock.quant













0
Avatar
Zrušit
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Nejlepší odpověď

Hi,

Set the context in XML file in the model product

eg:

https://ibb.co/jHTVt2C

In the product category under names get you will get the context while selecting the filed in product.

@api.depends('name', 'code')
def name_get(self):
if not self._context.get('for_partner_id', False):
return super(ResPartner, self).name_get()
else:
res = []
for partner in self:
res.append((partner.id, partner.name))
return res

Regards

0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Odoo14 After the permission rules are changed, the upgrade module does not take effect
category v14
Avatar
0
čvc 21
2553
hide category from user form, odoo v14
category groups v14
Avatar
0
led 23
809
How to configure POS screen in mobile view?
category point_of_sale v14
Avatar
0
říj 21
4625
Facing issue in upgrading from odoo11 to 14 in search filter
xml search_view v14
Avatar
Avatar
1
čvn 21
2261
ver.14: how to add Category filter to show products in website /shop Vyřešeno
search category v14
Avatar
Avatar
2
úno 21
7192
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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