mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +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,15 +1570,26 @@ var CalendarApp = /** @class */ (function (_super) {
|
|||||||
* @param {egwActionObject[]} _events
|
* @param {egwActionObject[]} _events
|
||||||
*/
|
*/
|
||||||
CalendarApp.prototype.action_open = function (_action, _events) {
|
CalendarApp.prototype.action_open = function (_action, _events) {
|
||||||
var id = _events[0].id.split('::');
|
var app, id, app_id;
|
||||||
var app = id[0];
|
// Try to get better by going straight for the data
|
||||||
var app_id = id[1];
|
var data = egw.dataGetUIDdata(_events[0].id);
|
||||||
if (app_id && app_id.indexOf(':')) {
|
if (data && data.data) {
|
||||||
var split = id[1].split(':');
|
app = data.data.app;
|
||||||
id = split[0];
|
app_id = data.data.app_id;
|
||||||
|
id = data.data.id;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
id = app_id;
|
// 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];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
id = app_id;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (_action.data.open) {
|
if (_action.data.open) {
|
||||||
var open = JSON.parse(_action.data.open) || {};
|
var open = JSON.parse(_action.data.open) || {};
|
||||||
|
@ -1696,18 +1696,32 @@ class CalendarApp extends EgwApp
|
|||||||
*/
|
*/
|
||||||
action_open(_action, _events)
|
action_open(_action, _events)
|
||||||
{
|
{
|
||||||
var id = _events[0].id.split('::');
|
let app, id, app_id;
|
||||||
var app = id[0];
|
// Try to get better by going straight for the data
|
||||||
var app_id = id[1];
|
let data = egw.dataGetUIDdata(_events[0].id);
|
||||||
if(app_id && app_id.indexOf(':'))
|
if(data && data.data)
|
||||||
{
|
{
|
||||||
var split = id[1].split(':');
|
app = data.data.app;
|
||||||
id = split[0];
|
app_id = data.data.app_id;
|
||||||
|
id = data.data.id;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
id = app_id;
|
// 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(':'))
|
||||||
|
{
|
||||||
|
let split = id[1].split(':');
|
||||||
|
id = split[0];
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
id = app_id;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(_action.data.open)
|
if(_action.data.open)
|
||||||
{
|
{
|
||||||
var open = JSON.parse(_action.data.open) || {};
|
var open = JSON.parse(_action.data.open) || {};
|
||||||
|
Loading…
Reference in New Issue
Block a user