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
    • Discuss
    • 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

controller is not called ajax form call

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
templateajax
7458 Tampilan
Avatar
ajit

One template have 2 t-name. one gets data from py another one is for send getting data to py for operation. When call py controler method through ajax from one form with t-name it works but when call from another form with different t-name it not call the py method in odoo 10. i written this js code and xml code. plz find a solution for who to call py controller method.

openerp.sass_modules_configuration = function (instance) {

var QWeb = instance.web.qweb;

instance.web.client_actions.add('get_modules', 'instance.web.DataGenericImport');

instance.web.DataGenericImport = instance.web.Widget.extend({

template: 'GenericMapView',

init: function (parent, action) {

var self = this;

this._super.apply(this, arguments);

this.res_model = action.params.model;

this.parent_context = action.params.context || {};

this.id = null;

},

start: function () {

 

var self = this;

this.$(".get_modules").click(function() {

$.ajax({

url: "/sass_modules_configuration/get_modules",

type: "POST",

dataType: 'json',

traditional: true,

async: false,

beforeSend: function() {

$('body').prepend('<div id="ajaxFormLoader" style="position:fixed; top:0; right: 0; bottom:0; left:0; z-index: 10000; background: rgba(51, 136, 204, 0.3) url('+loaderIcon+') no-repeat center;"></div>');

},

success: function(data){

var installed_modules = []

var uninstalled_modules = []

for (var i=0; i<data.installed_modules.length;i++){

installed_modules.push(data.installed_modules[i]);

}

for (var i=0; i<data.uninstalled_modules.length;i++){

uninstalled_modules.push(data.uninstalled_modules[i]);

}  

return self.$el.html(QWeb.render('GenericMappedtView',{'installed_module_list': installed_modules,'uninstalled_module_list': uninstalled_modules}));

}

});

});

$('.install-modules').click(function(){

var self = this;

var product_data = new FormData();

var request = new XMLHttpRequest();

request.onreadystatechange = function() {

if (request.readyState === 4){

if( request.status == 200) {

}

}

};

console.log(product_data);

request.open("POST", "/sass_modules_configuration/install_modules");

request.send(product_data);

});

}

});

};

xml code -->>

<template id="template" xml:space="preserve">

<t t-name="GenericMapView">

<form action="" method="post" enctype="multipart/form-data" class="oe_import" id="form">

<div class="oe_view_manager oe_view_manager_current">

<div class="oe_view_manager_header">

<h1 class="align">Manage Modules</h1>

</div>

</div>

<div class="oe_import_box">

<button class='get_modules btn btn-info' type="button">Get Modules</button>

</div>

<!-- <div id="flash_success" style="padding-left:0 15px; 15px 0"/> -->

</form>

</t>

<t t-name="GenericMappedtView">

<form action="/sass_modules_configuration/install_modules" method="post" >

<input type="hidden" name="csrf_token" t-att-value="csrf_token"/>

<div class="oe_import_box">

<span><h1 class="align">Manage Modules</h1></span>

<div class="display_list oe_import_box">

<div><h2 class="align">Installed Modules<hr/></h2></div>

<div>

<ul>

<li t-foreach="installed_module_list" t-as="module">

<input type="checkbox" name="installed" checked="checked" readonly="True" t-att-value="module"/>

<label for="installed"><t t-esc="module"/></label>

</li>

</ul>

</div>

</div>

<div class="display_list oe_import_box">

<div><h2 class="align">Not Installed Modules<hr/></h2></div>

<button class='install-modules btn btn-info' type="button">Install</button>

<div>

<ul>

<li t-foreach="uninstalled_module_list" t-as="module">

<input type="checkbox" name="uninstalled" id="to_install" t-att-value="module"/>

<label for="uninstalled"><t t-esc="module"/></label>

</li>

</ul>

</div>

</div>

</div>

</form>

</t>

</template>

0
Avatar
Buang
Hilar Andikkadavath

update question with the route, also check the type given in route.

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
Template Color
template
Avatar
0
Jan 25
1869
Odoo Free Template
template
Avatar
Avatar
1
Sep 22
1322
Email templates by commercial / team or company in Odoo 13.V
template
Avatar
0
Mei 20
3424
Different logo and name for divisions of one company?
template
Avatar
Avatar
Avatar
Avatar
3
Mar 15
11325
Create template for specific object i.e. res.partner
template
Avatar
0
Mar 15
5340
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