[IMP]change method on_selected_elements to elements_selected.

bzr revid: vme@tinyerp.com-20121011102849-yn9nldtgqszp70gq
This commit is contained in:
Vidhin Mehta (OpenERP) 2012-10-11 15:58:49 +05:30
parent 43217cc2b4
commit 5bb6122f73
1 changed files with 4 additions and 4 deletions

View File

@ -4456,12 +4456,12 @@ instance.web.form.AbstractFormPopup = instance.web.Widget.extend({
self.view_form.do_show();
});
},
on_select_elements: function(element_ids) {
elements_selected: function(element_ids) {
this.trigger("select_elements",element_ids);
},
check_exit: function(no_destroy) {
if (this.created_elements.length > 0) {
this.on_select_elements(this.created_elements);
this.elements_selected(this.created_elements);
this.created_elements = [];
}
this.destroy();
@ -4572,7 +4572,7 @@ instance.web.form.SelectCreatePopup = instance.web.form.AbstractFormPopup.extend
});
var $sbutton = self.$buttonpane.find(".oe_selectcreatepopup-search-select");
$sbutton.click(function() {
self.on_select_elements(self.selected_ids);
self.elements_selected(self.selected_ids);
self.destroy();
});
});
@ -4614,7 +4614,7 @@ instance.web.form.SelectCreateListView = instance.web.ListView.extend({
this.popup.new_object();
},
select_record: function(index) {
this.popup.on_select_elements([this.dataset.ids[index]]);
this.popup.elements_selected([this.dataset.ids[index]]);
this.popup.destroy();
},
do_select: function(ids, records) {