|
|
@ -7,10 +7,9 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
// heavily inspired by Odoo's `ListRenderer`
|
|
|
|
var BasicRenderer = require('web.BasicRenderer'); |
|
|
|
var config = require('web.config'); |
|
|
|
var field_utils = require('web.field_utils'); |
|
|
|
var utils = require('web.utils'); |
|
|
|
var core = require('web.core'); |
|
|
|
var _t = core._t |
|
|
|
var field_utils = require('web.field_utils'); |
|
|
|
var _t = core._t; |
|
|
|
var FIELD_CLASSES = { |
|
|
|
// copied from ListRenderer
|
|
|
|
float: 'o_list_number', |
|
|
@ -21,6 +20,9 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
|
|
|
|
var X2Many2dMatrixRenderer = BasicRenderer.extend({ |
|
|
|
|
|
|
|
/** |
|
|
|
* @override |
|
|
|
*/ |
|
|
|
init: function (parent, state, params) { |
|
|
|
this._super.apply(this, arguments); |
|
|
|
this.editable = params.editable; |
|
|
@ -28,13 +30,16 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
this.rows = params.matrix_data.rows; |
|
|
|
this.matrix_data = params.matrix_data; |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Main render function for the matrix widget. It is rendered as a table. For now, |
|
|
|
* Main render function for the matrix widget. |
|
|
|
* |
|
|
|
* It is rendered as a table. For now, |
|
|
|
* this method does not wait for the field widgets to be ready. |
|
|
|
* |
|
|
|
* @override |
|
|
|
* @private |
|
|
|
* returns {Deferred} this deferred is resolved immediately |
|
|
|
* @returns {Deferred} this deferred is resolved immediately |
|
|
|
*/ |
|
|
|
_renderView: function () { |
|
|
|
var self = this; |
|
|
@ -48,7 +53,9 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
return this._super(); |
|
|
|
} |
|
|
|
|
|
|
|
var $table = $('<table>').addClass('o_list_view table table-condensed table-striped'); |
|
|
|
var $table = $('<table>').addClass( |
|
|
|
'o_list_view table table-condensed table-striped' |
|
|
|
); |
|
|
|
this.$el |
|
|
|
.addClass('table-responsive') |
|
|
|
.append($table); |
|
|
@ -64,12 +71,15 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
} |
|
|
|
return this._super(); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Render the table body. Looks for the table body and renders the rows in it. |
|
|
|
* Render the table body. |
|
|
|
* |
|
|
|
* Looks for the table body and renders the rows in it. |
|
|
|
* Also it sets the tabindex on every input element. |
|
|
|
* |
|
|
|
* @private |
|
|
|
* return {jQueryElement} The table body element that was just filled. |
|
|
|
* @returns {jQueryElement} The table body element just filled. |
|
|
|
*/ |
|
|
|
_renderBody: function () { |
|
|
|
var $body = $('<tbody>').append(this._renderRows()); |
|
|
@ -78,23 +88,30 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
}); |
|
|
|
return $body; |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Render the table head of our matrix. Looks for the first table head |
|
|
|
* and inserts the header into it. |
|
|
|
* |
|
|
|
* @private |
|
|
|
* @return {jQueryElement} The thead element that was inserted into. |
|
|
|
* @returns {jQueryElement} The thead element that was inserted into. |
|
|
|
*/ |
|
|
|
_renderHeader: function () { |
|
|
|
var $tr = $('<tr>').append('<th/>'); |
|
|
|
$tr= $tr.append(_.map(this.columns, this._renderHeaderCell.bind(this))); |
|
|
|
$tr = $tr.append(_.map( |
|
|
|
this.columns, |
|
|
|
this._renderHeaderCell.bind(this) |
|
|
|
)); |
|
|
|
if (this.matrix_data.show_row_totals) { |
|
|
|
$tr.append($('<th/>', {class: 'total'})); |
|
|
|
} |
|
|
|
return $('<thead>').append($tr); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Render a single header cell. Creates a th and adds the description as text. |
|
|
|
* Render a single header cell. |
|
|
|
* |
|
|
|
* Creates a th and adds the description as text. |
|
|
|
* |
|
|
|
* @private |
|
|
|
* @param {jQueryElement} node |
|
|
@ -107,16 +124,20 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
if (!field) { |
|
|
|
return $th; |
|
|
|
} |
|
|
|
var description; |
|
|
|
var description = null; |
|
|
|
if (node.attrs.widget) { |
|
|
|
description = this.state.fieldsInfo.list[name].Widget.prototype.description; |
|
|
|
description = this.state.fieldsInfo.list[name] |
|
|
|
.Widget.prototype.description; |
|
|
|
} |
|
|
|
if (description === undefined) { |
|
|
|
if (_.isNull(description)) { |
|
|
|
description = node.attrs.string || field.string; |
|
|
|
} |
|
|
|
$th.text(description).data('name', name); |
|
|
|
|
|
|
|
if (field.type === 'float' || field.type === 'integer' || field.type === 'monetary') { |
|
|
|
if ( |
|
|
|
field.type === 'float' || field.type === 'integer' || |
|
|
|
field.type === 'monetary' |
|
|
|
) { |
|
|
|
$th.addClass('text-right'); |
|
|
|
} |
|
|
|
|
|
|
@ -132,6 +153,7 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
} |
|
|
|
return $th; |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Proxy call to function rendering single row. |
|
|
|
* |
|
|
@ -139,13 +161,15 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
* @returns {String} a string with the generated html. |
|
|
|
* |
|
|
|
*/ |
|
|
|
|
|
|
|
_renderRows: function () { |
|
|
|
return _.map(this.rows, this._renderRow.bind(this)); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Render a single row with all its columns. Renders all the cells and then wraps them with a <tr>. |
|
|
|
* If aggregate is set on the row it also will generate the aggregate cell. |
|
|
|
* Render a single row with all its columns. |
|
|
|
* Renders all the cells and then wraps them with a <tr>. |
|
|
|
* If aggregate is set on the row it also will generate |
|
|
|
* the aggregate cell. |
|
|
|
* |
|
|
|
* @private |
|
|
|
* @param {Object} row: The row that will be rendered. |
|
|
@ -167,17 +191,18 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
} |
|
|
|
return $tr; |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Renders the label for a specific row. |
|
|
|
* |
|
|
|
* @private |
|
|
|
* @params {Object} record: Contains the information about the record. |
|
|
|
* @params {jQueryElement} the cell that was rendered. |
|
|
|
* @param {Object} record Contains the information about the record. |
|
|
|
* @returns {jQueryElement} the cell that was rendered. |
|
|
|
*/ |
|
|
|
_renderLabelCell: function (record) { |
|
|
|
var $td = $('<td>'); |
|
|
|
var value = record.data[this.matrix_data.field_y_axis]; |
|
|
|
if (value.type == 'record') { |
|
|
|
if (value.type === 'record') { |
|
|
|
// we have a related record
|
|
|
|
value = value.data.display_name; |
|
|
|
} |
|
|
@ -185,6 +210,7 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
$td.text(value); |
|
|
|
return $td; |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Create a cell and fill it with the aggregate value. |
|
|
|
* |
|
|
@ -197,6 +223,7 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
this._apply_aggregate_value($cell, row.aggregate); |
|
|
|
return $cell; |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Render a single body Cell. |
|
|
|
* Gets the field and renders the widget. We force the edit mode, since |
|
|
@ -214,12 +241,14 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
if (node.tag === 'button') { |
|
|
|
tdClassName += ' o_list_button'; |
|
|
|
} else if (node.tag === 'field') { |
|
|
|
var typeClass = FIELD_CLASSES[this.state.fields[node.attrs.name].type]; |
|
|
|
var typeClass = FIELD_CLASSES[ |
|
|
|
this.state.fields[node.attrs.name].type |
|
|
|
]; |
|
|
|
if (typeClass) { |
|
|
|
tdClassName += (' ' + typeClass); |
|
|
|
tdClassName += ' ' + typeClass; |
|
|
|
} |
|
|
|
if (node.attrs.widget) { |
|
|
|
tdClassName += (' o_' + node.attrs.widget + '_cell'); |
|
|
|
tdClassName += ' o_' + node.attrs.widget + '_cell'; |
|
|
|
} |
|
|
|
} |
|
|
|
// TODO roadmap: here we should collect possible extra params
|
|
|
@ -229,20 +258,29 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
'data-form-id': record.id, |
|
|
|
'data-id': record.data.id, |
|
|
|
}); |
|
|
|
// We register modifiers on the <td> element so that it gets the correct
|
|
|
|
// modifiers classes (for styling)
|
|
|
|
var modifiers = this._registerModifiers(node, record, $td, _.pick(options, 'mode')); |
|
|
|
// If the invisible modifiers is true, the <td> element is left empty.
|
|
|
|
// Indeed, if the modifiers was to change the whole cell would be
|
|
|
|
// rerendered anyway.
|
|
|
|
// We register modifiers on the <td> element so that it gets
|
|
|
|
// the correct modifiers classes (for styling)
|
|
|
|
var modifiers = this._registerModifiers( |
|
|
|
node, |
|
|
|
record, |
|
|
|
$td, |
|
|
|
_.pick(options, 'mode') |
|
|
|
); |
|
|
|
// If the invisible modifiers is true, the <td> element is
|
|
|
|
// left empty. Indeed, if the modifiers was to change the
|
|
|
|
// whole cell would be rerendered anyway.
|
|
|
|
if (modifiers.invisible && !(options && options.renderInvisible)) { |
|
|
|
return $td; |
|
|
|
} |
|
|
|
options.mode = this.getParent().mode; // enforce mode of the parent
|
|
|
|
var widget = this._renderFieldWidget(node, record, _.pick(options, 'mode')); |
|
|
|
// enforce mode of the parent
|
|
|
|
options.mode = this.getParent().mode; |
|
|
|
var widget = this._renderFieldWidget( |
|
|
|
node, record, _.pick(options, 'mode') |
|
|
|
); |
|
|
|
this._handleAttributes(widget.$el, node); |
|
|
|
return $td.append(widget.$el); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Wraps the column aggregate with a tfoot element |
|
|
|
* |
|
|
@ -252,10 +290,12 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
_renderFooter: function () { |
|
|
|
var $cells = this._renderAggregateColCells(); |
|
|
|
if ($cells) { |
|
|
|
return $('<tfoot>').append($('<tr>').append('<td/>').append($cells)); |
|
|
|
return $('<tfoot>').append( |
|
|
|
$('<tr>').append('<td/>').append($cells) |
|
|
|
); |
|
|
|
} |
|
|
|
return; |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Render the Aggregate cells for the column. |
|
|
|
* |
|
|
@ -264,7 +304,7 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
*/ |
|
|
|
_renderAggregateColCells: function () { |
|
|
|
var self = this; |
|
|
|
return _.map(this.columns, function (column, index) { |
|
|
|
return _.map(this.columns, function (column) { |
|
|
|
var $cell = $('<td>', {class: 'col-total text-right'}); |
|
|
|
if (column.aggregate) { |
|
|
|
self._apply_aggregate_value($cell, column.aggregate); |
|
|
@ -272,6 +312,7 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
return $cell; |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Compute the column aggregates. |
|
|
|
* This function is called everytime the value is changed. |
|
|
@ -282,30 +323,31 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
if (!this.matrix_data.show_column_totals) { |
|
|
|
return; |
|
|
|
} |
|
|
|
var self = this, |
|
|
|
fname = this.matrix_data.field_value, |
|
|
|
var fname = this.matrix_data.field_value, |
|
|
|
field = this.state.fields[fname]; |
|
|
|
if (!field) { return; } |
|
|
|
if (!field) { |
|
|
|
return; |
|
|
|
} |
|
|
|
var type = field.type; |
|
|
|
if (type !== 'integer' && type !== 'float' && type !== 'monetary') { |
|
|
|
if (!_.inArray(type, ['integer', 'float', 'monetary'])) { |
|
|
|
return; |
|
|
|
} |
|
|
|
_.each(self.columns, function (column, index) { |
|
|
|
_.each(this.columns, function (column, index) { |
|
|
|
column.aggregate = { |
|
|
|
fname: fname, |
|
|
|
ftype: type, |
|
|
|
// TODO: translate
|
|
|
|
help: 'Sum', |
|
|
|
value: 0 |
|
|
|
help: _t('Sum'), |
|
|
|
value: 0, |
|
|
|
}; |
|
|
|
_.each(self.rows, function (row) { |
|
|
|
// var record = _.findWhere(self.state.data, {id: col.data.id});
|
|
|
|
_.each(this.rows, function (row) { |
|
|
|
column.aggregate.value += row.data[index].data[fname]; |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Compute the row aggregates. |
|
|
|
* |
|
|
|
* This function is called everytime the value is changed. |
|
|
|
* |
|
|
|
* @private |
|
|
@ -314,49 +356,67 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
if (!this.matrix_data.show_row_totals) { |
|
|
|
return; |
|
|
|
} |
|
|
|
var self = this, |
|
|
|
fname = this.matrix_data.field_value, |
|
|
|
var fname = this.matrix_data.field_value, |
|
|
|
field = this.state.fields[fname]; |
|
|
|
if (!field) { return; } |
|
|
|
if (!field) { |
|
|
|
return; |
|
|
|
} |
|
|
|
var type = field.type; |
|
|
|
if (type !== 'integer' && type !== 'float' && type !== 'monetary') { |
|
|
|
if (!_.inArray(type, ['integer', 'float', 'monetary'])) { |
|
|
|
return; |
|
|
|
} |
|
|
|
_.each(self.rows, function (row) { |
|
|
|
_.each(this.rows, function (row) { |
|
|
|
row.aggregate = { |
|
|
|
fname: fname, |
|
|
|
ftype: type, |
|
|
|
// TODO: translate
|
|
|
|
help: 'Sum', |
|
|
|
value: 0 |
|
|
|
help: _t('Sum'), |
|
|
|
value: 0, |
|
|
|
}; |
|
|
|
_.each(row.data, function (col) { |
|
|
|
row.aggregate.value += col.data[fname]; |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Takes the given Value, formats it and adds it to the given cell. |
|
|
|
* |
|
|
|
* @private |
|
|
|
* @param {jQueryElement} $cell: The Cell where the aggregate should be added. |
|
|
|
* @param {Object} aggregate: The object which contains the information about the aggregate value |
|
|
|
* |
|
|
|
* @param {jQueryElement} $cell |
|
|
|
* The Cell where the aggregate should be added. |
|
|
|
* |
|
|
|
* @param {Object} aggregate |
|
|
|
* The object which contains the information about the aggregate value |
|
|
|
*/ |
|
|
|
_apply_aggregate_value: function ($cell, aggregate) { |
|
|
|
var field = this.state.fields[aggregate.fname], |
|
|
|
formatter = field_utils.format[field.type]; |
|
|
|
var formattedValue = formatter(aggregate.value, field, {escape: true, }); |
|
|
|
$cell.addClass('total').attr('title', aggregate.help).html(formattedValue); |
|
|
|
var formattedValue = formatter( |
|
|
|
aggregate.value, field, {escape: true} |
|
|
|
); |
|
|
|
$cell.addClass('total').attr('title', aggregate.help) |
|
|
|
.html(formattedValue); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Check if the change was successful and then update the grid. |
|
|
|
* This function is required on relational fields. |
|
|
|
* |
|
|
|
* @params {Object} state: Contains the current state of the field & all the data |
|
|
|
* @params {String} id: the id of the updated object. |
|
|
|
* @params {Array} fields: The fields we have in the view. |
|
|
|
* @params {Object} ev: The event object. |
|
|
|
* @returns {Deferred} The deferred object thats gonna be resolved when the change is made. |
|
|
|
* @param {Object} state |
|
|
|
* Contains the current state of the field & all the data |
|
|
|
* |
|
|
|
* @param {String} id |
|
|
|
* the id of the updated object. |
|
|
|
* |
|
|
|
* @param {Array} fields |
|
|
|
* The fields we have in the view. |
|
|
|
* |
|
|
|
* @param {Object} ev |
|
|
|
* The event object. |
|
|
|
* |
|
|
|
* @returns {Deferred} |
|
|
|
* The deferred object thats gonna be resolved when the change is made. |
|
|
|
*/ |
|
|
|
confirmUpdate: function (state, id, fields, ev) { |
|
|
|
var self = this; |
|
|
@ -365,32 +425,35 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
self._refresh(id); |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Refresh our grid. |
|
|
|
* |
|
|
|
* @private |
|
|
|
* @param {String} id Datapoint ID |
|
|
|
*/ |
|
|
|
_refresh: function (id) { |
|
|
|
this._updateRow(id); |
|
|
|
this._refreshColTotals(); |
|
|
|
this._refreshRowTotals(); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
*Update row data in our internal rows. |
|
|
|
* |
|
|
|
* @params {String} id: The id of the row that needs to be updated. |
|
|
|
* @param {String} id: The id of the row that needs to be updated. |
|
|
|
*/ |
|
|
|
_updateRow: function (id) { |
|
|
|
var self = this, |
|
|
|
record = _.findWhere(self.state.data, {id: id}); |
|
|
|
_.each(self.rows, function(row) { |
|
|
|
var record = _.findWhere(this.state.data, {id: id}); |
|
|
|
_.each(this.rows, function (row) { |
|
|
|
_.each(row.data, function (col, i) { |
|
|
|
if (col.id == id) { |
|
|
|
if (col.id === id) { |
|
|
|
row.data[i] = record; |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Update the row total. |
|
|
|
*/ |
|
|
@ -398,6 +461,7 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
this._computeColumnAggregates(); |
|
|
|
this.$('tfoot').replaceWith(this._renderFooter()); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
* Update the column total. |
|
|
|
*/ |
|
|
@ -412,10 +476,15 @@ odoo.define('web_widget_x2many_2d_matrix.X2Many2dMatrixRenderer', function (requ |
|
|
|
} |
|
|
|
}); |
|
|
|
}, |
|
|
|
/* |
|
|
|
x2m fields expect this |
|
|
|
|
|
|
|
/** |
|
|
|
* X2many fields expect this |
|
|
|
* |
|
|
|
* @returns {null} |
|
|
|
*/ |
|
|
|
getEditableRecordID: function (){ return false;} |
|
|
|
getEditableRecordID: function () { |
|
|
|
return null; |
|
|
|
}, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|