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 create a new View Type from scratch in Odoo 14?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
javascriptmoduleviewselection
2 Replies
12914 Tampilan
Avatar
Abiatar Chaves

Hello everyone,


I was using the presentation from the Odoo Experience 2018 as basis for creating a new view type from scratch (link below), but it seems it is not compatible anymore with the current version 14.


https://www.youtube.com/watch?v=SIoljYJhTqk


I get the following error when installing the example module provided ( download from https://github.com/Polymorphe57/hello_world_view_code ):


"ValueError: ir.actions.act_window.view.view_mode: required selection fields must define an ondelete policy that implements the proper cleanup of the corresponding records upon module uninstallation. Please use one or more of the following policies: 'set default' (if the field has a default defined), 'cascade', or a single-argument callable where the argument is the recordset containing the specified option."


It seems like the code to add the new view in the available view modes is not compatible anymore, due to it being a selection field with required argument set to True, but without any ondelete argument set. When adding the new view with following code it will not work:

class ActWindowView(models.Model):
_inherit = 'ir.actions.act_window.view'

view_mode = fields.Selection(selection_add=[('hello_world', "Hello World")])

PS: I also tried adding the 'ondelete' argument together with the 'selection_add', but it also fails. I tried ondelete='set null' and ondelete='cascade'. Neither option worked.


Can anyone point me to the right direction to solve this OR show the correct way to implement a new view from scratch compatible with odoo 14?


Thanks in advance!


PS: Even in the Odoo official documentation they explain it like this, but it seems like it does not work with version 14 ( https://www.odoo.com/documentation/14.0/reference/javascript_cheatsheet.html#creating-a-new-view-from-scratch )

1
Avatar
Buang
Savya Sachin

Hi,

    I guess you are facing trouble while adding a selection field. Hope this video helps you,

    https://www.youtube.com/watch?v=4tlfzy-ZtMQ&vl=en

Thanks

Avatar
Dim Gunner
Jawaban Terbai

Please try:

view_mode = fields.Selection(selection_add=[
    ('hello_world', 'Hello World')
], ondelete={'hello_world': 'cascade'})

4
Avatar
Buang
BOUDEKAK MOHAMED

That worked for me, Thanks

Avatar
Jorma Nordlin
Jawaban Terbai

I installed the Hello World App example code and I fixed this same cascade problem. But I got other error, when I selected the Hello World App from the main menu. Do I need to set the "ControlPanel" to modelExtension in the Hello World App javascript code (hello_world_view.js)?

TypeError: Cannot read property 'modelExtension' of undefined

    at Class.init (http://localhost:8069/web/static/src/js/views/abstract_view.js:201:72)

    at Class.prototype.<computed> [as init] (http://localhost:8069/web/static/src/js/core/class.js:90:38)

    at Class.init (http://localhost:8069/hello_world_view/static/src/js/hello_world_view.js:118:21)

    at Class.prototype.<computed> [as init] (http://localhost:8069/web/static/src/js/core/class.js:90:38)

    at new Class (http://localhost:8069/web/static/src/js/core/class.js:107:33)

    at Class._createViewController (http://localhost:8069/web/static/src/js/chrome/action_manager_act_window.js:191:24)

    at http://localhost:8069/web/static/src/js/chrome/action_manager_act_window.js:306:43


abstract_view.js


 const searchModelParams = Object.assign({}, params, { action });

        if (this.withControlPanel || this.withSearchPanel) {

            const { arch, fields, favoriteFilters } = params.controlPanelFieldsView || {};

            const archInfo = ActionModel.extractArchInfo({ search: arch }, this.viewType);

            const controlPanelInfo = archInfo[this.config.ControlPanel.modelExtension]; // HERE the 'modelExtension' is undefined

            const searchPanelInfo = archInfo[this.config.SearchPanel.modelExtension];

            this.withSearchPanel = this.withSearchPanel && Boolean(searchPanelInfo);

            Object.assign(searchModelParams, {

                fields,

                favoriteFilters,

                controlPanelInfo,

                searchPanelInfo,

            });

        }


Odoo's documentation is very "poor." Therefore it is wery difficult to learn Odoo development.

0
Avatar
Buang
Openindustry.it SAS di Pioveasana Andrea & C.

right, i have the same problem

Yasmine Chenafa

Can't agree more ,even if you post your question you still won't find help

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
Examples of JS Modules Diselesaikan
javascript module
Avatar
Avatar
Avatar
2
Apr 21
3134
Error inheriting javascript
javascript module
Avatar
0
Sep 18
3179
Pass data to Window Action to create a new product Diselesaikan
javascript module
Avatar
Avatar
2
Apr 15
7024
How to display form widget in a custom template?
javascript view
Avatar
Avatar
1
Mar 15
10889
Assign value to selection field using javascript
javascript selection odoo12
Avatar
0
Feb 20
4803
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