[IMP] Use label@colspan in order to diferentiate fields label from paragraph
[odoo/odoo.git] / addons / base / static / src / js / form.js
1 openerp.base.form = function (openerp) {
2
3 openerp.base.views.add('form', 'openerp.base.FormView');
4 openerp.base.FormView =  openerp.base.View.extend( /** @lends openerp.base.FormView# */{
5     /**
6      * Indicates that this view is not searchable, and thus that no search
7      * view should be displayed (if there is one active).
8      */
9     searchable: false,
10     template: "FormView",
11     /**
12      * @constructs
13      * @param {openerp.base.Session} session the current openerp session
14      * @param {String} element_id this view's root element id
15      * @param {openerp.base.DataSet} dataset the dataset this view will work with
16      * @param {String} view_id the identifier of the OpenERP view object
17      *
18      * @property {openerp.base.Registry} registry=openerp.base.form.widgets widgets registry for this form view instance
19      */
20     init: function(view_manager, session, element_id, dataset, view_id) {
21         this._super(session, element_id);
22         this.view_manager = view_manager || new openerp.base.NullViewManager();
23         this.dataset = dataset;
24         this.model = dataset.model;
25         this.view_id = view_id;
26         this.fields_view = {};
27         this.widgets = {};
28         this.widgets_counter = 0;
29         this.fields = {};
30         this.datarecord = {};
31         this.ready = false;
32         this.show_invalid = true;
33         this.touched = false;
34         this.flags = this.view_manager.flags || {};
35         this.default_focus_field = null;
36         this.default_focus_button = null;
37         this.registry = openerp.base.form.widgets;
38         this.has_been_loaded = $.Deferred();
39         this.$form_header = null;
40     },
41     start: function() {
42         //this.log('Starting FormView '+this.model+this.view_id)
43         if (this.embedded_view) {
44             return $.Deferred().then(this.on_loaded).resolve({fields_view: this.embedded_view});
45         } else {
46             var context = new openerp.base.CompoundContext(this.dataset.context);
47             if (this.view_manager.action && this.view_manager.action.context) {
48                 context.add(this.view_manager.action.context);
49             }
50             return this.rpc("/base/formview/load", {"model": this.model, "view_id": this.view_id,
51                 toolbar:!!this.flags.sidebar, context: context}, this.on_loaded);
52         }
53     },
54     on_loaded: function(data) {
55         var self = this;
56         this.fields_view = data.fields_view;
57         var frame = new (this.registry.get_object('frame'))(this, this.fields_view.arch);
58
59         this.$element.html(QWeb.render(this.template, { 'frame': frame, 'view': this }));
60         _.each(this.widgets, function(w) {
61             w.start();
62         });
63         this.$form_header = this.$element.find('#' + this.element_id + '_header');
64         this.$form_header.find('div.oe_form_pager button[data-pager-action]').click(function() {
65             var action = $(this).data('pager-action');
66             self.on_pager_action(action);
67         });
68
69         this.$form_header.find('button.oe_form_button_save').click(this.do_save);
70         this.$form_header.find('button.oe_form_button_save_edit').click(this.do_save_edit);
71         this.$form_header.find('button.oe_form_button_cancel').click(this.do_cancel);
72         this.$form_header.find('button.oe_form_button_new').click(this.on_button_new);
73
74         this.view_manager.sidebar.set_toolbar(data.fields_view.toolbar);
75         this.has_been_loaded.resolve();
76     },
77     do_show: function () {
78         var self = this;
79         if (this.dataset.index === null) {
80             // null index means we should start a new record
81             this.on_button_new();
82         } else {
83             this.dataset.read_index(_.keys(this.fields_view.fields), this.on_record_loaded);
84         }
85         self.$element.show();
86         this.view_manager.sidebar.do_refresh(true);
87     },
88     do_hide: function () {
89         this.$element.hide();
90     },
91     on_record_loaded: function(record) {
92         if (!record) {
93             throw("Form: No record received");
94         }
95         if (!record.id) {
96             this.$form_header.find('.oe_form_on_create').show();
97             this.$form_header.find('.oe_form_on_update').hide();
98             this.$form_header.find('button.oe_form_button_new').hide();
99         } else {
100             this.$form_header.find('.oe_form_on_create').hide();
101             this.$form_header.find('.oe_form_on_update').show();
102             this.$form_header.find('button.oe_form_button_new').show();
103         }
104         this.touched = false;
105         this.datarecord = record;
106         for (var f in this.fields) {
107             var field = this.fields[f];
108             field.touched = false;
109             field.set_value(this.datarecord[f] || false);
110             field.validate();
111         }
112         if (!record.id) {
113             // New record: Second pass in order to trigger the onchanges
114             this.touched = true;
115             this.show_invalid = false;
116             for (var f in record) {
117                 var field = this.fields[f];
118                 if (field) {
119                     field.touched = true;
120                     this.do_onchange(field);
121                 }
122             }
123         }
124         this.on_form_changed();
125         this.show_invalid = this.ready = true;
126         this.do_update_pager(record.id == null);
127         this.do_update_sidebar();
128         if (this.default_focus_field) {
129             this.default_focus_field.focus();
130         }
131     },
132     on_form_changed: function() {
133         for (var w in this.widgets) {
134             w = this.widgets[w];
135             w.process_attrs();
136             w.update_dom();
137         }
138     },
139     on_pager_action: function(action) {
140         switch (action) {
141             case 'first':
142                 this.dataset.index = 0;
143                 break;
144             case 'previous':
145                 this.dataset.previous();
146                 break;
147             case 'next':
148                 this.dataset.next();
149                 break;
150             case 'last':
151                 this.dataset.index = this.dataset.ids.length - 1;
152                 break;
153         }
154         this.reload();
155     },
156     do_update_pager: function(hide_index) {
157         var $pager = this.$element.find('#' + this.element_id + '_header div.oe_form_pager');
158         var index = hide_index ? '-' : this.dataset.index + 1;
159         $pager.find('span.oe_pager_index').html(index);
160         $pager.find('span.oe_pager_count').html(this.dataset.count);
161     },
162     do_onchange: function(widget, processed) {
163         processed = processed || [];
164         if (widget.node.attrs.on_change) {
165             var self = this;
166             this.ready = false;
167             var onchange = _.trim(widget.node.attrs.on_change);
168             var call = onchange.match(/^\s?(.*?)\((.*?)\)\s?$/);
169             console.log("Onchange triggered for field '%s' -> %s", widget.name, onchange);
170             if (call) {
171                 var method = call[1], args = [];
172                 var argument_replacement = {
173                     'False' : false,
174                     'True' : true,
175                     'None' : null
176                 }
177                 _.each(call[2].split(','), function(a) {
178                     var field = _.trim(a);
179                     if (field in argument_replacement) {
180                         args.push(argument_replacement[field]);
181                     } else if (self.fields[field]) {
182                         var value = self.fields[field].get_value();
183                         args.push(value == null ? false : value);
184                     } else {
185                         args.push(false);
186                         self.log("warning : on_change can't find field " + field, onchange);
187                     }
188                 });
189                 var ajax = {
190                     url: '/base/dataset/call',
191                     async: false
192                 };
193                 return this.rpc(ajax, {
194                     model: this.dataset.model,
195                     method: method,
196                     args: [(this.datarecord.id == null ? [] : [this.datarecord.id])].concat(args)
197                 }, function(response) {
198                     self.on_processed_onchange(response, processed);
199                 });
200             } else {
201                 this.log("Wrong on_change format", on_change);
202             }
203         }
204     },
205     on_processed_onchange: function(response, processed) {
206         var result = response.result;
207         if (result.value) {
208             console.log("      |-> Onchange Response :", result.value);
209             for (var f in result.value) {
210                 var field = this.fields[f];
211                 if (field) {
212                     var value = result.value[f];
213                     processed.push(field.name);
214                     if (field.get_value() != value) {
215                         console.log("          |-> Onchange Action :  change '%s' value from '%s' to '%s'", field.name, field.get_value(), value);
216                         field.set_value(value);
217                         if (_.indexOf(processed, field.name) < 0) {
218                             this.do_onchange(field, processed);
219                         }
220                     }
221                 } else {
222                     this.log("warning : on_processed_onchange can't find field " + field, result);
223                 }
224             }
225             this.on_form_changed();
226         }
227         if (result.warning) {
228             $(QWeb.render("DialogWarning", result.warning)).dialog({
229                 modal: true,
230                 buttons: {
231                     Ok: function() {
232                         $(this).dialog("close");
233                     }
234                 }
235             });
236         }
237         if (result.domain) {
238             // Will be removed ?
239         }
240         this.ready = true;
241     },
242     on_button_new: function() {
243         var self = this;
244         $.when(this.has_been_loaded).then(function() {
245             self.dataset.default_get(_.keys(self.fields_view.fields), function(result) {
246                 self.on_record_loaded(result.result);
247             });
248         });
249     },
250     /**
251      * Triggers saving the form's record. Chooses between creating a new
252      * record or saving an existing one depending on whether the record
253      * already has an id property.
254      *
255      * @param {Function} success callback on save success
256      * @param {Boolean} [prepend_on_create=false] if ``do_save`` creates a new record, should that record be inserted at the start of the dataset (by default, records are added at the end)
257      */
258     do_save: function(success, prepend_on_create) {
259         var self = this;
260         if (!this.ready) {
261             return false;
262         }
263         var invalid = false,
264             values = {},
265             first_invalid_field = null;
266         for (var f in this.fields) {
267             f = this.fields[f];
268             if (f.invalid) {
269                 invalid = true;
270                 f.update_dom();
271                 if (!first_invalid_field) {
272                     first_invalid_field = f;
273                 }
274             } else if (f.touched) {
275                 values[f.name] = f.get_value();
276             }
277         }
278         if (invalid) {
279             first_invalid_field.focus();
280             this.on_invalid();
281             return false;
282         } else {
283             this.log("About to save", values);
284             if (!this.datarecord.id) {
285                 this.dataset.create(values, function(r) {
286                     self.on_created(r, success, prepend_on_create);
287                 });
288             } else {
289                 this.dataset.write(this.datarecord.id, values, function(r) {
290                     self.on_saved(r, success);
291                 });
292             }
293             return true;
294         }
295     },
296     do_save_edit: function() {
297         this.do_save();
298         //this.switch_readonly(); Use promises
299     },
300     switch_readonly: function() {
301     },
302     switch_editable: function() {
303     },
304     on_invalid: function() {
305         var msg = "<ul>";
306         _.each(this.fields, function(f) {
307             if (f.invalid) {
308                 msg += "<li>" + f.string + "</li>";
309             }
310         });
311         msg += "</ul>";
312         this.notification.warn("The following fields are invalid :", msg);
313     },
314     on_saved: function(r, success) {
315         if (!r.result) {
316             this.notification.warn("Record not saved", "Problem while saving record.");
317         } else {
318             this.notification.notify("Record saved", "The record #" + this.datarecord.id + " has been saved.");
319             if (success) {
320                 success(r);
321             }
322             this.reload();
323         }
324     },
325     /**
326      * Updates the form' dataset to contain the new record:
327      *
328      * * Adds the newly created record to the current dataset (at the end by
329      *   default)
330      * * Selects that record (sets the dataset's index to point to the new
331      *   record's id).
332      * * Updates the pager and sidebar displays
333      *
334      * @param {Object} r
335      * @param {Function} success callback to execute after having updated the dataset
336      * @param {Boolean} [prepend_on_create=false] adds the newly created record at the beginning of the dataset instead of the end
337      */
338     on_created: function(r, success, prepend_on_create) {
339         if (!r.result) {
340             this.notification.warn("Record not created", "Problem while creating record.");
341         } else {
342             this.datarecord.id = r.result;
343             if (!prepend_on_create) {
344                 this.dataset.ids.push(this.datarecord.id);
345                 this.dataset.index = this.dataset.ids.length - 1;
346             } else {
347                 this.dataset.ids.unshift(this.datarecord.id);
348                 this.dataset.index = 0;
349             }
350             this.dataset.count++;
351             this.do_update_pager();
352             this.do_update_sidebar();
353             this.notification.notify("Record created", "The record has been created with id #" + this.datarecord.id);
354             if (success) {
355                 success(_.extend(r, {created: true}));
356             }
357             this.reload();
358         }
359     },
360     do_search: function (domains, contexts, groupbys) {
361         this.notification.notify("Searching form");
362     },
363     on_action: function (action) {
364         this.notification.notify('Executing action ' + action);
365     },
366     do_cancel: function () {
367         this.notification.notify("Cancelling form");
368     },
369     do_update_sidebar: function() {
370         if (this.flags.sidebar === false) {
371             return;
372         }
373         if (!this.datarecord.id) {
374             this.on_attachments_loaded([]);
375         } else {
376             // TODO fme: modify this so it doesn't try to load attachments when there is not sidebar
377             /*this.rpc('/base/dataset/search_read', {
378                 model: 'ir.attachment',
379                 fields: ['name', 'url', 'type'],
380                 domain: [['res_model', '=', this.dataset.model], ['res_id', '=', this.datarecord.id], ['type', 'in', ['binary', 'url']]],
381                 context: this.dataset.context
382             }, this.on_attachments_loaded);*/
383         }
384     },
385     on_attachments_loaded: function(attachments) {
386         this.$sidebar = this.view_manager.sidebar.$element.find('.sidebar-attachments');
387         this.attachments = attachments;
388         this.$sidebar.html(QWeb.render('FormView.sidebar.attachments', this));
389         this.$sidebar.find('.oe-sidebar-attachment-delete').click(this.on_attachment_delete);
390         this.$sidebar.find('.oe-binary-file').change(this.on_attachment_changed);
391     },
392     on_attachment_changed: function(e) {
393         window[this.element_id + '_iframe'] = this.do_update_sidebar;
394         var $e = $(e.target);
395         if ($e.val() != '') {
396             this.$sidebar.find('form.oe-binary-form').submit();
397             $e.parent().find('input[type=file]').attr('disabled', 'true');
398             $e.parent().find('button').attr('disabled', 'true').find('img, span').toggle();
399         }
400     },
401     on_attachment_delete: function(e) {
402         var self = this, $e = $(e.currentTarget);
403         var name = _.trim($e.parent().find('a.oe-sidebar-attachments-link').text());
404         if (confirm("Do you really want to delete the attachment " + name + " ?")) {
405             this.rpc('/base/dataset/unlink', {
406                 model: 'ir.attachment',
407                 ids: [parseInt($e.attr('data-id'))]
408             }, function(r) {
409                 $e.parent().remove();
410                 self.notification.notify("Delete an attachment", "The attachment '" + name + "' has been deleted");
411             });
412         }
413     },
414     reload: function() {
415         if (this.datarecord.id) {
416             this.dataset.read_index(_.keys(this.fields_view.fields), this.on_record_loaded);
417         } else {
418             this.on_button_new();
419         }
420     },
421     get_fields_values: function() {
422         var values = {};
423         _.each(this.fields, function(value, key) {
424             values[key] = value.get_value();
425         });
426         return values;
427     }
428 });
429
430 /** @namespace */
431 openerp.base.form = {};
432
433 openerp.base.form.compute_domain = function(expr, fields) {
434     var stack = [];
435     for (var i = expr.length - 1; i >= 0; i--) {
436         var ex = expr[i];
437         if (ex.length == 1) {
438             var top = stack.pop();
439             switch (ex) {
440                 case '|':
441                     stack.push(stack.pop() || top);
442                     continue;
443                 case '&':
444                     stack.push(stack.pop() && top);
445                     continue;
446                 case '!':
447                     stack.push(!top);
448                     continue;
449                 default:
450                     throw new Error('Unknown domain operator ' + ex);
451             }
452         }
453
454         var field = fields[ex[0]].get_value ? fields[ex[0]].get_value() : fields[ex[0]].value;
455         var op = ex[1];
456         var val = ex[2];
457
458         switch (op.toLowerCase()) {
459             case '=':
460             case '==':
461                 stack.push(field == val);
462                 break;
463             case '!=':
464             case '<>':
465                 stack.push(field != val);
466                 break;
467             case '<':
468                 stack.push(field < val);
469                 break;
470             case '>':
471                 stack.push(field > val);
472                 break;
473             case '<=':
474                 stack.push(field <= val);
475                 break;
476             case '>=':
477                 stack.push(field >= val);
478                 break;
479             case 'in':
480                 stack.push(_(val).contains(field));
481                 break;
482             case 'not in':
483                 stack.push(!_(val).contains(field));
484                 break;
485             default:
486                 this.log("Unsupported operator in attrs :", op);
487         }
488     }
489     return _.all(stack);
490 };
491
492 openerp.base.form.Widget = openerp.base.Controller.extend({
493     template: 'Widget',
494     init: function(view, node) {
495         this.view = view;
496         this.node = node;
497         this.attrs = JSON.parse(this.node.attrs.attrs || '{}');
498         this.type = this.type || node.tag;
499         this.element_name = this.element_name || this.type;
500         this.element_id = [this.view.element_id, this.element_name, this.view.widgets_counter++].join("_");
501
502         this._super(this.view.session, this.element_id);
503
504         this.view.widgets[this.element_id] = this;
505         this.children = node.children;
506         this.colspan = parseInt(node.attrs.colspan || 1);
507
508         this.string = this.string || node.attrs.string;
509         this.help = this.help || node.attrs.help;
510         this.invisible = (node.attrs.invisible == '1');
511     },
512     start: function() {
513         this.$element = $('#' + this.element_id);
514     },
515     process_attrs: function() {
516         var compute_domain = openerp.base.form.compute_domain;
517         for (var a in this.attrs) {
518             this[a] = compute_domain(this.attrs[a], this.view.fields);
519         }
520     },
521     update_dom: function() {
522         this.$element.toggle(!this.invisible);
523     },
524     render: function() {
525         var template = this.template;
526         return QWeb.render(template, { "widget": this });
527     }
528 });
529
530 openerp.base.form.WidgetFrame = openerp.base.form.Widget.extend({
531     template: 'WidgetFrame',
532     init: function(view, node) {
533         this._super(view, node);
534         this.columns = node.attrs.col || 4;
535         this.x = 0;
536         this.y = 0;
537         this.table = [];
538         this.add_row();
539         for (var i = 0; i < node.children.length; i++) {
540             var n = node.children[i];
541             if (n.tag == "newline") {
542                 this.add_row();
543             } else {
544                 this.handle_node(n);
545             }
546         }
547         this.set_row_cells_with(this.table[this.table.length - 1]);
548     },
549     add_row: function(){
550         if (this.table.length) {
551             this.set_row_cells_with(this.table[this.table.length - 1]);
552         }
553         var row = [];
554         this.table.push(row);
555         this.x = 0;
556         this.y += 1;
557         return row;
558     },
559     set_row_cells_with: function(row) {
560         for (var i = 0; i < row.length; i++) {
561             var w = row[i];
562             if (w.is_field_label) {
563                 w.width = "1%";
564                 if (row[i + 1]) {
565                     row[i + 1].width = Math.round((100 / this.columns) * (w.colspan + 1) - 1) + '%';
566                 }
567             } else if (w.width === undefined) {
568                 w.width = Math.round((100 / this.columns) * w.colspan) + '%';
569             }
570         }
571     },
572     handle_node: function(node) {
573         var type = this.view.fields_view.fields[node.attrs.name] || {};
574         var widget = new (this.view.registry.get_any(
575                 [node.attrs.widget, type.type, node.tag])) (this.view, node);
576         if (node.tag == 'field') {
577             if (!this.view.default_focus_field || node.attrs.default_focus == '1') {
578                 this.view.default_focus_field = widget;
579             }
580             if (node.attrs.nolabel != '1') {
581                 var label = new (this.view.registry.get_object('label')) (this.view, node);
582                 label["for"] = widget;
583                 this.add_widget(label);
584             }
585         }
586         this.add_widget(widget);
587     },
588     add_widget: function(widget) {
589         var current_row = this.table[this.table.length - 1];
590         if (current_row.length && (this.x + widget.colspan) > this.columns) {
591             current_row = this.add_row();
592         }
593         current_row.push(widget);
594         this.x += widget.colspan;
595         return widget;
596     }
597 });
598
599 openerp.base.form.WidgetNotebook = openerp.base.form.Widget.extend({
600     init: function(view, node) {
601         this._super(view, node);
602         this.template = "WidgetNotebook";
603         this.pages = [];
604         for (var i = 0; i < node.children.length; i++) {
605             var n = node.children[i];
606             if (n.tag == "page") {
607                 var page = new openerp.base.form.WidgetFrame(this.view, n);
608                 this.pages.push(page);
609             }
610         }
611     },
612     start: function() {
613         this._super.apply(this, arguments);
614         this.$element.tabs();
615     }
616 });
617
618 openerp.base.form.WidgetSeparator = openerp.base.form.Widget.extend({
619     init: function(view, node) {
620         this._super(view, node);
621         this.template = "WidgetSeparator";
622     }
623 });
624
625 openerp.base.form.WidgetButton = openerp.base.form.Widget.extend({
626     init: function(view, node) {
627         this._super(view, node);
628         this.template = "WidgetButton";
629         if (node.attrs.default_focus == '1') {
630             // TODO fme: provide enter key binding to widgets
631             this.view.default_focus_button = this;
632         }
633     },
634     start: function() {
635         this._super.apply(this, arguments);
636         this.$element.click(this.on_click);
637     },
638     on_click: function(saved) {
639         var self = this;
640         if (!this.node.attrs.special && this.view.touched && saved !== true) {
641             this.view.do_save(function() {
642                 self.on_click(true);
643             });
644         } else {
645             if (this.node.attrs.confirm) {
646                 var dialog = $('<div>' + this.node.attrs.confirm + '</div>').dialog({
647                     title: 'Confirm',
648                     modal: true,
649                     buttons: {
650                         Ok: function() {
651                             self.on_confirmed();
652                             $(this).dialog("close");
653                         },
654                         Cancel: function() {
655                             $(this).dialog("close");
656                         }
657                     }
658                 });
659             } else {
660                 this.on_confirmed();
661             }
662         }
663     },
664     on_confirmed: function() {
665         var self = this;
666
667         this.view.execute_action(
668             this.node.attrs, this.view.dataset, this.session.action_manager,
669             this.view.datarecord.id, function (result) {
670                 self.log("Button returned", result);
671                 self.view.reload();
672             }, function() {
673                 self.view.reload();
674             });
675     }
676 });
677
678 openerp.base.form.WidgetLabel = openerp.base.form.Widget.extend({
679     init: function(view, node) {
680         this.element_name = 'label_' + node.attrs.name;
681
682         this._super(view, node);
683
684         // TODO fme: support for attrs.align
685         if (this.node.tag == 'label' && this.node.attrs.colspan) {
686             this.is_field_label = false;
687             this.template = "WidgetParagraph";
688         } else {
689             this.is_field_label = true;
690             this.template = "WidgetLabel";
691         }
692         this.colspan = 1;
693     },
694     render: function () {
695         if (this['for'] && this.type !== 'label') {
696             return QWeb.render(this.template, {widget: this['for']});
697         }
698         // Actual label widgets should not have a false and have type label
699         return QWeb.render(this.template, {widget: this});
700     }
701 });
702
703 openerp.base.form.Field = openerp.base.form.Widget.extend({
704     init: function(view, node) {
705         this.name = node.attrs.name;
706         this.value = undefined;
707         view.fields[this.name] = this;
708         this.type = node.attrs.widget || view.fields_view.fields[node.attrs.name].type;
709         this.element_name = "field_" + this.name + "_" + this.type;
710
711         this._super(view, node);
712
713         if (node.attrs.nolabel != '1' && this.colspan > 1) {
714             this.colspan--;
715         }
716         this.field = view.fields_view.fields[node.attrs.name] || {};
717         this.string = node.attrs.string || this.field.string;
718         this.help = node.attrs.help || this.field.help;
719         this.invisible = (this.invisible || this.field.invisible == '1');
720         this.nolabel = (this.field.nolabel || node.attrs.nolabel) == '1';
721         this.readonly = (this.field.readonly || node.attrs.readonly) == '1';
722         this.required = (this.field.required || node.attrs.required) == '1';
723         this.invalid = false;
724         this.touched = false;
725     },
726     set_value: function(value) {
727         this.value = value;
728         this.invalid = false;
729         this.update_dom();
730     },
731     set_value_from_ui: function() {
732         this.value = undefined;
733     },
734     get_value: function() {
735         return this.value;
736     },
737     update_dom: function() {
738         this._super.apply(this, arguments);
739         this.$element.toggleClass('disabled', this.readonly);
740         this.$element.toggleClass('required', this.required);
741         if (this.view.show_invalid) {
742             this.$element.toggleClass('invalid', this.invalid);
743         }
744     },
745     on_ui_change: function() {
746         this.touched = this.view.touched = true;
747         this.validate();
748         if (!this.invalid) {
749             this.set_value_from_ui();
750             this.view.do_onchange(this);
751             this.view.on_form_changed();
752         } else {
753             this.update_dom();
754         }
755     },
756     validate: function() {
757         this.invalid = false;
758     },
759     focus: function() {
760     }
761 });
762
763 openerp.base.form.FieldChar = openerp.base.form.Field.extend({
764     init: function(view, node) {
765         this._super(view, node);
766         this.template = "FieldChar";
767     },
768     start: function() {
769         this._super.apply(this, arguments);
770         this.$element.find('input').change(this.on_ui_change);
771     },
772     set_value: function(value) {
773         this._super.apply(this, arguments);
774         var show_value = (value != null && value !== false) ? value : '';
775         this.$element.find('input').val(show_value);
776     },
777     update_dom: function() {
778         this._super.apply(this, arguments);
779         this.$element.find('input').attr('disabled', this.readonly);
780     },
781     set_value_from_ui: function() {
782         this.value = this.$element.find('input').val();
783     },
784     validate: function() {
785         this.invalid = false;
786         var value = this.$element.find('input').val();
787         if (value === "") {
788             this.invalid = this.required;
789         } else if (this.validation_regex) {
790             this.invalid = !this.validation_regex.test(value);
791         }
792     },
793     focus: function() {
794         this.$element.find('input').focus();
795     }
796 });
797
798 openerp.base.form.FieldEmail = openerp.base.form.FieldChar.extend({
799     init: function(view, node) {
800         this._super(view, node);
801         this.template = "FieldEmail";
802         this.validation_regex = /@/;
803     },
804     start: function() {
805         this._super.apply(this, arguments);
806         this.$element.find('button').click(this.on_button_clicked);
807     },
808     on_button_clicked: function() {
809         if (!this.value || this.invalid) {
810             this.notification.warn("E-mail error", "Can't send email to invalid e-mail address");
811         } else {
812             location.href = 'mailto:' + this.value;
813         }
814     },
815     set_value: function(value) {
816         this._super.apply(this, arguments);
817         var show_value = (value != null && value !== false) ? value : '';
818         this.$element.find('a').attr('href', 'mailto:' + show_value);
819     }
820 });
821
822 openerp.base.form.FieldUrl = openerp.base.form.FieldChar.extend({
823     init: function(view, node) {
824         this._super(view, node);
825         this.template = "FieldUrl";
826     },
827     start: function() {
828         this._super.apply(this, arguments);
829         this.$element.find('button').click(this.on_button_clicked);
830     },
831     on_button_clicked: function() {
832         if (!this.value) {
833             this.notification.warn("Resource error", "This resource is empty");
834         } else {
835             window.open(this.value);
836         }
837     }
838 });
839
840 openerp.base.form.FieldFloat = openerp.base.form.FieldChar.extend({
841     init: function(view, node) {
842         this._super(view, node);
843         this.validation_regex = /^-?\d+(\.\d+)?$/;
844     },
845     set_value: function(value) {
846         this._super.apply(this, [value]);
847         if (value === false || value === undefined) {
848             // As in GTK client, floats default to 0
849             value = 0;
850         }
851         var show_value = value.toFixed(2);
852         this.$element.find('input').val(show_value);
853     },
854     set_value_from_ui: function() {
855         this.value = Number(this.$element.find('input').val().replace(/,/g, '.'));
856     }
857 });
858
859 openerp.base.form.FieldDatetime = openerp.base.form.Field.extend({
860     init: function(view, node) {
861         this._super(view, node);
862         this.template = "FieldDate";
863         this.jqueryui_object = 'datetimepicker';
864     },
865     start: function() {
866         this._super.apply(this, arguments);
867         this.$element.find('input').change(this.on_ui_change)[this.jqueryui_object]({
868             dateFormat: 'yy-mm-dd',
869             timeFormat: 'hh:mm:ss'
870         });
871     },
872     set_value: function(value) {
873         this._super.apply(this, arguments);
874         if (value == null || value == false) {
875             this.$element.find('input').val('');
876         } else {
877             this.$element.find('input').unbind('change');
878             // jQuery UI date picker wrongly call on_change event herebelow
879             this.$element.find('input')[this.jqueryui_object]('setDate', this.parse(value));
880             this.$element.find('input').change(this.on_ui_change);
881         }
882     },
883     set_value_from_ui: function() {
884         this.value = this.$element.find('input')[this.jqueryui_object]('getDate') || false;
885         if (this.value) {
886             this.value = this.format(this.value);
887         }
888     },
889     validate: function() {
890         this.invalid = this.required && !this.$element.find('input')[this.jqueryui_object]('getDate');
891     },
892     focus: function() {
893         this.$element.find('input').focus();
894     },
895     parse: openerp.base.parse_datetime,
896     format: openerp.base.format_datetime
897 });
898
899 openerp.base.form.FieldDate = openerp.base.form.FieldDatetime.extend({
900     init: function(view, node) {
901         this._super(view, node);
902         this.jqueryui_object = 'datepicker';
903     },
904     parse: openerp.base.parse_date,
905     format: openerp.base.format_date
906 });
907
908 openerp.base.form.FieldFloatTime = openerp.base.form.FieldChar.extend({
909     init: function(view, node) {
910         this._super(view, node);
911         this.validation_regex = /^\d+:\d+$/;
912     },
913     set_value: function(value) {
914         this._super.apply(this, [value]);
915         if (value === false || value === undefined) {
916             // As in GTK client, floats default to 0
917             value = 0;
918         }
919         var show_value = _.sprintf("%02d:%02d", Math.floor(value), Math.round((value % 1) * 60));
920         this.$element.find('input').val(show_value);
921     },
922     set_value_from_ui: function() {
923         var time = this.$element.find('input').val().split(':');
924         this.set_value(parseInt(time[0], 10) + parseInt(time[1], 10) / 60);
925     }
926 });
927
928 openerp.base.form.FieldText = openerp.base.form.Field.extend({
929     init: function(view, node) {
930         this._super(view, node);
931         this.template = "FieldText";
932         this.validation_regex = null;
933     },
934     start: function() {
935         this._super.apply(this, arguments);
936         this.$element.find('textarea').change(this.on_ui_change);
937     },
938     set_value: function(value) {
939         this._super.apply(this, arguments);
940         var show_value = (value != null && value !== false) ? value : '';
941         this.$element.find('textarea').val(show_value);
942     },
943     update_dom: function() {
944         this._super.apply(this, arguments);
945         this.$element.find('textarea').attr('disabled', this.readonly);
946     },
947     set_value_from_ui: function() {
948         this.value = this.$element.find('textarea').val();
949     },
950     validate: function() {
951         this.invalid = false;
952         var value = this.$element.find('textarea').val();
953         if (value === "") {
954             this.invalid = this.required;
955         } else if (this.validation_regex) {
956             this.invalid = !this.validation_regex.test(value);
957         }
958     },
959     focus: function() {
960         this.$element.find('textarea').focus();
961     }
962 });
963
964 openerp.base.form.FieldBoolean = openerp.base.form.Field.extend({
965     init: function(view, node) {
966         this._super(view, node);
967         this.template = "FieldBoolean";
968     },
969     start: function() {
970         var self = this;
971         this._super.apply(this, arguments);
972         this.$element.find('input').click(function() {
973             if ($(this).is(':checked') != self.value) {
974                 self.on_ui_change();
975             }
976         });
977     },
978     set_value: function(value) {
979         this._super.apply(this, arguments);
980         this.$element.find('input')[0].checked = value;
981     },
982     set_value_from_ui: function() {
983         this.value = this.$element.find('input').is(':checked');
984     },
985     update_dom: function() {
986         this._super.apply(this, arguments);
987         this.$element.find('input').attr('disabled', this.readonly);
988     },
989     validate: function() {
990         this.invalid = this.required && !this.$element.find('input').is(':checked');
991     },
992     focus: function() {
993         this.$element.find('input').focus();
994     }
995 });
996
997 openerp.base.form.FieldProgressBar = openerp.base.form.Field.extend({
998     init: function(view, node) {
999         this._super(view, node);
1000         this.template = "FieldProgressBar";
1001     },
1002     start: function() {
1003         this._super.apply(this, arguments);
1004         this.$element.find('div').progressbar({
1005             value: this.value,
1006             disabled: this.readonly
1007         });
1008     },
1009     set_value: function(value) {
1010         this._super.apply(this, arguments);
1011         var show_value = Number(value);
1012         if (show_value === NaN) {
1013             show_value = 0;
1014         }
1015         this.$element.find('div').progressbar('option', 'value', show_value).find('span').html(show_value + '%');
1016     }
1017 });
1018
1019 openerp.base.form.FieldTextXml = openerp.base.form.Field.extend({
1020 // to replace view editor
1021 });
1022
1023 openerp.base.form.FieldSelection = openerp.base.form.Field.extend({
1024     init: function(view, node) {
1025         this._super(view, node);
1026         this.template = "FieldSelection";
1027     },
1028     start: function() {
1029         this._super.apply(this, arguments);
1030         this.$element.find('select').change(this.on_ui_change);
1031     },
1032     set_value: function(value) {
1033         this._super.apply(this, arguments);
1034         if (value != null && value !== false) {
1035             this.$element.find('select').val(value);
1036         } else {
1037             this.$element.find('select').val('false');
1038         }
1039     },
1040     set_value_from_ui: function() {
1041         this.value = this.$element.find('select').val();
1042     },
1043     update_dom: function() {
1044         this._super.apply(this, arguments);
1045         this.$element.find('select').attr('disabled', this.readonly);
1046     },
1047     validate: function() {
1048         this.invalid = this.required && this.$element.find('select').val() === "";
1049     },
1050     focus: function() {
1051         this.$element.find('select').focus();
1052     }
1053 });
1054
1055 // jquery autocomplete tweak to allow html
1056 (function() {
1057     var proto = $.ui.autocomplete.prototype,
1058         initSource = proto._initSource;
1059
1060     function filter( array, term ) {
1061         var matcher = new RegExp( $.ui.autocomplete.escapeRegex(term), "i" );
1062         return $.grep( array, function(value) {
1063             return matcher.test( $( "<div>" ).html( value.label || value.value || value ).text() );
1064         });
1065     }
1066
1067     $.extend( proto, {
1068         _initSource: function() {
1069             if ( this.options.html && $.isArray(this.options.source) ) {
1070                 this.source = function( request, response ) {
1071                     response( filter( this.options.source, request.term ) );
1072                 };
1073             } else {
1074                 initSource.call( this );
1075             }
1076         },
1077
1078         _renderItem: function( ul, item) {
1079             return $( "<li></li>" )
1080                 .data( "item.autocomplete", item )
1081                 .append( $( "<a></a>" )[ this.options.html ? "html" : "text" ]( item.label ) )
1082                 .appendTo( ul );
1083         }
1084     });
1085 })();
1086
1087 /**
1088  * Builds a new context usable for operations related to fields by merging
1089  * the fields'context with the action's context.
1090  */
1091 var build_relation_context = function(relation_field) {
1092     var action = relation_field.view.view_manager.action || {};
1093     var a_context = action.context || {};
1094     var f_context = relation_field.field.context || {};
1095     var fields_values = relation_field.view.get_fields_values();
1096     var ctx = new openerp.base.CompoundContext(a_context).add(f_context).set_eval_context(fields_values);
1097     return ctx;
1098 }
1099
1100 openerp.base.form.FieldMany2One = openerp.base.form.Field.extend({
1101     init: function(view, node) {
1102         this._super(view, node);
1103         this.template = "FieldMany2One";
1104         this.limit = 7;
1105         this.value = null;
1106         this.cm_id = _.uniqueId('m2o_cm_');
1107         this.last_search = [];
1108         this.tmp_value = undefined;
1109     },
1110     start: function() {
1111         this._super();
1112         var self = this;
1113         this.$input = this.$element.find("input");
1114         this.$drop_down = this.$element.find(".oe-m2o-drop-down-button");
1115         this.$menu_btn = this.$element.find(".oe-m2o-cm-button");
1116
1117         // context menu
1118         var bindings = {};
1119         bindings[this.cm_id + "_search"] = function() {
1120             self._search_create_popup("search");
1121         };
1122         bindings[this.cm_id + "_create"] = function() {
1123             self._search_create_popup("form");
1124         };
1125         bindings[this.cm_id + "_open"] = function() {
1126             if (!self.value) {
1127                 return;
1128             }
1129             self.session.action_manager.do_action({
1130                 "res_model": self.field.relation,
1131                 "views":[[false,"form"]],
1132                 "res_id": self.value[0],
1133                 "type":"ir.actions.act_window",
1134                 "view_type":"form",
1135                 "view_mode":"form",
1136                 "target":"new",
1137                 "context": build_relation_context(self)
1138             });
1139         };
1140         var cmenu = this.$menu_btn.contextMenu(this.cm_id, {'leftClickToo': true,
1141             bindings: bindings, itemStyle: {"color": ""},
1142             onContextMenu: function() {
1143                 if(self.value) {
1144                     $("#" + self.cm_id + "_open").removeClass("oe-m2o-disabled-cm");
1145                 } else {
1146                     $("#" + self.cm_id + "_open").addClass("oe-m2o-disabled-cm");
1147                 }
1148                 return true;
1149             }
1150         });
1151
1152         // some behavior for input
1153         this.$input.keyup(function() {
1154             if (self.$input.val() === "") {
1155                 self._change_int_value(null);
1156             } else if (self.value === null || (self.value && self.$input.val() !== self.value[1])) {
1157                 self._change_int_value(undefined);
1158             }
1159         });
1160         this.$drop_down.click(function() {
1161             if (self.$input.autocomplete("widget").is(":visible")) {
1162                 self.$input.autocomplete("close");
1163             } else {
1164                 if (self.value) {
1165                     self.$input.autocomplete("search", "");
1166                 } else {
1167                     self.$input.autocomplete("search");
1168                 }
1169                 self.$input.focus();
1170             }
1171         });
1172         var anyoneLoosesFocus = function() {
1173             if (!self.$input.is(":focus") &&
1174                     !self.$input.autocomplete("widget").is(":visible") &&
1175                     !self.value) {
1176                 if(self.value === undefined && self.last_search.length > 0) {
1177                     self._change_int_ext_value(self.last_search[0]);
1178                 } else {
1179                     self._change_int_ext_value(null);
1180                 }
1181             }
1182         }
1183         this.$input.focusout(anyoneLoosesFocus);
1184
1185         // autocomplete
1186         this.$input.autocomplete({
1187             source: function(req, resp) { self.get_search_result(req, resp); },
1188             select: function(event, ui) {
1189                 var item = ui.item;
1190                 if (item.id) {
1191                     self._change_int_value([item.id, item.name]);
1192                 } else if (item.action) {
1193                     self._change_int_value(undefined);
1194                     item.action();
1195                     return false;
1196                 }
1197             },
1198             focus: function(e, ui) {
1199                 e.preventDefault();
1200             },
1201             html: true,
1202             close: anyoneLoosesFocus,
1203             minLength: 0,
1204             delay: 0
1205         });
1206     },
1207     // autocomplete component content handling
1208     get_search_result: function(request, response) {
1209         var search_val = request.term;
1210         var self = this;
1211
1212         var dataset = new openerp.base.DataSetStatic(this.session, this.field.relation, []);
1213
1214         dataset.name_search([search_val, self.field.domain || [], 'ilike',
1215                 build_relation_context(self), this.limit + 1], function(data) {
1216             self.last_search = data.result;
1217             // possible selections for the m2o
1218             var values = _.map(data.result, function(x) {
1219                 return {label: $('<span />').text(x[1]).html(), name:x[1], id:x[0]};
1220             });
1221
1222             // search more... if more results that max
1223             if (values.length > self.limit) {
1224                 values = values.slice(0, self.limit);
1225                 values.push({label: "<em>   Search More...</em>", action: function() {
1226                     dataset.name_search([search_val, self.field.domain || [], 'ilike',
1227                             build_relation_context(self), false], function(data) {
1228                         self._change_int_value(null);
1229                         self._search_create_popup("search", data.result);
1230                     });
1231                 }});
1232             }
1233             // quick create
1234             var raw_result = _(data.result).map(function(x) {return x[1];})
1235             if (search_val.length > 0 &&
1236                 !_.include(raw_result, search_val) &&
1237                 (!self.value || search_val !== self.value[1])) {
1238                 values.push({label: '<em>   Create "<strong>' +
1239                         $('<span />').text(search_val).html() + '</strong>"</em>', action: function() {
1240                     self._quick_create(search_val);
1241                 }});
1242             }
1243             // create...
1244             values.push({label: "<em>   Create and Edit...</em>", action: function() {
1245                 self._change_int_value(null);
1246                 self._search_create_popup("form");
1247             }});
1248
1249             response(values);
1250         });
1251     },
1252     _quick_create: function(name) {
1253         var self = this;
1254         var dataset = new openerp.base.DataSetStatic(this.session, this.field.relation, []);
1255         dataset.call("name_create", [name, build_relation_context(self)], function(data) {
1256             self._change_int_ext_value(data.result);
1257         }, function(a, b) {
1258             self._change_int_value(null);
1259             self._search_create_popup("form", undefined, {"default_name": name});
1260         });
1261     },
1262     // all search/create popup handling
1263     _search_create_popup: function(view, ids, context) {
1264         var dataset = new openerp.base.DataSetStatic(this.session, this.field.relation, []);
1265         var self = this;
1266         var pop = new openerp.base.form.SelectCreatePopup(null, self.view.session);
1267         pop.select_element(self.field.relation,{
1268                 initial_ids: ids ? _.map(ids, function(x) {return x[0]}) : undefined,
1269                 initial_view: view,
1270                 disable_multiple_selection: true
1271                 }, self.view.domain || [],
1272                 new openerp.base.CompoundContext(build_relation_context(self)).add(context || {}));
1273         pop.on_select_elements.add(function(element_ids) {
1274             dataset.call("name_get", [[element_ids[0]]], function(data) {
1275                 self._change_int_ext_value(data.result[0]);
1276                 pop.stop();
1277             });
1278         });
1279     },
1280     _change_int_ext_value: function(value) {
1281         this._change_int_value(value);
1282         this.$input.val(this.value ? this.value[1] : "");
1283     },
1284     _change_int_value: function(value) {
1285         this.value = value;
1286         var back_orig_value = this.original_value;
1287         if (this.value === null || this.value) {
1288             this.original_value = this.value;
1289         }
1290         if (back_orig_value === undefined) { // first use after a set_value()
1291             return;
1292         }
1293         if (this.value !== undefined && ((back_orig_value ? back_orig_value[0] : null)
1294                 !== (this.value ? this.value[0] : null))) {
1295             this.on_ui_change();
1296         }
1297     },
1298     set_value_from_ui: function() {},
1299     set_value: function(value) {
1300         value = value || null;
1301         var self = this;
1302         var _super = this._super;
1303         this.tmp_value = value;
1304         var real_set_value = function(rval) {
1305             self.tmp_value = undefined;
1306             _super.apply(self, rval);
1307             self.original_value = undefined;
1308             self._change_int_ext_value(rval);
1309         };
1310         if(typeof(value) === "number") {
1311             var dataset = new openerp.base.DataSetStatic(this.session, this.field.relation, []);
1312             dataset.call("name_get", [[value]], function(data) {
1313                 real_set_value(data.result[0]);
1314             }).fail(function() {self.tmp_value = undefined;});
1315         } else {
1316             setTimeout(function() {real_set_value(value);}, 0);
1317         }
1318     },
1319     get_value: function() {
1320         if (this.tmp_value !== undefined) {
1321             if (this.tmp_value instanceof Array) {
1322                 return this.tmp_value[0];
1323             }
1324             return this.tmp_value ? this.tmp_value : false;
1325         }
1326         if (this.value === undefined)
1327             return this.original_value ? this.original_value[0] : false;
1328         return this.value ? this.value[0] : false;
1329     },
1330     validate: function() {
1331         this.invalid = false;
1332         if (this.value === null) {
1333             this.invalid = this.required;
1334         }
1335     }
1336 });
1337
1338 /*
1339 # Values: (0, 0,  { fields })    create
1340 #         (1, ID, { fields })    update
1341 #         (2, ID)                remove (delete)
1342 #         (3, ID)                unlink one (target id or target of relation)
1343 #         (4, ID)                link
1344 #         (5)                    unlink all (only valid for one2many)
1345 */
1346 var commands = {
1347     // (0, _, {values})
1348     CREATE: 0,
1349     'create': function (values) {
1350         return [commands.CREATE, false, values];
1351     },
1352     // (1, id, {values})
1353     UPDATE: 1,
1354     'update': function (id, values) {
1355         return [commands.UPDATE, id, values];
1356     },
1357     // (2, id[, _])
1358     DELETE: 2,
1359     'delete': function (id) {
1360         return [commands.DELETE, id, false];
1361     },
1362     // (3, id[, _]) removes relation, but not linked record itself
1363     FORGET: 3,
1364     'forget': function (id) {
1365         return [commands.FORGET, id, false];
1366     },
1367     // (4, id[, _])
1368     LINK_TO: 4,
1369     'link_to': function (id) {
1370         return [commands.LINK_TO, id, false];
1371     },
1372     // (5[, _[, _]])
1373     FORGET_ALL: 5,
1374     'forget_all': function () {
1375         return [5, false, false];
1376     },
1377     // (6, _, ids) replaces all linked records with provided ids
1378     REPLACE_WITH: 6,
1379     'replace_with': function (ids) {
1380         return [6, false, ids];
1381     }
1382 };
1383 openerp.base.form.FieldOne2Many = openerp.base.form.Field.extend({
1384     init: function(view, node) {
1385         this._super(view, node);
1386         this.template = "FieldOne2Many";
1387         this.is_started = $.Deferred();
1388     },
1389     start: function() {
1390         this._super.apply(this, arguments);
1391
1392         var self = this;
1393
1394         this.dataset = new openerp.base.BufferedDataSet(this.session, this.field.relation);
1395         this.dataset.on_change.add_last(function() {
1396             self.on_ui_change();
1397         });
1398
1399         var modes = this.node.attrs.mode;
1400         modes = !!modes ? modes.split(",") : ["tree", "form"];
1401         var views = [];
1402         _.each(modes, function(mode) {
1403             var view = {view_id: false, view_type: mode == "tree" ? "list" : mode};
1404             if (self.field.views && self.field.views[mode]) {
1405                 view.embedded_view = self.field.views[mode];
1406             }
1407             if(view.view_type === "list") {
1408                 view.options = {
1409                 };
1410             }
1411             views.push(view);
1412         });
1413         this.views = views;
1414
1415         this.viewmanager = new openerp.base.ViewManager(this.view.session,
1416             this.element_id, this.dataset, views);
1417         this.viewmanager.registry = openerp.base.views.clone({
1418             list: 'openerp.base.form.One2ManyListView'
1419         });
1420
1421         this.viewmanager.on_controller_inited.add_last(function(view_type, controller) {
1422             if (view_type == "list") {
1423                 controller.o2m = self;
1424             } else if (view_type == "form") {
1425                 // TODO niv
1426             }
1427             self.is_started.resolve();
1428         });
1429         this.viewmanager.start();
1430     },
1431     reload_current_view: function() {
1432         var self = this;
1433         var view = self.viewmanager.views[self.viewmanager.active_view].controller;
1434         if(self.viewmanager.active_view === "list") {
1435             view.reload_content();
1436         } else if (self.viewmanager.active_view === "form") {
1437             // TODO niv: implement
1438         }
1439     },
1440     set_value_from_ui: function() {},
1441     set_value: function(value) {
1442         value = value || [];
1443         var self = this;
1444         if(value.length >= 1 && value[0] instanceof Array) {
1445             var ids = [];
1446             _.each(value, function(command) {
1447                 var obj = {values: command[2]};
1448                 switch (command[0]) {
1449                     case commands.CREATE:
1450                         obj['id'] = _.uniqueId(self.dataset.virtual_id_prefix);
1451                         self.dataset.to_create.push(obj);
1452                         self.dataset.cache.push(_.clone(obj));
1453                         ids.push(obj.id);
1454                         return;
1455                     case commands.UPDATE:
1456                         obj['id'] = command[1];
1457                         self.dataset.to_write.push(obj);
1458                         self.dataset.cache.push(_.clone(obj));
1459                         ids.push(obj.id);
1460                         return;
1461                     case commands.DELETE:
1462                         self.dataset.to_delete.push({id: command[1]});
1463                         return;
1464                     case commands.LINK_TO:
1465                         ids.push(command[1]);
1466                         return;
1467                 }
1468             });
1469             this._super(ids);
1470             this.dataset.set_ids(ids);
1471         } else {
1472             this._super(value);
1473             this.dataset.reset_ids(value);
1474         }
1475         $.when(this.is_started).then(function() {
1476             self.reload_current_view();
1477         });
1478     },
1479     get_value: function() {
1480         var self = this;
1481         var val = _.map(this.dataset.ids, function(id) {
1482             var alter_order = _.detect(self.dataset.to_create, function(x) {return x.id === id;});
1483             if (alter_order) {
1484                 return commands.create(alter_order.values);
1485             }
1486             alter_order = _.detect(self.dataset.to_write, function(x) {return x.id === id;});
1487             if (alter_order) {
1488                 return commands.update(alter_order.id, alter_order.values);
1489             }
1490             return commands.link_to(id);
1491         });
1492         return val.concat(_.map(
1493             this.dataset.to_delete, function(x) {
1494                 return commands['delete'](x.id);}));
1495     },
1496     validate: function() {
1497         this.invalid = false;
1498         // TODO niv
1499     }
1500 });
1501
1502 openerp.base.form.One2ManyListView = openerp.base.ListView.extend({
1503     do_add_record: function () {
1504         var self = this;
1505         var pop = new openerp.base.form.SelectCreatePopup(null, self.o2m.view.session);
1506         pop.select_element(self.o2m.field.relation,{
1507             initial_view: "form",
1508             alternative_form_view: self.o2m.field.views ? self.o2m.field.views["form"] : undefined,
1509             auto_create: false
1510         });
1511         pop.on_create.add(function(data) {
1512             self.o2m.dataset.create(data, function(r) {
1513                 self.o2m.dataset.set_ids(self.o2m.dataset.ids.concat([r.result]));
1514                 pop.stop();
1515                 self.o2m.reload_current_view();
1516             });
1517         });
1518     }
1519 });
1520
1521 openerp.base.form.FieldMany2Many = openerp.base.form.Field.extend({
1522     init: function(view, node) {
1523         this._super(view, node);
1524         this.template = "FieldMany2Many";
1525         this.list_id = _.uniqueId("many2many");
1526         this.is_started = $.Deferred();
1527     },
1528     start: function() {
1529         this._super.apply(this, arguments);
1530
1531         var self = this;
1532
1533         this.dataset = new openerp.base.DataSetStatic(
1534                 this.session, this.field.relation);
1535         this.dataset.on_unlink.add_last(function(ids) {
1536             //TODO niv: should check this for other cases
1537             self.on_ui_change();
1538         });
1539
1540         this.list_view = new openerp.base.form.Many2ManyListView(
1541                 null, this.view.session, this.list_id, this.dataset, false, {
1542                     'addable': 'Add'
1543             });
1544         this.list_view.m2m_field = this;
1545         this.list_view.on_loaded.add_last(function() {
1546             self.is_started.resolve();
1547         });
1548         this.list_view.start();
1549     },
1550     set_value: function(value) {
1551         value = value || [];
1552         if (value.length >= 1 && value[0] instanceof Array) {
1553             value = value[0][2];
1554         }
1555         this._super(value);
1556         this.dataset.set_ids(value);
1557         var self = this;
1558         $.when(this.is_started).then(function() {
1559             self.list_view.reload_content();
1560         });
1561     },
1562     get_value: function() {
1563         return [commands.replace_with(this.dataset.ids)];
1564     }
1565 });
1566
1567 openerp.base.form.Many2ManyListView = openerp.base.ListView.extend({
1568     do_add_record: function () {
1569         var pop = new openerp.base.form.SelectCreatePopup(
1570                 null, this.m2m_field.view.session);
1571         pop.select_element(this.model);
1572         var self = this;
1573         pop.on_select_elements.add(function(element_ids) {
1574             _.each(element_ids, function(element_id) {
1575                 if(! _.detect(self.dataset.ids, function(x) {return x == element_id;})) {
1576                     self.dataset.set_ids([].concat(self.dataset.ids, [element_id]));
1577                     self.reload_content();
1578                 }
1579             });
1580             pop.stop();
1581         });
1582     },
1583     do_activate_record: function(index, id) {
1584         this.m2m_field.view.session.action_manager.do_action({
1585             "res_model": this.dataset.model,
1586             "views":[[false,"form"]],
1587             "res_id": id,
1588             "type":"ir.actions.act_window",
1589             "view_type":"form",
1590             "view_mode":"form",
1591             "target":"new"
1592         });
1593     }
1594 });
1595
1596 openerp.base.form.SelectCreatePopup = openerp.base.BaseWidget.extend({
1597     identifier_prefix: "selectcreatepopup",
1598     template: "SelectCreatePopup",
1599     /**
1600      * options:
1601      * - initial_ids
1602      * - initial_view: form or search (default search)
1603      * - disable_multiple_selection
1604      * - alternative_form_view
1605      * - auto_create (default true)
1606      */
1607     select_element: function(model, options, domain, context) {
1608         this.model = model;
1609         this.domain = domain || [];
1610         this.context = context || {};
1611         this.options = _.defaults(options || {}, {"initial_view": "search", "auto_create": true});
1612         this.initial_ids = this.options.initial_ids;
1613         jQuery(this.render()).dialog({title: '',
1614                     modal: true,
1615                     minWidth: 800});
1616         this.start();
1617     },
1618     start: function() {
1619         this._super();
1620         this.dataset = new openerp.base.ReadOnlyDataSetSearch(this.session, this.model,
1621             this.context, this.domain);
1622         if (this.options.initial_view == "search") {
1623             this.setup_search_view();
1624         } else { // "form"
1625             this.new_object();
1626         }
1627     },
1628     setup_search_view: function() {
1629         var self = this;
1630         if (this.searchview) {
1631             this.searchview.stop();
1632         }
1633         this.searchview = new openerp.base.SearchView(null, this.session,
1634                 this.element_id + "_search", this.dataset, false, {
1635                     "selectable": !this.options.disable_multiple_selection,
1636                     "deletable": false
1637                 });
1638         this.searchview.on_search.add(function(domains, contexts, groupbys) {
1639             if (self.initial_ids) {
1640                 self.view_list.do_search.call(self,[[["id", "in", self.initial_ids]]],
1641                     contexts, groupbys);
1642                 self.initial_ids = undefined;
1643             } else {
1644                 self.view_list.do_search.call(self, domains, contexts, groupbys);
1645             }
1646         });
1647         this.searchview.on_loaded.add_last(function () {
1648             var $buttons = self.searchview.$element.find(".oe_search-view-buttons");
1649             $buttons.append(QWeb.render("SelectCreatePopup.search.buttons"));
1650             var $cbutton = $buttons.find(".oe_selectcreatepopup-search-close");
1651             $cbutton.click(function() {
1652                 self.stop();
1653             });
1654             var $sbutton = $buttons.find(".oe_selectcreatepopup-search-select");
1655             if(self.options.disable_multiple_selection) {
1656                 $sbutton.hide();
1657             }
1658             $sbutton.click(function() {
1659                 self.on_select_elements(self.selected_ids);
1660             });
1661             self.view_list = new openerp.base.form.SelectCreateListView( null, self.session,
1662                     self.element_id + "_view_list", self.dataset, false,
1663                     {'deletable': false});
1664             self.view_list.popup = self;
1665             self.view_list.do_show();
1666             self.view_list.start().then(function() {
1667                 self.searchview.do_search();
1668             });
1669         });
1670         this.searchview.start();
1671     },
1672     on_create: function(data) {
1673         if (!this.options.auto_create)
1674             return;
1675         var self = this;
1676         var wdataset = new openerp.base.DataSetSearch(this.session, this.model, this.context, this.domain);
1677         wdataset.create(data, function(r) {
1678             self.on_select_elements([r.result]);
1679         });
1680     },
1681     on_select_elements: function(element_ids) {
1682     },
1683     on_click_element: function(ids) {
1684         this.selected_ids = ids || [];
1685         if(this.selected_ids.length > 0) {
1686             this.$element.find(".oe_selectcreatepopup-search-select").removeAttr('disabled');
1687         } else {
1688             this.$element.find(".oe_selectcreatepopup-search-select").attr('disabled', "disabled");
1689         }
1690     },
1691     new_object: function() {
1692         var self = this;
1693         if (this.searchview) {
1694             this.searchview.hide();
1695         }
1696         if (this.view_list) {
1697             this.view_list.$element.hide();
1698         }
1699         this.dataset.index = null;
1700         this.view_form = new openerp.base.FormView(null, this.session,
1701                 this.element_id + "_view_form", this.dataset, false);
1702         if (this.options.alternative_form_view) {
1703             this.view_form.set_embedded_view(this.options.alternative_form_view);
1704         }
1705         this.view_form.start();
1706         this.view_form.on_loaded.add_last(function() {
1707             var $buttons = self.view_form.$element.find(".oe_form_buttons");
1708             $buttons.html(QWeb.render("SelectCreatePopup.form.buttons"));
1709             var $nbutton = $buttons.find(".oe_selectcreatepopup-form-save");
1710             $nbutton.click(function() {
1711                 self.view_form.do_save();
1712             });
1713             var $cbutton = $buttons.find(".oe_selectcreatepopup-form-close");
1714             $cbutton.click(function() {
1715                 self.stop();
1716             });
1717         });
1718         this.dataset.on_create.add(this.on_create);
1719         this.view_form.do_show();
1720     }
1721 });
1722
1723 openerp.base.form.SelectCreateListView = openerp.base.ListView.extend({
1724     do_add_record: function () {
1725         this.popup.new_object();
1726     },
1727     select_record: function(index) {
1728         this.popup.on_select_elements([this.dataset.ids[index]]);
1729     },
1730     do_select: function(ids, records) {
1731         this._super(ids, records);
1732         this.popup.on_click_element(ids);
1733     }
1734 });
1735
1736 openerp.base.form.FieldReference = openerp.base.form.Field.extend({
1737     init: function(view, node) {
1738         this._super(view, node);
1739         this.template = "FieldReference";
1740     }
1741 });
1742
1743 openerp.base.form.FieldBinary = openerp.base.form.Field.extend({
1744     init: function(view, node) {
1745         this._super(view, node);
1746         this.iframe = this.element_id + '_iframe';
1747         this.binary_value = false;
1748     },
1749     start: function() {
1750         this._super.apply(this, arguments);
1751         this.$element.find('input.oe-binary-file').change(this.on_file_change);
1752         this.$element.find('button.oe-binary-file-save').click(this.on_save_as);
1753         this.$element.find('.oe-binary-file-clear').click(this.on_clear);
1754     },
1755     set_value_from_ui: function() {
1756     },
1757     human_filesize : function(size) {
1758         var units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
1759         var i = 0;
1760         while (size >= 1024) {
1761             size /= 1024;
1762             ++i;
1763         }
1764         return size.toFixed(2) + ' ' + units[i];
1765     },
1766     on_file_change: function(e) {
1767         // TODO: on modern browsers, we could directly read the file locally on client ready to be used on image cropper
1768         // http://www.html5rocks.com/tutorials/file/dndfiles/
1769         // http://deepliquid.com/projects/Jcrop/demos.php?demo=handler
1770         window[this.iframe] = this.on_file_uploaded;
1771         if ($(e.target).val() != '') {
1772             this.$element.find('form.oe-binary-form input[name=session_id]').val(this.session.session_id);
1773             this.$element.find('form.oe-binary-form').submit();
1774             this.toggle_progress();
1775         }
1776     },
1777     toggle_progress: function() {
1778         this.$element.find('.oe-binary-progress, .oe-binary').toggle();
1779     },
1780     on_file_uploaded: function(size, name, content_type, file_base64) {
1781         delete(window[this.iframe]);
1782         if (size === false) {
1783             this.notification.warn("File Upload", "There was a problem while uploading your file");
1784             // TODO: use openerp web exception handler
1785             console.log("Error while uploading file : ", name);
1786         } else {
1787             this.on_file_uploaded_and_valid.apply(this, arguments);
1788             this.on_ui_change();
1789         }
1790         this.toggle_progress();
1791     },
1792     on_file_uploaded_and_valid: function(size, name, content_type, file_base64) {
1793     },
1794     on_save_as: function() {
1795         if (!this.view.datarecord.id) {
1796             this.notification.warn("Can't save file", "The record has not yet been saved");
1797         } else {
1798             var url = '/base/binary/saveas?session_id=' + this.session.session_id + '&model=' +
1799                 this.view.dataset.model +'&id=' + (this.view.datarecord.id || '') + '&field=' + this.name +
1800                 '&fieldname=' + (this.node.attrs.filename || '') + '&t=' + (new Date().getTime())
1801             window.open(url);
1802         }
1803     },
1804     on_clear: function() {
1805         if (this.value !== false) {
1806             this.value = false;
1807             this.binary_value = false;
1808             this.on_ui_change();
1809         }
1810         return false;
1811     }
1812 });
1813
1814 openerp.base.form.FieldBinaryFile = openerp.base.form.FieldBinary.extend({
1815     init: function(view, node) {
1816         this._super(view, node);
1817         this.template = "FieldBinaryFile";
1818     },
1819     set_value: function(value) {
1820         this._super.apply(this, arguments);
1821         var show_value = (value != null && value !== false) ? value : '';
1822         this.$element.find('input').eq(0).val(show_value);
1823     },
1824     on_file_uploaded_and_valid: function(size, name, content_type, file_base64) {
1825         this.value = file_base64;
1826         this.binary_value = true;
1827         var show_value = this.human_filesize(size);
1828         this.$element.find('input').eq(0).val(show_value);
1829         this.set_filename(name);
1830     },
1831     set_filename: function(value) {
1832         var filename = this.node.attrs.filename;
1833         if (this.view.fields[filename]) {
1834             this.view.fields[filename].set_value(value);
1835             this.view.fields[filename].on_ui_change();
1836         }
1837     },
1838     on_clear: function() {
1839         this._super.apply(this, arguments);
1840         this.$element.find('input').eq(0).val('');
1841         this.set_filename('');
1842     }
1843 });
1844
1845 openerp.base.form.FieldBinaryImage = openerp.base.form.FieldBinary.extend({
1846     init: function(view, node) {
1847         this._super(view, node);
1848         this.template = "FieldBinaryImage";
1849     },
1850     start: function() {
1851         this._super.apply(this, arguments);
1852         this.$image = this.$element.find('img.oe-binary-image');
1853     },
1854     set_image_maxwidth: function() {
1855         this.$image.css('max-width', this.$element.width());
1856     },
1857     on_file_change: function() {
1858         this.set_image_maxwidth();
1859         this._super.apply(this, arguments);
1860     },
1861     on_file_uploaded_and_valid: function(size, name, content_type, file_base64) {
1862         this.value = file_base64;
1863         this.binary_value = true;
1864         this.$image.attr('src', 'data:' + (content_type || 'image/png') + ';base64,' + file_base64);
1865     },
1866     on_clear: function() {
1867         this._super.apply(this, arguments);
1868         this.$image.attr('src', '/base/static/src/img/placeholder.png');
1869     },
1870     set_value: function(value) {
1871         this._super.apply(this, arguments);
1872         this.set_image_maxwidth();
1873         var url = '/base/binary/image?session_id=' + this.session.session_id + '&model=' +
1874             this.view.dataset.model +'&id=' + (this.view.datarecord.id || '') + '&field=' + this.name + '&t=' + (new Date().getTime())
1875         this.$image.attr('src', url);
1876     }
1877 });
1878
1879 /**
1880  * Registry of form widgets, called by :js:`openerp.base.FormView`
1881  */
1882 openerp.base.form.widgets = new openerp.base.Registry({
1883     'frame' : 'openerp.base.form.WidgetFrame',
1884     'group' : 'openerp.base.form.WidgetFrame',
1885     'notebook' : 'openerp.base.form.WidgetNotebook',
1886     'separator' : 'openerp.base.form.WidgetSeparator',
1887     'label' : 'openerp.base.form.WidgetLabel',
1888     'button' : 'openerp.base.form.WidgetButton',
1889     'char' : 'openerp.base.form.FieldChar',
1890     'email' : 'openerp.base.form.FieldEmail',
1891     'url' : 'openerp.base.form.FieldUrl',
1892     'text' : 'openerp.base.form.FieldText',
1893     'text_wiki' : 'openerp.base.form.FieldText',
1894     'date' : 'openerp.base.form.FieldDate',
1895     'datetime' : 'openerp.base.form.FieldDatetime',
1896     'selection' : 'openerp.base.form.FieldSelection',
1897     'many2one' : 'openerp.base.form.FieldMany2One',
1898     'many2many' : 'openerp.base.form.FieldMany2Many',
1899     'one2many' : 'openerp.base.form.FieldOne2Many',
1900     'one2many_list' : 'openerp.base.form.FieldOne2Many',
1901     'reference' : 'openerp.base.form.FieldReference',
1902     'boolean' : 'openerp.base.form.FieldBoolean',
1903     'float' : 'openerp.base.form.FieldFloat',
1904     'integer': 'openerp.base.form.FieldFloat',
1905     'progressbar': 'openerp.base.form.FieldProgressBar',
1906     'float_time': 'openerp.base.form.FieldFloatTime',
1907     'image': 'openerp.base.form.FieldBinaryImage',
1908     'binary': 'openerp.base.form.FieldBinaryFile'
1909 });
1910
1911 };
1912
1913 // vim:et fdc=0 fdl=0 foldnestmax=3 fdm=syntax: