[11.0][FIX] open Account Move Line view from Aged Partner Balance report

This commit is contained in:
Adrià Gil Sorribes
2019-05-28 16:52:26 +02:00
committed by chaule97
parent efd0123bf6
commit 3de3a119e5

View File

@@ -36,8 +36,15 @@ odoo.define('account_financial_report.account_financial_report_widget', function
boundLinkmulti: function (e) {
var res_model = $(e.target).data('res-model');
var domain = $(e.target).data('domain');
if (!res_model) {
res_model = $(e.target.parentElement).data('res-model');
}
if (!domain) {
domain = $(e.target.parentElement).data('domain');
}
return this.do_action({
type: 'ir.actions.act_window',
name: this._toTitleCase(res_model.split('.').join(' ')),
res_model: res_model,
domain: domain,
views: [[false, "list"], [false, "form"]],
@@ -66,6 +73,12 @@ odoo.define('account_financial_report.account_financial_report_widget', function
target: 'current',
});
},
_toTitleCase: function (str) {
return str.replace(/\w\S*/g, function (txt) {
return txt.charAt(0).toUpperCase() +
txt.substr(1).toLowerCase();
});
},
});
return accountFinancialReportWidget;