mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
Calendar: make sure non-infolog integrations get processed correctly
This commit is contained in:
parent
aa32aaccd8
commit
d372f79f82
@ -552,9 +552,13 @@ var CalendarApp = /** @class */ (function (_super) {
|
|||||||
app: this.appname
|
app: this.appname
|
||||||
});
|
});
|
||||||
if (integrated_pushData.type == "delete" || egw.dataHasUID(this.uid(integrated_pushData))) {
|
if (integrated_pushData.type == "delete" || egw.dataHasUID(this.uid(integrated_pushData))) {
|
||||||
return _super.prototype.push.call(this, integrated_pushData);
|
// Super always looks at this.et2, make sure it finds listview
|
||||||
|
var old_et2 = this.et2;
|
||||||
|
this.et2 = CalendarApp.views.listview.etemplates[0].widgetContainer;
|
||||||
|
_super.prototype.push.call(this, integrated_pushData);
|
||||||
|
this.et2 = old_et2;
|
||||||
}
|
}
|
||||||
// Ask for the real data, we don't have it
|
// Ask for the real data, we don't have it. This also updates views that don't use nextmatch.
|
||||||
this._fetch_data(this.state, undefined, 0, [integrated_pushData.id]);
|
this._fetch_data(this.state, undefined, 0, [integrated_pushData.id]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -489,9 +489,13 @@ class CalendarApp extends EgwApp
|
|||||||
});
|
});
|
||||||
if(integrated_pushData.type == "delete" || egw.dataHasUID(this.uid(integrated_pushData)))
|
if(integrated_pushData.type == "delete" || egw.dataHasUID(this.uid(integrated_pushData)))
|
||||||
{
|
{
|
||||||
return super.push(integrated_pushData);
|
// Super always looks at this.et2, make sure it finds listview
|
||||||
|
let old_et2 = this.et2;
|
||||||
|
this.et2 = (<etemplate2> CalendarApp.views.listview.etemplates[0]).widgetContainer;
|
||||||
|
super.push(integrated_pushData);
|
||||||
|
this.et2 = old_et2;
|
||||||
}
|
}
|
||||||
// Ask for the real data, we don't have it
|
// Ask for the real data, we don't have it. This also updates views that don't use nextmatch.
|
||||||
this._fetch_data(this.state,undefined,0,[integrated_pushData.id]);
|
this._fetch_data(this.state,undefined,0,[integrated_pushData.id]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user