Manuel Tauber 2024-08-21 14:44:26 +02:00
parent 9a5d9877ba
commit 42d8a2ab36
3 changed files with 6 additions and 4 deletions

View File

@ -1231,9 +1231,10 @@ export class NttGanttComponent implements OnInit {
if (args.dialogModel) {
args.cancel = true;
if (args.rowData.taskData.resources[0].state == 0) {
window.open(this.config.consoleUrl + "/smartit/app/#/paketPV/" + args.rowData.taskData.resources[0].packageInstanceId, "_blank");
// https://aim.asfinag.at/helix/index.html#/asf.aim/view/asf.aim:changePV?InstanceID=<InstanceID>
window.open(this.config.consoleUrl + "/helix/index.html#/asf.aim/view/asf.aim:paketPV?InstanceID=" + args.rowData.taskData.resources[0].packageInstanceId, "_blank");
} else {
window.open(this.config.consoleUrl + "/smartit/app/#/changePV/" + args.rowData.taskData.resources[0].packageInstanceId, "_blank");
window.open(this.config.consoleUrl + "/helix/index.html#/asf.aim/view/asf.aim:changePV?InstanceID=" + args.rowData.taskData.resources[0].packageInstanceId, "_blank");
}
this.ganttDefault.hideSpinner();
} else {

View File

@ -1 +1 @@
{"production":false,"rssoUrl":"http://orf.at","backendUrl":"http://localhost:8080/api", "consoleUrl": "https://itsm-dev-neu-smartit.asfinag.at"}
{"production":false,"rssoUrl":"http://orf.at","backendUrl":"http://localhost:8080/api", "consoleUrl": "https://aim.asfinag.at"}

View File

@ -6,5 +6,6 @@ export const environment: AppConfig = {
production: false,
rssoUrl: "#",
backendUrl: "http://localhost:8080/api",
consoleUrl: "https://itsm-dev-neu-smartit.asfinag.at"
consoleUrl: "https://aim.asfinag.at"
};