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 override FormController method?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
formodoo16features
1 Balas
3345 Tampilan
Avatar
Enzo

Hello! I'm somewhat new to odoo and I have this problem:

I need to show a confirmation dialog box when there is no email in a specific model when saving a form, I achieved this by modifying the "saveButtonClicked" function and creating "saveConfirmationDialogProps" as shown below:


get saveConfirmationDialogProps() {

        return {            

​ ​body: this.env._t("¿Estas seguro que quieres guardar este registro sin ​ ​ ​email?"), 

           ​ confirm: async () => {                                

​ ​ ​const record = this.model.root;

​ ​ ​let saved = false;               

​ ​ ​ if (this.props.saveRecord) {                    

​ ​ ​ ​saved = await this.props.saveRecord(record, params);       

​ ​ ​} else {                   

​ ​ ​ ​ saved = await record.save();               

​ ​ ​}                

​ ​ ​if (saved && this.props.onSave) {     

​ ​ ​ ​this.props.onSave(record, params);                

​ ​ ​}            

​ ​},            

​ ​cancel: () => {},        

​};   

 }


async saveButtonClicked(params = {}) {       

​ const record = this.model.root;        

​ let saved = false;        

​ console.log(record);        

​ if (record.resModel === "res.partner" && record.data.email === "") {            ​ ​this.dialogService.add(ConfirmationDialog, ​ ​ ​ ​ ​ ​ ​this.saveConfirmationDialogProps);        

​} else {             

​ ​if (this.props.saveRecord) {                

​ ​ ​saved = await this.props.saveRecord(record, params);            

​ ​} else {               

​ ​ ​ saved = await record.save();            

​ ​}           

​ ​ if (saved && this.props.onSave) {                

​ ​ ​this.props.onSave(record, params);            

​ ​}        

​}       

​ return true;    

}  


This in the form_controller.js file in this path: "C:\Program Files\Odoo 16\server\odoo\addons\web\static\src\views\form\form_controller.js" where I have odoo installed


But I should not modify the odoo source file, I should overwrite it from a script that is in my custom module that is located in another path.


This is the code I implemented:


odoo.define('felsv_parameter.custom_script', function (require) {   

​"use strict";

    ​const FormController = require('web.FormController');   

​const ConfirmationDialog=require('@web/core/confirmation_dialog/confirmation_dialog');    ​alert("Script works")

    ​var CustomFormController = FormController.include({

  ​ ​async saveButtonClicked(params = {}) {            

​ ​ ​alert("save works")            

​ ​​const record = this.model.root;            

​ ​​let saved = false;            

​ ​​if (record.resModel === "res.partner" && record.data.email === "") {         

​ ​ ​​const confirmationDialogProps = {                   

​ ​ ​ ​​body: this.env._t("¿Estás seguro de que deseas guardar este registro sin ​ ​ ​ ​ ​ ​correo ​​electrónico?"),                    

​ ​ ​​ ​confirm: async () => {

​ ​ ​ ​ ​​if (this.props.saveRecord) {                            

​ ​ ​ ​ ​ ​​saved = await this.props.saveRecord(record, params);                

​ ​ ​ ​ ​ ​} else {                            

​ ​ ​ ​ ​ ​ ​saved = await record.save();                        

​ ​ ​ ​ ​​}                        

​ ​ ​ ​​​if (saved && this.props.onSave) {                            

​ ​ ​ ​ ​ ​​this.props.onSave(record, params);                        

​ ​ ​ ​​​}                    

​ ​ ​​​},                    

​ ​ ​ ​​cancel: () => {},                

​ ​​​};                

​ ​​​this.dialogService.add(ConfirmationDialog, confirmationDialogProps);            

​ ​​} else { 

​ ​ ​​if (this.props.saveRecord) {                    

​ ​ ​ ​​saved = await this.props.saveRecord(record, params);                

​ ​ ​​} else {                    

​ ​ ​ ​​saved = await record.save();                

​ ​ ​​}                

​ ​ ​​if (saved && this.props.onSave) {                    

​ ​ ​ ​​this.props.onSave(record, params);                

​ ​ ​​}            

​ ​​}            

​ ​​return true;        

​ ​},    

​});    ​

​console.log("finish");    

​return CustomFormController;

});


The script is executed because it shows me the alert and the console.log at the end but it doesn't overwrite the function because it doesn't show me the second alert("save works") and it doesn't have the behavior that I initially achieved by modifying the odoo file, I have already tried replacing "include" with "extend" but it still doesn't work. 

Does anyone know what I can do?


 




0
Avatar
Buang
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Jawaban Terbai

Hi,

Try this : export default class CustomFormController extends FormController {

        async saveButtonClicked(params = {}) {            


alert("save works")            


const record = this.model.root;            


let saved = false;            


if (record.resModel === "res.partner" && record.data.email === "") {        


const confirmationDialogProps = {                  


body: this.env._t("¿Estás seguro de que deseas guardar este registro sin correo electrónico?"),                    


confirm: async () => {


if (this.props.saveRecord) {                            


saved = await this.props.saveRecord(record, params);                


} else {                            


saved = await record.save();                        


}                        


if (saved && this.props.onSave) {                            


this.props.onSave(record, params);                        


}                    


},                    


cancel: () => {},                


};                


this.dialogService.add(ConfirmationDialog, confirmationDialogProps);            


} else {


if (this.props.saveRecord) {                    


saved = await this.props.saveRecord(record, params);                


} else {                    


saved = await record.save();                


}                


if (saved && this.props.onSave) {                    


this.props.onSave(record, params);                


}            


}            


return true;        


},    


});    


console.log("finish");    


}


Hope it helps

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
Button in all modules
form odoo16features
Avatar
Avatar
Avatar
3
Jun 23
3223
odoo 16 method that can be overriden when a form opens
form view odoo16features
Avatar
Avatar
1
Mei 24
2340
Send an email automatically
mail form odoo16features
Avatar
1
Sep 23
2942
Reset some fields in a form to default value
form reset odoo16features
Avatar
Avatar
1
Jun 23
4427
Submit button redirects to the first page of the notebook of form view
form backend odoo16features
Avatar
0
Apr 23
2391
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