]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/share/circ/components.component.html
LP1904036 Circ events handler for AVAIL_HOLD_COPY_RATIO_EXCEEDED
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / share / circ / components.component.html
1
2 <eg-precat-checkout-dialog #precatDialog></eg-precat-checkout-dialog>
3
4 <eg-circ-events-dialog #circEventsDialog></eg-circ-events-dialog>
5
6 <eg-alert-dialog #routeToCatalogingDialog
7   i18n-dialogTitle dialogTitle="Route To Cataloging"
8   i18n-dialogBody dialogBody="This item needs to be routed to CATALOGING">
9 </eg-alert-dialog>
10
11 <eg-alert-dialog #circFailedDialog
12   i18n-dialogTitle dialogTitle="Unable to Complete Action">
13 </eg-alert-dialog>
14
15 <ng-template #locAlertTemplate let-barcode="barcode" let-location="location" i18n>
16   Item {{barcode}} needs to be routed to {{location}}.
17 </ng-template>
18 <!-- dialogBody is generated dynamically from string above -->
19 <eg-string key="staff.circ.checkin.location.alert" [template]="locAlertTemplate">
20 </eg-string>
21
22 <eg-alert-dialog #locationAlertDialog i18n-dialogTitle dialogTitle="Route Item">
23 </eg-alert-dialog>
24
25 <ng-template #uncatAlertTemplate let-barcode="barcode" i18n>
26   Item "{{barcode}}" was mis-scanned or is not cataloged
27 </ng-template>
28 <!-- dialogBody is generated dynamically from string above -->
29 <eg-string key="staff.circ.checkin.uncat.alert" [template]="uncatAlertTemplate">
30 </eg-string>
31
32 <eg-alert-dialog #uncatAlertDialog i18n-dialogTitle dialogTitle="Route Item">
33 </eg-alert-dialog>
34
35 <eg-open-circ-dialog #openCircDialog></eg-open-circ-dialog>
36
37 <eg-circ-route-dialog #routeDialog></eg-circ-route-dialog>
38 <eg-copy-in-transit-dialog #copyInTransitDialog></eg-copy-in-transit-dialog>
39
40 <eg-string #holdShelfStr i18n-text text="Hold Shelf"></eg-string>
41 <eg-string #catalogingStr i18n-text text="Cataloging"></eg-string>
42
43 <eg-string key="staff.circ.events.PATRON_CARD_INACTIVE" i18n-text
44   text="The card used to retrieve this account is inactive and 
45   may not be used to circulate items."></eg-string>
46
47 <eg-string key="staff.circ.events.PATRON_INACTIVE" i18n-text
48   text="This account is inactive and may not circulate items."></eg-string>
49
50 <eg-string key="staff.circ.events.PATRON_ACCOUNT_EXPIRED" i18n-text
51   text="This account has expired and may not circulate items."></eg-string>
52
53 <eg-string key="staff.circ.events.ASSET_COPY_NOT_FOUND" i18n-text
54   text="Item was not found and cannot be renewed."></eg-string>
55
56 <eg-string key="staff.circ.events.ACTOR_USER_NOT_FOUND" i18n-text
57   text="Item is not checked out cannot be renewed."></eg-string>
58
59 <eg-string key="staff.circ.events.AVAIL_HOLD_COPY_RATIO_EXCEEDED" i18n-text
60   text="Item is needed for a hold (Available Copy to Hold Ratio Exceeded)">
61 </eg-string>
62
63 <ng-template #claimsReturnsTmpl>
64   Item "{{barcode}}" is marked as Claims Returned</ng-template>
65 <eg-string key="staff.circ.events.CIRC_CLAIMS_RETURNED" 
66   [template]="claimsReturnsTmpl"></eg-string>
67
68 <ng-template #genericCheckoutFailedTmpl>
69   Unable to checkout item "{{barcode}}" : {{textcode}}
70 </ng-template>
71
72 <eg-string key="staff.circ.events.CHECKOUT_FAILED_GENERIC" 
73   [template]="genericCheckoutFailedTmpl"></eg-string>
74
75 <eg-copy-alert-manager #copyAlertManager></eg-copy-alert-manager>
76
77 <eg-bad-barcode-dialog #badBarcodeDialog></eg-bad-barcode-dialog>
78