Skip to content
Advertisement

Odoo: how in *.js file get record from db, then change it and re-write?

I added new settings for user by inheriting “res.users” model:

JavaScript

in calendar view i want to read this field and set scale_type when opening this form enter image description here here in calendar_model.js file i want to read this setting from current user enter image description here

and also rewrite current user setting if he chooses diferent type of scale here enter image description here

how can i do this? i tried to use rpc, but i do something wrong and it didn`t work.

Advertisement

Answer

You can override the session_info and add calendar_scale_type to use it later in the calendar model (You will need to override the setScale function).

Example:

  1. Add calendar_scale_type to the session info:

    JavaScript
  2. Override setScale function:

    JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement