Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

add .xml calling script

Odoberať

Get notified when there's activity on this post

This question has been flagged
javascriptxmltemplatesjson
1402 Zobrazenia
Avatar
Gaston Carrera

Hello!, i want edit the ControlPanel for insert some data, wich update when you change of model, for this i add a file "/mymodule/static/src/xml/templates.xml" and declare it in __manyfest__.py


.xml:

?xml version="1.0" encoding="UTF-8"?>
templates>
t t-extend="ControlPanel">
t t-jquery="div.o_cp_mid" t-operation="append">
script type="text/javascript" src="/mymodule/static/src/js/indicadores2.js">/script>

/t>
/t>
/templates>

This call to the "/mymodule/static/src/js/indicadores2.js" script

.js:


odoo.define('mymodule.indicadores2', function (require) {
'use strict';

require('web.dom_ready');
var ajax = require('web.ajax');
var urlc="";
var model="";
if (window.location.href.indexOf('model=')>-1){
​ ​urlc=window.location.href.slice(window.location.href.indexOf('model=')+'model='.length);
model=urlc.slice(0,urlc.indexOf('&'));
};
out=axaj.jsonRpc('/get2_indicadores?model='+model,'call',{}).then(function(data){return data}); This line Crash, trying to call the function"get2_indicadores" on main_controller.py
console.log('res:'+out);
return out
});

 

on Main_controller.py

from odoo import http
from odoo.http import request
class MymoduleControllers(http.Controller):

@http.route('/get2_indicadores', auth="public")
def get2_indicadores(self,**kw):

res = False
out=""
name_model = kw.get('model')
indicadores = request.env['mymodule.indicadores'].sudo().search([('modelo', '=', name_model)])
if indicadores:

out+="h2>Indicadores/h2>br/>"
res={}
for indi in indicadores:
if indi.name0 not in res:
res[indi.name0]=[0.,0.,0.]
if indi.name=='ACTUAL':
res[indi.name0][0]=indi.value_f
elif indi.name=='ESPERADO':
res[indi.name0][1]=indi.value_f
if indi.name=='PROM':
res[indi.name0][2]=indi.value_f
for ky in res.keys():
out+='li>'+ky+':'+str(res[ky][0])+'/'+str(res[ky][1])+'('+str(res[ky][2])+')'+'/li>br/>'

return out


This last function works fine, if i call "localhost:8069/get2_indicadores?model=model_name" manually, but i cannot make to be called him by the .js...


im making overextend steps? or are something wrong? im in odoo12

Thanks!

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Inherit and Custom Field in Template Room Meeting
javascript templates
Avatar
Avatar
2
dec 24
2424
how to reference image in xml
xml templates
Avatar
Avatar
2
dec 23
2789
Error: QWeb2: Template 'Tip' not found
javascript templates
Avatar
0
máj 23
4479
Get data from JS file to XML file Solved
javascript xml
Avatar
Avatar
1
aug 20
9899
access dictionary passed to template from java script
javascript templates
Avatar
0
jún 20
3500
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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