Skip to content

Commit

Permalink
[FIX] web_widget_x2many_2d_matrix: total cell calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-pelykh authored and AdriaGForgeFlow committed Mar 5, 2020
1 parent b78af1e commit a9257b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web_widget_x2many_2d_matrix/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': '2D matrix for x2many fields',
'version': '12.0.1.0.1',
'version': '12.0.1.0.2',
'author': (
'Therp BV, '
'Tecnativa, '
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ
// Nothing to do
}
});
this.total.value += column.aggregate.value;
this.total.aggregate.value += column.aggregate.value;
}.bind(this));
},

Expand Down

0 comments on commit a9257b6

Please sign in to comment.