|
@ -61,6 +61,7 @@ odoo.define('web_widget_x2many_2d_matrix.widget', function (require) { |
|
|
node.field_editability || this.field_editability; |
|
|
node.field_editability || this.field_editability; |
|
|
this.show_row_totals = |
|
|
this.show_row_totals = |
|
|
this.parse_boolean(node.show_row_totals || '1'); |
|
|
this.parse_boolean(node.show_row_totals || '1'); |
|
|
|
|
|
this.label_row_totals = node.label_row_totals || ''; |
|
|
this.show_column_totals = |
|
|
this.show_column_totals = |
|
|
this.parse_boolean(node.show_column_totals || '1'); |
|
|
this.parse_boolean(node.show_column_totals || '1'); |
|
|
}, |
|
|
}, |
|
@ -108,6 +109,7 @@ odoo.define('web_widget_x2many_2d_matrix.widget', function (require) { |
|
|
'columns': this.columns, |
|
|
'columns': this.columns, |
|
|
'rows': this.rows, |
|
|
'rows': this.rows, |
|
|
'show_row_totals': this.show_row_totals, |
|
|
'show_row_totals': this.show_row_totals, |
|
|
|
|
|
'label_row_totals': this.label_row_totals, |
|
|
'show_column_totals': this.show_column_totals, |
|
|
'show_column_totals': this.show_column_totals, |
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
|