Posts by Riicardo Stifler • 1 point
4 posts
-
0
votes1
answer50
viewsA: Calling System Parameters using Js for Fullcalendar
Here is the answer: odoo.define('anser_ricardo', function (require) { "use strict"; var CalendarModel = require('web.CalendarModel'); CalendarModel.include({ _getFullCalendarOptions: function () {…
-
0
votes1
answer32
viewsA: How to change Calendarview minTime/maxTime/slotDuration?
Here is the solution: odoo.define('anser_ricardo', function (require) { "use strict"; var CalendarModel = require('web.CalendarModel'); CalendarModel.include({ _getFullCalendarOptions: function () {…
-
0
votes1
answer32
viewsQ: How to change Calendarview minTime/maxTime/slotDuration?
I need to change: Slotduration to '00:10:00', minTime to '08:00:00, and maxTime to '22:00:00' without touching the original code call_calendar_change.xml <odoo> <template id="assets_backend…
-
0
votes1
answer50
viewsQ: Calling System Parameters using Js for Fullcalendar
Is there any way to define Fullcalendar minTime/maxTime/slotDuration in the odoo system parameters and then with java call these values and implement in the calendar? i.e. Define 3 System Parameters…