fix: aggiunta nota ticket unito. feat: possiblità di visualizzare ticket in schede. feat: possibilità di creare un nuovo gruppo dall'interfaccia del ticket.
This commit is contained in:
@@ -80,7 +80,15 @@ const TicketGroupsView = {
|
||||
|
||||
await this.loadGroups();
|
||||
|
||||
if (this.selectedGroupId) {
|
||||
const prefillMasterTn = sessionStorage.getItem('otrs_create_group_with_master_tn');
|
||||
if (prefillMasterTn) {
|
||||
sessionStorage.removeItem('otrs_create_group_with_master_tn');
|
||||
this.openGroupModal();
|
||||
const masterInput = document.getElementById('group-master-input');
|
||||
if (masterInput) {
|
||||
masterInput.value = prefillMasterTn;
|
||||
}
|
||||
} else if (this.selectedGroupId) {
|
||||
this.selectGroup(this.selectedGroupId);
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user