mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[FIX] Make matrix editable depending of the status of the parent
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
{
|
{
|
||||||
"name": "2D matrix for x2many fields",
|
"name": "2D matrix for x2many fields",
|
||||||
"version": "11.0.1.0.1",
|
"version": "11.0.1.0.2",
|
||||||
"author": "Therp BV, "
|
"author": "Therp BV, "
|
||||||
"Tecnativa, "
|
"Tecnativa, "
|
||||||
"Camptocamp, "
|
"Camptocamp, "
|
||||||
|
|||||||
@@ -238,7 +238,7 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ
|
|||||||
if (modifiers.invisible && !(options && options.renderInvisible)) {
|
if (modifiers.invisible && !(options && options.renderInvisible)) {
|
||||||
return $td;
|
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'));
|
var widget = this._renderFieldWidget(node, record, _.pick(options, 'mode'));
|
||||||
this._handleAttributes(widget.$el, node);
|
this._handleAttributes(widget.$el, node);
|
||||||
return $td.append(widget.$el);
|
return $td.append(widget.$el);
|
||||||
|
|||||||
Reference in New Issue
Block a user