mirror of https://github.com/OCA/web.git
[FIX] Make matrix editable depending of the status of the parent
parent
ca213cd38e
commit
15e39d44b2
|
@ -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, "
|
||||
|
|
|
@ -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…
Reference in New Issue