İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

controller is not called ajax form call

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
templateajax
7358 Görünümler
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
Vazgeç
Hilar Andikkadavath

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

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
Template Color
template
Avatar
0
Oca 25
1779
Odoo Free Template
template
Avatar
Avatar
1
Eyl 22
1322
Email templates by commercial / team or company in Odoo 13.V
template
Avatar
0
May 20
3317
Different logo and name for divisions of one company?
template
Avatar
Avatar
Avatar
Avatar
3
Mar 15
11166
Create template for specific object i.e. res.partner
template
Avatar
0
Mar 15
5206
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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