Browse Source

[FIX] Make matrix editable depending of the status of the parent

pull/1106/head
mreficent 6 years ago
committed by Jairo Llopis
parent
commit
5be63c90b8
  1. 2
      web_widget_x2many_2d_matrix/__manifest__.py
  2. 2
      web_widget_x2many_2d_matrix/static/src/js/2d_matrix_renderer.js

2
web_widget_x2many_2d_matrix/__manifest__.py

@ -4,7 +4,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "2D matrix for x2many fields",
"version": "11.0.1.0.1",
"version": "11.0.1.0.2",
"author": "Therp BV, "
"Tecnativa, "
"Camptocamp, "

2
web_widget_x2many_2d_matrix/static/src/js/2d_matrix_renderer.js

@ -238,7 +238,7 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ
if (modifiers.invisible && !(options && options.renderInvisible)) {
return $td;
}
options.mode = 'edit'; // enforce edit mode
options.mode = this.getParent().mode; // enforce mode of the parent
var widget = this._renderFieldWidget(node, record, _.pick(options, 'mode'));
this._handleAttributes(widget.$el, node);
return $td.append(widget.$el);

Loading…
Cancel
Save