Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Nekilnojamasis turtas
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Konsultavimas
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Maistas
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Saulės energijos sistemos
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Kiti
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

Documentation about "web.rpc" direct on front (Website app)

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
rpcrpcjsonv14
1 Atsakyti
7599 Rodiniai
Portretas
Rafael Ramírez

I want to directly modify the website application in odoo 14. I am using web.rpc for this, in this way but I cannot find documentation to do a more refined search.


odoo.define("website.user_custom_code", function (require) {


;("use strict")
require("web.dom_ready")
rpc = require("web.rpc")

const model = "product.template"
const method = "search_read"

// Use an empty array to search for all the records
const domain = ["fields_get"]
// Use an empty array to read all the fields of the records
const fields = [] //accessoADatos.map(x => x.campo)

const options = {
model,
method,
args: [domain, fields],

}

rpc
.query(options)
.then(products => console.log(products))
.catch(err => console.error(err))
})





1
Portretas
Atmesti
Portretas
Krys.Raj
Best Answer

Hello Rafael,
web.rpc is just the wrapped by odoo web client ajax.rpc() call :)
so to help you, please take a look at the source of this js module:

https://github.com/odoo/odoo/blob/14.0/addons/web/static/src/js/core/rpc.js

take a look at the line 18:

return ajax.rpc(query.route, query.params, options);

you see exactly what parameters to use and that it is using js ajax call..

For the one of the easiest example of use, just analyze this usage from website_sale_shop_mail.js:

https://github.com/odoo/odoo/blob/14.0/addons/website_sale/static/tests/tours/website_sale_shop_mail.js

Hope this helped something..
if it did please vote +1 👍
and if you find it Best answer - make it so 😎

1
Portretas
Atmesti
Rafael Ramírez
Autorius

It is useful, but I realize that my problem is that I do not know how to access the models by name. For example, I can access `product.template`, but I have a boocking module that adds extra media fields. (A downloaded plugin) How to obtain the model to consult ?.

Krys.Raj

Is this module introducing it's own model or just inheriting existing one.. you always should access the table in which you have the field.. if this module is inheritng product.template and adding field to it, to get it's value you need to access product.template, otherwise you need to access newly created model (table) let's call it custom.model

Krys.Raj

if you are asking, where to find the model name and all fields in it you can do it from the source code (look at lines since 12-22)
https://github.com/odoo/odoo/blob/14.0/addons/website_sale/models/product.py

or by going to Settings -> Technical -> Models -> find your model name and description -> click -> and there you have your fields

Rafael Ramírez
Autorius

I am looking for this data in the product, but it seems to be in product.image? How do I get the url of the video?
https://imgur.com/a/6iMMo8O

Krys.Raj

be sure you have developer mode activated (Settings -> Developer tools -> bottom page)
or just add ?debug=1 in the url of you browser right after /web
then if you hover the bolded url, you will find the popup with details of this field

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

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

Registracija
Related Posts Replies Rodiniai Veikla
rpc.query function in js not working when I am not logged in Solved
javascript rpc v14
Portretas
Portretas
2
bal. 21
5349
How can I notify a external system (via a XMLRPC call ou via a URL call) about the validation of an invoice.
integration rpc rpcjson
Portretas
Portretas
1
vas. 16
4755
JSONRPC - sales.order create - Issue with deliery_zone_id
delivery sale.order rpc rpcjson
Portretas
Portretas
2
liep. 24
2545
How to get data to handle after call RPC in JavaScript
javascript rpc JavascriptCallFromOdoo v14
Portretas
Portretas
1
geg. 23
8848
How to get POS Order json in Python upon Validate button of POS in session.(odoo14)
python rpc rpcjson JavascriptCallFromOdoo
Portretas
Portretas
1
rugs. 22
4682
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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