Skip to content

Commit

Permalink
UI Navigation Studies / Series - Mark (all series of) study / series …
Browse files Browse the repository at this point in the history
…as Requested or Unscheduled : Return UIDs of updated entities in displayed message #4348
  • Loading branch information
vrindanayak committed Jan 12, 2024
1 parent 975c86c commit c3d7345
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions dcm4chee-arc-ui2/src/app/study/study/study.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4941,12 +4941,12 @@ export class StudyComponent implements OnInit, OnDestroy, AfterContentChecked{
this.service.markAsRequestedOrUnscheduled(this.studyWebService.selectedWebService,studyInstanceUID,toSendObject, level, e).subscribe(res=>{
this.cfpLoadingBar.complete();
let infoMsg = level === "series"
? requested
? $localize `:@@mark_series_requested_successfully:Series marked as Requested successfully!`
: $localize `:@@mark_series_unscheduled_successfully:Series marked as Unscheduled successfully!`
: requested
? $localize `:@@mark_study_requested_successfully:All Series of Study marked as Requested successfully!`
: $localize `:@@mark_study_unscheduled_successfully:All Series of Study marked as Unscheduled successfully!`;
? requested
? $localize `:@@mark_series_requested_successfully:Series[uid=${this.service.getSeriesInstanceUID(e.attrs)}] marked as Requested successfully!`
: $localize `:@@mark_series_unscheduled_successfully:Series[uid=${this.service.getSeriesInstanceUID(e.attrs)}] marked as Unscheduled successfully!`
: requested
? $localize `:@@mark_study_requested_successfully:All Series of Study[uid=${studyInstanceUID}] marked as Requested successfully!`
: $localize `:@@mark_study_unscheduled_successfully:All Series of Study[uid=${studyInstanceUID}] marked as Unscheduled successfully!`;
this.appService.showMsg(infoMsg);
},err=>{
this.cfpLoadingBar.complete();
Expand Down

0 comments on commit c3d7345

Please sign in to comment.