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

How do I create a Smart Button to open Customer Equipment from the Quotation?

Odebírat

Get notified when there's activity on this post

This question has been flagged
CustomizeButtonEquipment18.0Smart
1 Odpovědět
1387 Zobrazení
Avatar
Community Question

Using Odoo Studio, I created a Many2one field on the Equipment model to link to the Customer.


I then added a Smart Button on the Customer Form to show all Equipment records for that Customer.


It all works great.


Next I would like to add a Smart Button to the Sale Order Form to show all Equipment records for the Customer on that Sale Order.


How can I do this?

0
Avatar
Zrušit
Avatar
Ray Carnes (ray)
Nejlepší odpověď

Your button needs to open the Equipment List, filtered by the Customer.


Let's do this in three steps.

1. We first need a way to search Equipment by Customer.

Create your own custom View that inherits the Equipment Search View and adds a way to search your new field:


<field name="owner_user_id" position="after">
    <field name="x_studio_customer"/>
</field>


Note: We are assuming your new field is called x_studio_customer but you should check and change the name if it is different. This XML is telling Odoo, "Go find the owner_user_id field in the regular equipment.search view and add our field AFTER it".

Once this is working, we can add a button that opens the List from the Sales Order.


2. Next, we need a button to open the Equipment List

Create your own custom View that inherits the Sale Order Form View and adds the Action to open Equipment:


<div name="button_box" position="inside">
    <button name="684"
            type="action"
            icon="fa-window-restore"
            string="Equipment"/>
</div>


The 684 here comes from the URL when you are looking at the Equipment List. For example, once you click the Smart Button you already created on the Customer, you can review the ID on the right hand side of "action-" to get the ID for your database. 


This XML is telling Odoo, "Go find the button_box in the regular sale.order.form view and add our button INSIDE it".

Once this is working, we can add a line that sends the ID of the Customer on the Sales Order to the List.


3. Finally, modify the View to filter the List by the current Customer:

Add the following line to the bottom of your second Custom View:

context="{'search_default_x_studio_customer': partner_id}"

This XML is telling Odoo, "On the Search View, set the DEFAULT value of our field to the Customer on the Sales Order".

Final XML:

<button name="684" 
        type="action"
        icon="fa-window-restore"
        string="Equipment"
        context="{'search_default_x_studio_customer': partner_id}"/>


Result:


Your Odoo Implementation Consultant or Odoo Partner can help you if you don't have the technical skills to do this.

1
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
How To Hide Action Report By Picking Type Code ?
18.0
Avatar
Avatar
Avatar
3
lis 25
632
How do I set up budget management / planning Vyřešeno
18.0
Avatar
Avatar
2
srp 25
1097
dynamic css class on field
18.0
Avatar
Avatar
1
kvě 25
2199
Onboarding Icon on odoo 18 Vyřešeno
18.0
Avatar
Avatar
2
dub 25
3280
Layout para usar el botón SUBIR en ventas Odoo 18
18.0
Avatar
0
led 25
1714
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