Compare keyword_open to 1

It is needed to correctly test "0" as false

issue5379
review23021002
This commit is contained in:
C?dric Krier 2016-04-29 23:02:36 +02:00
parent d8e6e6224c
commit 1e7a72441a
2 changed files with 2 additions and 2 deletions

View file

@ -273,7 +273,7 @@
} }
if (this.screen.current_view.view_type == 'tree' && if (this.screen.current_view.view_type == 'tree' &&
('keyword_open' in this.screen.current_view.attributes)) { (this.screen.current_view.attributes.keyword_open == 1)) {
record_ids = this.screen.current_view.selected_records().map( record_ids = this.screen.current_view.selected_records().map(
function(record) { return record.id; }); function(record) { return record.id; });
Sao.Action.exec_keyword('tree_open', { Sao.Action.exec_keyword('tree_open', {

View file

@ -953,7 +953,7 @@
}, },
default_row_activate: function() { default_row_activate: function() {
if ((this.current_view.view_type == 'tree') && if ((this.current_view.view_type == 'tree') &&
this.current_view.attributes.keyword_open) { (this.current_view.attributes.keyword_open == 1)) {
Sao.Action.exec_keyword('tree_open', { Sao.Action.exec_keyword('tree_open', {
'model': this.model_name, 'model': this.model_name,
'id': this.get_id(), 'id': this.get_id(),