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 to write Record Rule with domain based on the company_dependent Fields

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
odoo12.0
3 Replies
10738 Tampilan
Avatar
Mohammed Zubair

I want to write a record rule with domain based on the company_dependent fields (means that field value is storing in ir.property Model). 

Means, I have one field i.e. x_company_dependent_field in product.category Model and I want to write one record rule in product. In record-rule domain, I want to compare the product.category fields value with the User fields i.e. x_any_field (normal field).



so that domain can be like below.

Like(domain),  [('categ_id.x_company_dependent_field', '=', user.x_any_field)]


I have tried with same but not working.

But when I am giving 'False' value then showing me products.


Like,  [('categ_id.x_company_dependent_field', '=', False)]


How can we handle this part ?

odoo12

Thanks in advance

0
Avatar
Buang
Avatar
Mohammed Zubair
Penulis Jawaban Terbai

I got the problem area for record-rule on company-dependent fields in multi-company case.

When we work with multi-company scenario that means if user logged into their account system should show his company in code i.e. self.env.user.company_id. Instead of this everytime system takes ADMIN(2) user company.

So that record-rule does not satisfied.

Problem-statement

Followings are the output from odoo files.

file: odoo/models.py [def _search(). line-4130]

Working-Condiiton with Main Company

When I login with the current company then query prepare with proper product.category company dependent fields. In this condition domain is properly taking main company id i.e. 3.

below is final query :

auto-prepared domain: ir.property() -->[('fields_id', '=', 10385), ('company_id', 'in', [3, False]), ('value_reference', 'in', ['x_business_team,2', 'x_business_team,5'])] 

ir.property query

 <osv.Query: "SELECT ... FROM "ir_property" WHERE ((("ir_property"."fields_id" = %s)  AND  (("ir_property"."company_id" in (%s)) OR "ir_property"."company_id" IS NULL))  AND  ("ir_property"."value_reference" in (%s,%s)))" with params: [10385, 3, 'x_business_team,2', 'x_business_team,5']>

Query:

<osv.Query: "SELECT ... FROM "product_category" WHERE ("product_category"."id" in (%s,%s,%s,%s,%s,%s,%s,%s))" with params: [14, 15, 16, 17, 18, 64, 40, 71]>


we can see, quer is taking product.category proper id based on the company-dependent fields i.e. from ir.property

SELECT count(1) FROM "product_template" LEFT JOIN 

                (SELECT res_id, value FROM "ir_translation"

                 WHERE type='model' AND name=%s AND lang=%s AND value!='')

             as "product_template__name" ON ("product_template"."id" = "product_template__name"."res_id") WHERE (("product_template"."active" = %s)  AND  ("product_template"."type" in (%s,%s))) AND ((((("product_template"."company_id" in (%s,%s))  OR  ("product_template"."company_id" in (%s)))  OR  "product_template"."company_id" IS NULL )  OR  ("product_template"."id" in (SELECT "product_template_id" FROM "x_product_template_res_partner_rel" WHERE "res_partner_id" IN %s)))  AND  ("product_template"."categ_id" in (%s,%s,%s,%s,%s,%s,%s,%s))) ['product.template,name', 'en_US', True, 'consu', 'product', 3, 1, 3, (8,), 14, 64, 15, 16, 17, 18, 71, 40]


Not working-condition with other company

When I login with the other company then query prepare with product.category company dependent fields as FALSE condition. Because in condition domain, we can see its taking main company i.e. id=3 but current company is 10.

auto-prepared domain:  ir.property() [('fields_id', '=', 10385), ('company_id', 'in', [3, False]), ('value_reference', 'in', ['x_business_team,33'])]

ir.property query

"SELECT ... FROM "ir_property" WHERE ((("ir_property"."fields_id" = %s)  AND  (("ir_property"."company_id" in (%s)) OR "ir_property"."company_id" IS NULL))  AND  ("ir_property"."value_reference" in (%s)))" with params: [10385, 3, 'x_business_team,33']>

Query

<osv.Query: "SELECT ... FROM "product_category" WHERE FALSE" with params: []>

But here is coming as False.


SELECT count(1) FROM "product_template" LEFT JOIN 

                (SELECT res_id, value FROM "ir_translation"

                 WHERE type='model' AND name=%s AND lang=%s AND value!='')

             as "product_template__name" ON ("product_template"."id" = "product_template__name"."res_id") 

