blob: a7ce801708d8c09c0f9182e712664f1de4a84167 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
odoo.define('web.Context', function (require) {
"use strict";
var Class = require('web.Class');
var pyUtils = require('web.py_utils');
var Context = Class.extend({
init: function () {
this.__ref = "compound_context";
this.__contexts = [];
this.__eval_context = null;
var self = this;
_.each(arguments, function (x) {
self.add(x);
});
},
//--------------------------------------------------------------------------
// Public
//--------------------------------------------------------------------------
add: function (context) {
this.__contexts.push(context);
return this;
},
eval: function () {
return pyUtils.eval('context', this);
},
/**
* Set the evaluation context to be used when we actually eval.
*
* @param {Object} evalContext
* @returns {Context}
*/
set_eval_context: function (evalContext) {
// a special case needs to be done for moment objects. Dates are
// internally represented by a moment object, but they need to be
// converted to the server format before being sent. We call the toJSON
// method, because it returns the date with the format required by the
// server
for (var key in evalContext) {
if (evalContext[key] instanceof moment) {
evalContext[key] = evalContext[key].toJSON();
}
}
this.__eval_context = evalContext;
return this;
},
});
return Context;
});
|