From: Bill Erickson Date: Tue, 14 Sep 2021 14:27:30 +0000 (-0400) Subject: LP1919465 Pull list prefix/suffix sorting; columns X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ce371f45408d7307673cae44f2c8ae1c87b57015;p=working%2FEvergreen.git LP1919465 Pull list prefix/suffix sorting; columns * Include call number prefix and suffix in hold pull list sorting. * Apply sane default grid columns. Signed-off-by: Bill Erickson Signed-off-by: Jennifer Weston Signed-off-by: Chris Sharp --- diff --git a/Open-ILS/src/eg2/src/app/staff/circ/holds/pull-list.component.html b/Open-ILS/src/eg2/src/app/staff/circ/holds/pull-list.component.html index 263463a5bd..d60e610f9a 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/holds/pull-list.component.html +++ b/Open-ILS/src/eg2/src/app/staff/circ/holds/pull-list.component.html @@ -4,6 +4,7 @@ diff --git a/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.html b/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.html index 524868c2b0..2910573160 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.html +++ b/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.html @@ -138,6 +138,18 @@ + + + + + + + {{hold.title}} + + + + {{hold.cp_barcode}} @@ -146,6 +158,12 @@ + + + + + @@ -156,26 +174,11 @@ [cellTemplate]="userBarcodeTmpl" [hidden]="true"> - - - - - - {{hold.title}} - - - - - - - - + + @@ -201,7 +204,6 @@ - @@ -277,13 +279,10 @@ - - - diff --git a/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.ts b/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.ts index ffd9371f0f..521bd9c0bc 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.ts @@ -172,7 +172,9 @@ export class HoldsGridComponent implements OnInit { this.defaultSort = [ {name: 'copy_location_order_position', dir: 'asc'}, {name: 'acpl_name', dir: 'asc'}, - {name: 'cn_label_sortkey', dir: 'asc'} + {name: 'ancp_label', dir: 'asc'}, // NOTE: API typo "ancp" + {name: 'cn_label_sortkey', dir: 'asc'}, + {name: 'ancs_label', dir: 'asc'} // NOTE: API typo "ancs" ]; } else {