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
    Rantai Pasokan
    • 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
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-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
    • Estate Management
    • 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
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
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 can i assgin two different filters two same model but with different menu ?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
filterproductopenerp7domain_filter
1 Balas
5789 Tampilan
Avatar
Ahmed elbarbary

how to assign two different filters to same model ? such as products model in sales module (sales--->products) there is defined filter (can be sold ) and in purchase-->products there is defined filter can be purchase , now in warehouse --> products i need to define default filter but the problem is when i assign it it apply to all product views in sales and in purchase but i need it in warehouse only , how can i do that ? and how is it applied different filter to purchase and sales products ?

Thanks in advance

1
Avatar
Buang
Avatar
Emipro Technologies Pvt. Ltd.
Jawaban Terbai

This can be done using the "window action". You can set the value of "context" under the action and achieve this.

Try to find the "action" for that menu and try to define your filter under the "context" attribute.

See the example

Product under Sales menu,

context = {"search_default_filter_to_sell":1} ---> this leads to default selection of "sellable" product filter.

context={"search_default_filter_to_purchase":1} ---> this leads to default selection of "purchase" product filter.

So here in the search view there is a filter already defined as "filter_to_sell" and "filter_to_purchase" and using this in the context value for different actions, appropriate filters are set as default selection during load of the list view.

For your reference in the product module search for "product_normal_action_sell" this action, you will get the idea.

So same way you need to define your filter and use the context attribute of the action.

Hope this helps !!.

2
Avatar
Buang
Ahmed elbarbary
Penulis

thank you very much it is working, can i ask you another question ? is there away to assign defaults to fields when create product from warehouse menu which is different from defaults when create from sales menu ?

Ankit H Gandhi(AHG)

thanks @ emipro technologies pvt ltd. this code fully work

Emipro Technologies Pvt. Ltd.

Yes @elbarbary... it is possible to set default values for different action. You can do this by using {"default_field_name":>} in the context attribute. Try to look different actions, which are already there in the system, that will help you more.

Ahmed elbarbary
Penulis

@ Emipro Technologies Pvt. Ltd. it is working fine thanks again for your help , i appreciate that

Emipro Technologies Pvt. Ltd.

@elbarbary ... You'r welcome...

David Hovsepian

I'm trying to figure out how to do this too. Where do you enter that? Or do you build a completely new module just for this one function? Can I do it in the frontend somehow?

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
Default Domain Filter
filter domain_filter
Avatar
Avatar
Avatar
2
Jun 22
8120
Filter Domain Field on Field Diselesaikan
openerp7 domain_filter
Avatar
Avatar
Avatar
2
Sep 19
11487
Filtration in xml view
filter domain_filter
Avatar
Avatar
2
Feb 16
4742
Create fixed filter for user group
filter customization domain_filter
Avatar
1
Nov 22
102
Search for warehouse inside products tree view
filter product search
Avatar
Avatar
1
Nov 22
2552
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
  • Tugas
  • 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 ภาษาไทย Türkçe українська Tiếng Việt

Odoo adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

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