]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/hopeless/hopeless.component.html
LP1889128 Confirm data loaded before Place Hold activated
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / hopeless / hopeless.component.html
1
2 <eg-staff-banner bannerText="Hopeless Holds" i18n-bannerText>
3 </eg-staff-banner>
4 <eg-title i18n-prefix prefix="Hopeless Holds">
5 </eg-title>
6
7 <div class="input-group"><div class="input-group-prepend">
8   <div class="input-group-text" i18n>Hopeless Date, Start Range:</div>
9   <eg-date-select [initialIso]="startDate" (onChangeAsDate)="changeStartDate($event)">
10   </eg-date-select>
11   <div class="input-group-text" i18n>Hopeless Date, End Range:</div>
12   <eg-date-select [initialIso]="endDate" (onChangeAsDate)="changeEndDate($event)">
13   </eg-date-select>
14 </div></div>
15
16 <eg-holds-grid
17   hopeless="true" [showHopelessAfter]="startDate" [showHopelessBefore]="endDate"
18   preFetchSetting="hopeless.holds.prefetch"
19   persistKey="hopeless.wide_holds"
20   [defaultSort]="[{name:'request_time',dir:'asc'}]"
21   [initialPickupLib]="workstation_lib"
22   showFields="id,request_time,ucard_barcode,pl_shortname,hold_type,holdable_formats,title,p_label,hold_status,hopeless_date"
23 >
24 </eg-holds-grid>
25