WHERE ("product_product"."active" = %s) AND ("product_product"."product_tmpl_id"="product_product__product_tmpl_id"."id") AND (FALSE  AND  ("product_product__product_tmpl_id"."categ_id" in (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s))) AND ((((("product_product__product_tmpl_id"."company_id" in (%s,%s))  OR  ("product_product__product_tmpl_id"."company_id" in (%s)))  OR  "product_product__product_tmpl_id"."company_id" IS NULL )  OR  ("product_product__product_tmpl_id"."id" in (SELECT "product_template_id" FROM "x_product_template_res_partner_rel" WHERE "res_partner_id" IN %s)))  AND  FALSE)


That means, because of the company comparison it is not taking product.category company-dependent fields value from ir.property model.


Solutions

In ir.rule model, method: def domain_get(), we can make self as current company after check 'force_company' not in self.env.context. by using,

self = self.with_context({'force_company': self.env.user.company_id.id})

then call super method.

In ir.rule model, method: def _compute_domain_keys(), we can append 'force_company' in returned list after super method call.

res.append('force_company')


working query:

its taking proper company i.e. 10 in domain

ir.property query:

 ir.property() [('fields_id', '=', 10385), ('company_id', 'in', [10, False]), ('value_reference', 'in', ['x_business_team,33', 'x_business_team,34'])]


<osv.Query: "SELECT ... FROM "ir_property" WHERE ((("ir_property"."fields_id" = %s)  AND  (("ir_property"."company_id" in (%s)) OR "ir_property"."company_id" IS NULL))  AND  ("ir_property"."value_reference" in (%s,%s)))" with params: [10385, 10, 'x_business_team,33', 'x_business_team,34']>

<osv.Query: "SELECT ... FROM "ir_property" WHERE ((("ir_property"."fields_id" = %s)  AND  (("ir_property"."company_id" in (%s)) OR "ir_property"."company_id" IS NULL))  AND  ("ir_property"."value_reference" in (%s,%s)))" with params: [10385, 10, 'x_business_team,33', 'x_business_team,34']>


product.category query:

<osv.Query: "SELECT ... FROM "product_category" WHERE ("product_category"."id" in (%s,%s,%s))" with params: [70, 71, 72]>


main query:

SELECT count(1) FROM "product_template" LEFT JOIN 

                (SELECT res_id, value FROM "ir_translation"

                 WHERE type='model' AND name=%s AND lang=%s AND value!='')

             as "product_template__name" ON ("product_template"."id" = "product_template__name"."res_id") WHERE (("product_template"."active" = %s)  AND  ("product_template"."type" in (%s,%s))) AND ((((("product_template"."company_id" in (%s,%s))  OR  ("product_template"."company_id" in (%s)))  OR  "product_template"."company_id" IS NULL )  OR  ("product_template"."id" in (SELECT "product_template_id" FROM "x_product_template_res_partner_rel" WHERE "res_partner_id" IN %s)))  AND  (("product_template"."categ_id" in (%s,%s,%s))  AND  (("product_template"."categ_id" in (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s))  OR  ("product_template"."categ_id" in (%s,%s,%s))))) ['product.template,name', 'en_US', True, 'consu', 'product', 10, 1, 10, (6662,), 70, 71, 72, 38, 39, 1, 56, 3, 14, 65, 79, 80, 81, 64, 15, 16, 17, 18, 86, 70, 71, 72, 82, 83, 84, 76, 77, 78, 66, 68, 67, 85, 73, 74, 75, 40, 41, 42, 43, 44, 57, 45, 46, 48, 49, 50, 51, 52, 55, 53, 54, 47, 70, 71, 72]

0
Avatar
Buang
Avatar
Adil Akbar
Jawaban Terbai

Hi, 

You can see following for this:

https://youtu.be/GkNgc-fZO-I

Hope it helps,

Thanks

0
Avatar
Buang
Avatar
Jaga
Jawaban Terbai

Try this example :           

self.write({'list_price': value})

0
Avatar
Buang
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
Expected singleton: hr.emp.travel.location(62, 63)
odoo12.0
Avatar
Avatar
Avatar
2
Okt 25
1995
loan request
odoo12.0
Avatar
Avatar
1
Sep 23
4027
sum Colum of based on id
odoo12.0
Avatar
Avatar
1
Mei 23
2989
How to make pagination that has a table in qweb
odoo12.0
Avatar
Avatar
2
Apr 23
3748
Inherit Element form kanban View Diselesaikan
odoo12.0
Avatar
Avatar
1
Mar 23
2894
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