Skip to content

Commit

Permalink
UI: Navigation filter: move patient id filter in to issuer of patient…
Browse files Browse the repository at this point in the history
… widget #4507
  • Loading branch information
shral committed May 31, 2024
1 parent 18238a2 commit 7f2fd68
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 29 deletions.
24 changes: 0 additions & 24 deletions dcm4chee-arc-ui2/src/app/constants/globalvar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4064,12 +4064,6 @@ export class Globalvar {
filterKey:"fuzzymatching",
text:$localize `:@@fuzzy_matching:Fuzzy Matching`,
description:$localize `:@@fuzzy_matching_desc:Fuzzy semantic matching of person names`
}, {
tag:"input",
type:"text",
filterKey:"PatientID",
description:$localize `:@@patient_id:Patient ID`,
placeholder:$localize `:@@patient_id:Patient ID`
}, {
tag:"issuer-selector",
issuers:[
Expand Down Expand Up @@ -4302,12 +4296,6 @@ export class Globalvar {
filterKey:"fuzzymatching",
text:$localize `:@@fuzzy_matching:Fuzzy Matching`,
description:$localize `:@@fuzzy_matching_desc:Fuzzy semantic matching of person names`
}, {
tag:"input",
type:"text",
filterKey:"PatientID",
description:$localize `:@@patient_id:Patient ID`,
placeholder:$localize `:@@patient_id:Patient ID`
}, {
tag:"issuer-selector",
issuers:[
Expand Down Expand Up @@ -4520,12 +4508,6 @@ export class Globalvar {
filterKey:"fuzzymatching",
text:$localize `:@@fuzzy_matching:Fuzzy Matching`,
description:$localize `:@@fuzzy_matching_desc:Fuzzy semantic matching of person names`
}, {
tag:"input",
type:"text",
filterKey:"PatientID",
description:$localize `:@@patient_id:Patient ID`,
placeholder:$localize `:@@patient_id:Patient ID`
}, {
tag:"issuer-selector",
issuers:[
Expand Down Expand Up @@ -6040,12 +6022,6 @@ export class Globalvar {
filterKey:"InstitutionalDepartmentName",
description:"Institutional Department Name",
placeholder:"Institutional Department Name"
}, {
tag:"input",
type:"text",
filterKey:"PatientID",
description:"Patient ID",
placeholder:"Patient ID"
}, {
tag:"input",
type:"text",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,13 @@ export class MessagingComponent implements OnDestroy{
}
if (isInArray) { //If the same message is already in the array, then just put the class pulse (To simulate a pulse) and remove it again
let element = WindowRefService.nativeWindow.document.getElementsByClassName('msg_' + presentId)[0];
element.classList.remove("slideInRight");
element.classList.add("pulse");
setTimeout(function() {
element.classList.remove('pulse')
}, 500);
if(element){
element.classList.remove("slideInRight");
element.classList.add("pulse");
setTimeout(function() {
element.classList.remove('pulse')
}, 500);
}
} else {
let id = this.getUniqueRandomId();
msg.id = id;
Expand Down

0 comments on commit 7f2fd68

Please sign in to comment.