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

Missing dependencies - Javascript

Odoberať

Get notified when there's activity on this post

This question has been flagged
javascriptbackendfrontend11
1 Odpoveď
5628 Zobrazenia
Avatar
Erick Reyes

Hello i have some doubt about the javascript and odoo, i have the following


bus = self.env['bus.bus']

message = {'subject': 'Test','body': 'Nuevo turno','mode': 'sticky','siguiente' : folio }

bus.sendone('notify_turnero_19', message)


i send a message via the bus module


i can catch the message in the odoo backend this way


odoo.define('web_notify.WebClient', function (require) {"use strict";
var WebClient = require('web.WebClient');

var base_bus = require('bus.bus');

var session = require('web.session');console.log(session);
WebClient.include({

show_application:function() {

var res = this._super();this.start_polling();returnres },


start_polling:function() {this.channel_turnero = 'notify_turnero_' + session.uid;


base_bus.bus.add_channel(this.channel_turnero);

base_bus.bus.on('notification', this, this.bus_notification);

base_bus.bus.start_polling(); },


bus_notification:function(notifications) {

varself = this;_.each(notifications, function (notification) { 

varchannel = notification[0];

varmessage = notification[1];

if (channel === self.channel_turnero) {

self.on_message_turnero(message);

} }); },


on_message_turnero:function(message){

console.log(message);

}});
});

In the console.log(message); i get the message if the user id is 19, it work fine. but i need this workflow to work on a page



<recordid="turnero_web"model="ir.ui.view"><fieldname="name">Turnero DUfield><fieldname="type">qwebfield><fieldname="arch"type="xml"><tname="turnero_web"t-name="turnero_web"><tt-call="website.layout">
t>t>field>record>

<recordid="clases_page"model="website.page"><fieldname="url">/turnerofield><fieldname="website_published">Truefield><fieldname="view_id"ref="turnero_web"/>record>


and i called the js in this new page and i get

Missing dependencies: (2) ['web.WebClient', 'bus.bus']
Rejected modules: ['portal.portal']

help me understand how the js works different in a website page, and the normal odoo interface, im working with odoo 11


0
Avatar
Zrušiť
Avatar
Toan Nhu Toan
Best Answer

Have you solved the problem yet? I also had the same problem with you

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
Odoo 11 Javascript: How to get current data from model and fields readonly status? Solved
javascript web backend 11
Avatar
Avatar
1
feb 24
12687
How to resize the file web.assets_backend.js
javascript backend
Avatar
Avatar
2
dec 22
3710
When should I use back-end views and when should I use front-end views? Solved
backend frontend
Avatar
Avatar
2
jún 21
3841
Backend javascript - how transfer current id of form object to script? Solved
javascript backend
Avatar
1
nov 19
19372
odoo (V11) add a new search button to Kanban control panel view
javascript frontend
Avatar
0
mar 19
6216
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