Timesheet: Fix push owner filter was preventing updating

This commit is contained in:
nathangray 2020-07-20 13:44:28 -06:00
parent 69420c19ad
commit b0a678c0ec
2 changed files with 8 additions and 10 deletions

View File

@ -203,11 +203,10 @@ var TimesheetApp = /** @class */ (function (_super) {
// check if we might not see it because of an owner filter // check if we might not see it because of an owner filter
var nm = (_a = this.et2) === null || _a === void 0 ? void 0 : _a.getWidgetById('nm'); var nm = (_a = this.et2) === null || _a === void 0 ? void 0 : _a.getWidgetById('nm');
var nm_value = (_b = nm) === null || _b === void 0 ? void 0 : _b.getValue(); var nm_value = (_b = nm) === null || _b === void 0 ? void 0 : _b.getValue();
if (nm && nm_value && typeof ((_c = nm_value.col_filter) === null || _c === void 0 ? void 0 : _c.ts_owner) !== 'undefined') { if (nm && nm_value && ((_c = nm_value.col_filter) === null || _c === void 0 ? void 0 : _c.ts_owner) && nm_value.col_filter.ts_owner != pushData.acl) {
if (!nm_value.col_filter.ts_owner || nm_value.col_filter.ts_owner == pushData.acl) { return;
this.updateList(nm, pushData);
}
} }
this.updateList(nm, pushData);
}; };
return TimesheetApp; return TimesheetApp;
}(egw_app_1.EgwApp)); }(egw_app_1.EgwApp));

View File

@ -18,6 +18,7 @@ import '../jsapi/egw_global';
import '../etemplate/et2_types'; import '../etemplate/et2_types';
import {EgwApp} from '../../api/js/jsapi/egw_app'; import {EgwApp} from '../../api/js/jsapi/egw_app';
import {et2_nextmatch} from "../../api/js/etemplate/et2_extension_nextmatch";
/** /**
* UI for timesheet * UI for timesheet
@ -232,15 +233,13 @@ class TimesheetApp extends EgwApp
if (typeof this._grants[pushData.acl] === 'undefined') return; if (typeof this._grants[pushData.acl] === 'undefined') return;
// check if we might not see it because of an owner filter // check if we might not see it because of an owner filter
let nm = this.et2?.getWidgetById('nm'); let nm = <et2_nextmatch>this.et2?.getWidgetById('nm');
let nm_value = nm?.getValue(); let nm_value = nm?.getValue();
if (nm && nm_value && typeof nm_value.col_filter?.ts_owner !== 'undefined') if (nm && nm_value && nm_value.col_filter?.ts_owner && nm_value.col_filter.ts_owner != pushData.acl)
{ {
if (!nm_value.col_filter.ts_owner || nm_value.col_filter.ts_owner == pushData.acl) return;
{
this.updateList(nm, pushData);
}
} }
this.updateList(nm, pushData);
} }
} }