[FIX] remove useless debug messages

bzr revid: nicolas.vanhoren@openerp.com-20130227104226-d75fgyg4iu4igftr
This commit is contained in:
niv-openerp 2013-02-27 11:42:26 +01:00
parent cf49af54a0
commit 650ff2dd5e
1 changed files with 0 additions and 3 deletions

View File

@ -5282,9 +5282,7 @@ instance.web.form.FieldStatus = instance.web.form.AbstractField.extend({
calc_domain: function() {
var d = instance.web.pyeval.eval('domain', this.build_domain());
domain = ['|', ['id', '=', this.get('value')]].concat(d);
console.log("domain", JSON.stringify(domain));
if (! _.isEqual(domain, this.get("evaluated_selection_domain"))) {
console.log("changing domain");
this.set("evaluated_selection_domain", domain);
}
},
@ -5296,7 +5294,6 @@ instance.web.form.FieldStatus = instance.web.form.AbstractField.extend({
get_selection: function() {
var self = this;
var selection = [];
console.log("getselection");
var calculation = _.bind(function() {
if (this.field.type == "many2one") {