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

[ODOO 10] "Unknown field in domain" error when inheriting a view to add sub-fields

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
viewsfieldsinheritanceone2many
1 Balas
8080 Tampilan
Avatar
Maxime MARAIS

Hi,

I created a new class inheriting stock.pack.operation. This class adds a One2many field named carrier_pack and an Integer field named carrier_pack_count. The field carrier_pack_count is a computed value, returning the number of objects in the field carrier_pack. The class is well installed and I can find both fields with the developer tools via the Technical>Database>Models menu.

I also try to display an icon in the list of operations of a stock.picking view. I created a new ir.ui.view <record> inheriting stock.view_picking_form. This form targets "//form/sheet/notebook/page/field[@name='pack_operation_product_ids']/tree" and adds some code as follows:

<field name="arch" type="xml">    <xpath expr="//form/sheet/notebook/page/field[@name='pack_operation_product_ids']/tree" position="inside">        <button type="object" name="show_pack" string="Pack expedited" icon="fa-truck" attrs="{'invisible': [('carrier_pack_count', '!=', 0)]}"/>    </xpath></field>

given the //form/sheet/notebook/page/field[@name='pack_operation_product_ids']/tree is :

<field name="pack_operation_product_ids" options="{'reload_on_button': True}" context="{'default_picking_id': id, 'default_location_id': location_id, 'default_location_dest_id': location_dest_id}" mode="tree,kanban">    <tree editable="bottom" decoration-muted="result_package_id" decoration-danger="qty_done&gt;product_qty" decoration-success="qty_done==product_qty and state!='done' and not result_package_id">        <field name="package_id" groups="stock.group_tracking_lot" invisible="1"/>        <field name="product_id" required="1" attrs="{'readonly': [('fresh_record', '=', False)]}"/>        <field name="fresh_record" invisible="1"/>        <field name="product_uom_id" attrs="{'readonly': [('fresh_record', '=', False)]}" groups="product.group_uom"/>        <field name="lots_visible" invisible="1"/>        <!-- [...] -->        <button name="split_lot" string="Lot Split" type="object" icon="fa-list" groups="stock.group_production_lot"            attrs="{'invisible': ['|', ('lots_visible', '=', False), ('state', 'not in', ['confirmed', 'assigned', 'waiting', 'partially_available','done'])]}"/>        <button name="show_details" string="Modify" type="object" icon="fa-pencil" groups="stock.group_stock_multi_locations"            states="confirmed,assigned,waiting,partially_available"/>    </tree><!-- [...] --></field>

adding my new button results in having the following code:

<!-- [...] -->        <button name="split_lot" string="Lot Split" type="object" icon="fa-list" groups="stock.group_production_lot"            attrs="{'invisible': ['|', ('lots_visible', '=', False), ('state', 'not in', ['confirmed', 'assigned', 'waiting', 'partially_available','done'])]}"/>        <button name="show_details" string="Modify" type="object" icon="fa-pencil" groups="stock.group_stock_multi_locations"            states="confirmed,assigned,waiting,partially_available"/>

<button type="object" name="show_pack" string="Pack expedited" icon="fa-truck" attrs="{'invisible': [('carrier_pack_count', '!=', 0)]}"/> </tree>

<!-- [...] -->

Fields like lots_visible or state used in attrs are well considered as belonging to one of the current pack_operation_product_ids parent field as expected. But the carrier_pack_count used in attrs="{'invisible': [('carrier_pack_count', '!=', 0)]}" defined in my inheriting view IS NOT.

Odoo displays the following error message :

Unknown field carrier_pack_count in domain [["carrier_pack_count","!=",0]]

Do I miss something? Is this a bug? How to fix this issue?

Thanks.


0
Avatar
Buang
Avatar
Krimi Shah
Jawaban Terbai

Hi Maxime Marais,

I think you need first give the field carrier_pack_count in view with which the domain can work properly.
Or else, please post the whole code so we can figure out properly.

Regards,

Krimi

1
Avatar
Buang
Maxime MARAIS
Penulis

Hi Krimi.

carrier_pack_count is expected to be in the view. The field carrier_pack_count is added by my add-on, inheriting from stock.pack.operation model. I'm sure it is, I can see browsing the models with the developer tools.

The parent view is composed like this :

<FIELD name="pack_operation_product_ids" options="{'reload_on_button': True}" context="{'default_picking_id': id, 'default_location_id': location_id, 'default_location_dest_id': location_dest_id}" mode="tree,kanban">

<TREE editable="bottom" decoration-muted="result_package_id" decoration-danger="qty_done&gt;product_qty" decoration-success="qty_done==product_qty and state!='done' and not result_package_id">

<FIELD name="package_id" groups="stock.group_tracking_lot" invisible="1"/>

<FIELD name="product_id" required="1" attrs="{'readonly': [('fresh_record', '=', False)]}"/>

<!-- [...] -->

</TREE>

<!-- [...] -->

</FIELD>

I simply add a new button in the tree above.

Looping on pack_operation_product_ids, the tree in it is in the stock.pack.operation domain (the class stock.picking defines pack_operation_product_ids as a One2many fields pointing to stock.pack.operation, the view loops on each stock.pack.operation referenced by stock.picking).

Fields named package_id, product_id, etc. are properties of stock.pack.operation, as well as my carrier_pack_count defined in my model expending stock.pack.operation.

I cannot figure out why Odoo displays carrier_pack_count as being part of stock.pack.operation model (as well as package_id, product_id, etc.) but cannot access it when displaying the view.

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
Help with XPath and View Inheritance Diselesaikan
views fields inheritance xpath
Avatar
Avatar
Avatar
Avatar
4
Agu 21
70228
How to add a field on an existing tab? Diselesaikan
views fields inheritance tabs
Avatar
Avatar
2
Mar 15
8238
How to access to fields from other object ? Diselesaikan
views fields one2many relation
Avatar
Avatar
1
Mar 15
9158
View inheritance hiding a field
views inheritance
Avatar
Avatar
1
Nov 24
2621
Change the Position of field in Xpath Diselesaikan
views inheritance
Avatar
Avatar
Avatar
Avatar
Avatar
5
Jul 24
95898
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