mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Calendar: Fix infolog displayed on calendar did not properly convert to timesheet entry
This commit is contained in:
parent
64c8ac9970
commit
aed4b78dda
@ -1570,9 +1570,19 @@ var CalendarApp = /** @class */ (function (_super) {
|
||||
* @param {egwActionObject[]} _events
|
||||
*/
|
||||
CalendarApp.prototype.action_open = function (_action, _events) {
|
||||
var id = _events[0].id.split('::');
|
||||
var app = id[0];
|
||||
var app_id = id[1];
|
||||
var app, id, app_id;
|
||||
// Try to get better by going straight for the data
|
||||
var data = egw.dataGetUIDdata(_events[0].id);
|
||||
if (data && data.data) {
|
||||
app = data.data.app;
|
||||
app_id = data.data.app_id;
|
||||
id = data.data.id;
|
||||
}
|
||||
else {
|
||||
// Try to set some reasonable values from the ID
|
||||
id = _events[0].id.split('::');
|
||||
app = id[0];
|
||||
app_id = id[1];
|
||||
if (app_id && app_id.indexOf(':')) {
|
||||
var split = id[1].split(':');
|
||||
id = split[0];
|
||||
@ -1580,6 +1590,7 @@ var CalendarApp = /** @class */ (function (_super) {
|
||||
else {
|
||||
id = app_id;
|
||||
}
|
||||
}
|
||||
if (_action.data.open) {
|
||||
var open = JSON.parse(_action.data.open) || {};
|
||||
var extra = open.extra || '';
|
||||
|
@ -1696,18 +1696,32 @@ class CalendarApp extends EgwApp
|
||||
*/
|
||||
action_open(_action, _events)
|
||||
{
|
||||
var id = _events[0].id.split('::');
|
||||
var app = id[0];
|
||||
var app_id = id[1];
|
||||
let app, id, app_id;
|
||||
// Try to get better by going straight for the data
|
||||
let data = egw.dataGetUIDdata(_events[0].id);
|
||||
if(data && data.data)
|
||||
{
|
||||
app = data.data.app;
|
||||
app_id = data.data.app_id;
|
||||
id = data.data.id;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Try to set some reasonable values from the ID
|
||||
id = _events[0].id.split('::');
|
||||
app = id[0];
|
||||
app_id = id[1];
|
||||
if(app_id && app_id.indexOf(':'))
|
||||
{
|
||||
var split = id[1].split(':');
|
||||
let split = id[1].split(':');
|
||||
id = split[0];
|
||||
}
|
||||
else
|
||||
{
|
||||
id = app_id;
|
||||
}
|
||||
}
|
||||
|
||||
if(_action.data.open)
|
||||
{
|
||||
var open = JSON.parse(_action.data.open) || {};
|
||||
|
Loading…
Reference in New Issue
Block a user