Fix kanban merge into document stopped working with introduction of PDF checkbox

This commit is contained in:
nathan 2021-10-18 09:42:12 -06:00 committed by Ralf Becker
parent d9959a6aa0
commit b320f7517f
2 changed files with 13 additions and 7 deletions

View File

@ -580,20 +580,22 @@ var EgwApp = /** @class */ (function () {
* @param {egwActionObject[]} _selected
*/
EgwApp.prototype.merge = function (_action, _selected) {
var _a;
// Find what we need
var nm = null;
var action = _action;
var as_pdf = false;
var as_pdf = null;
// Find Select all
while (nm == null && action != null) {
while (nm == null && action.parent != null) {
if (action.data != null && action.data.nextmatch) {
nm = action.data.nextmatch;
}
if (as_pdf === null && action.getActionById('as_pdf') !== null) {
as_pdf = action.getActionById('as_pdf').checked;
}
action = action.parent;
}
var all = (nm === null || nm === void 0 ? void 0 : nm.getSelection().all) || false;
as_pdf = ((_a = action.getActionById('as_pdf')) === null || _a === void 0 ? void 0 : _a.checked) || false;
as_pdf = as_pdf || false;
// Get list of entry IDs
var ids = [];
for (var i = 0; !all && i < _selected.length; i++) {

View File

@ -745,20 +745,24 @@ export abstract class EgwApp
// Find what we need
let nm = null;
let action = _action;
let as_pdf = false;
let as_pdf = null;
// Find Select all
while(nm == null && action != null)
while(nm == null && action.parent != null)
{
if(action.data != null && action.data.nextmatch)
{
nm = action.data.nextmatch;
}
if(as_pdf === null && action.getActionById('as_pdf') !== null)
{
as_pdf = action.getActionById('as_pdf').checked;
}
action = action.parent;
}
let all = nm?.getSelection().all || false;
as_pdf = action.getActionById('as_pdf')?.checked || false;
as_pdf = as_pdf || false;
// Get list of entry IDs
let ids = [];