I added new settings for user by inheriting “res.users” model:
JavaScript
x
7
1
calendar_scale_type = fields.Selection([
2
('day', 'Day'),
3
('week', 'Week'),
4
('month', 'Month'),
5
('year', 'Year')],
6
'Type of calendar scaling', default='week')
7
in calendar view i want to read this field and set scale_type when opening this form
here in calendar_model.js file i want to read this setting from current user
and also rewrite current user setting if he chooses diferent type of scale 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:
Add
calendar_scale_type
to the session info:JavaScript181class Http(models.AbstractModel):
2_inherit = 'ir.http'
3
4def session_info(self):
5session_info = super(Http, self).session_info()
6session_info['calendar_scale_type'] = self.env.user.calendar_scale_type
7return session_info
8
Override
setScale
function:JavaScript116161/* @odoo-module */
2
3import CalendarModel from '@calendar/js/calendar_model';
4import { session } from "@web/session";
5
6CalendarModel.include({
7
8setScale: function (scale) {
9if (!_.contains(this.scales, scale)) {
10scale = session.calendar_scale_type;
11}
12this._super(scale);
13},
14
15});
16