From: Bill Erickson Date: Thu, 25 Feb 2021 17:24:54 +0000 (-0500) Subject: LP1904036 Patron noncat count display X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=1142e2c8110d5ce38f56e1bafcea03ceae9a9cb4;p=working%2FEvergreen.git LP1904036 Patron noncat count display Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/items.component.html b/Open-ILS/src/eg2/src/app/staff/circ/patron/items.component.html index c0b0f5e792..b890ff429a 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/items.component.html +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/items.component.html @@ -34,7 +34,11 @@
  • - Non-Cataloged Circulations + + + Non-Cataloged Circulations ({{context.patronStats.checkouts.noncat}}) + + diff --git a/Open-ILS/src/eg2/src/app/staff/share/circ/grid.component.ts b/Open-ILS/src/eg2/src/app/staff/share/circ/grid.component.ts index 1b9ff06d7c..0282e39150 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/circ/grid.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/circ/grid.component.ts @@ -394,7 +394,6 @@ export class CircGridComponent implements OnInit { )); } - //markLost(rows: CircGridEntry[]): Observable { markLost(rows: CircGridEntry[]) { const dialog = this.openProgressDialog(rows); const barcodes = this.getCopies(rows).map(c => c.barcode());