Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Discuss
    • Kecerdasan Buatan
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Manajemen Properti
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Konsultasi
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

How to make a <tree> view that is editable="bottom" but also has a clickable link to the object?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
viewsv15
2 Replies
21974 Tampilan
Avatar
Josef Werner Schmid GmbH, Josef Schmid

I want to have a tree view within my form that is editable="bottom" because this option enables a really quick way to add and edit the corresponding models but that also has a clickable link to the model. I have demonstrated it in this image :

As you can see I added the arrows on the right with photoshop to show you what I need. Clicking on the arrow should open the form view of that model, just like it does normally.

How can I add such an arrow to the tree view or achieve something similar?


This is what the tree view currently looks like

```

<page string="Stände">
<field name="staende">
<tree editable="bottom">
<field name="draw"/>
<
field name="name" />
<
field name="aussteller"/>
<
field name="start_number" />
<
field name="end_number" />
<
field name="type" />
<
field name="depth" />
<
field name="walls" />
<
field name="carpet"/>
tree>
field>page>

```

0
Avatar
Buang
Avatar
Jainesh Shah(Aktiv Software)
Jawaban Terbai

Hello Josef Schmid,

Please find Code in Comment. 

hope may this helpful for you.

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

0
Avatar
Buang
Jainesh Shah(Aktiv Software)

Add the attribute in tree tag like below:
<tree editable="top" create="1" edit="1">

Josef Werner Schmid GmbH, Josef Schmid
Penulis

Thank you for your answer. I edited the tree tag to look like this:

<tree editable="bottom" create="1" edit="1">
<field name="draw"/>
<field name="name" />
<field name="aussteller"/>
<field name="start_number" />
<field name="end_number" />
<field name="type" />
<field name="depth" />
<field name="walls" />
<field name="carpet"/>
</tree>

(I also tried editable="top")

Unfortunately, the tree still looks like this and I have no way of opening the model in the form view.

https://i.imgur.com/3WQFUkf.png

Avatar
usvameria
Jawaban Terbai

Hi, you can add a (object) button after your last field in tree tags.

<button class="oe_stat_button"
icon="fa-pencil-square-o"
name="open_budget_form_view"
type="object"/>


name attribute is should be name of the action function at behind.



0
Avatar
Buang
Josef Werner Schmid GmbH, Josef Schmid
Penulis

Hey, I dont quite understand, where to put to button and what the function has to look like. Can you help by explaining it a bit further?

From what I understand, it looks like you want me to put the button here

<tree editable="bottom" create="1" edit="1">
<field name="draw"/>
<field name="name" />
<field name="aussteller"/>
<field name="start_number" />
<field name="end_number" />
<field name="type" />
<field name="depth" />
<field name="walls" />
<field name="carpet"/>
<button class="oe_stat_button"
icon="fa-pencil-square-o"
name="open_form_view_from_that_model"
type="object"/>
</tree>

Hover I do not know how to write a method or action that opens that form. Would you mind helping?

Thank you very much.

usvameria

With pleasure,

Here is complete sample:

My tree view's model is "project.budget.item" and i should write my button's action function in this model but firstly let's add our button to view:

<record id="project_budget_tree" model="ir.ui.view">
<field name="name">project.budget.tree</field>
<field name="model">project.budget.item</field>
<field name="arch" type="xml">
<tree editable="bottom" create="1" edit="1">
<field name="sequence"/>
<field name="name" />
<field name="date"/>
<button class="oe_stat_button"
icon="fa-pencil-square-o"
name="open_budget_form_view"
type="object" />
</tree>
</field>
</record>

Now it's time to write a action function to call it from button:

class ProjectBudgetItem(models.Model):
_name = "project.budget.item"

#I should write this function name to my button's name attribute in tree view
def open_budget_form_view(self):
return {
'name': 'Budget Edit',
'domain': [],
'res_model': 'project.budget.item',
'type': 'ir.actions.act_window',
'view_mode': 'form',
'view_type': 'form',
'res_id': self.id,
'target': 'new',
}

or you should write something like this:

def action_account_bank_statement(self):
self.ensure_one()
action = self.env.ref('account_cheque.action_account_bank_statement').read()[0]
action['context'] = {'default_account_cheque_transaction_id': self.id}
return action

if i understood your question correctly the above example will give you what you want.

Thanks.

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
How do i add stages for odoo 15 kanban view?
views xml v15
Avatar
Avatar
1
Mei 24
5303
Unknown field in domain ...
views models v15
Avatar
Avatar
1
Sep 22
6117
Menu Item not showing up under event configuration Diselesaikan
views menuitem v15
Avatar
Avatar
1
Agu 22
4853
how to add pages to notebook that is being added from another module Odoo15 Diselesaikan
views form v15
Avatar
Avatar
Avatar
2
Agu 22
8168
Displaying different views in different contexts Diselesaikan
views form v15
Avatar
Avatar
1
Jul 22
6370
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Karir
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah software terintegrasi dengan 70+ aplikasi seperti CRM, Akuntansi, Inventaris, Sales, eCommerce, Marketing, POS; plus fitur lokal Indonesia!

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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