Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

controller is not called ajax form call

Naroči se

Get notified when there's activity on this post

This question has been flagged
templateajax
7341 Prikazi
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
Opusti
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!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Template Color
template
Avatar
0
jan. 25
1775
Odoo Free Template
template
Avatar
Avatar
1
sep. 22
1322
Email templates by commercial / team or company in Odoo 13.V
template
Avatar
0
maj 20
3311
Different logo and name for divisions of one company?
template
Avatar
Avatar
Avatar
Avatar
3
mar. 15
11161
Create template for specific object i.e. res.partner
template
Avatar
0
mar. 15
5205
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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