]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/record/holdings.component.html
ec94e18a815319e12814582145874aff2d8d7298
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / catalog / record / holdings.component.html
1
2 <!-- org unit selector -->
3
4 <div class="row mt-3">
5   <div class="col-lg-4">
6     <div class="input-group">
7       <div class="input-group-prepend">
8         <div class="input-group-text" i18n>Holdings Maintenance</div>
9       </div>
10       <eg-org-select [initialOrg]="contextOrg" 
11         (onChange)="contextOrgChanged($event)">
12       </eg-org-select>
13     </div>
14   </div>
15 </div>
16
17 <!-- Location / Barcode cell template -->
18
19 <ng-template #locationTemplate let-row="row" let-userContext="userContext">
20   <!-- pl-* is doubled for added impact -->
21   <div class="pl-{{row.locationDepth}}">
22     <span class="pl-{{row.locationDepth}}">
23       <a class="label-with-material-icon" (click)="userContext.toggleExpandRow(row)">
24         <!--  leave the icons in place for all node types, but make them
25               invisible when they are not needed. -->
26         <span *ngIf="row.treeNode.expanded"
27           [ngClass]="{invisible: row.copy || row.treeNode.children.length == 0}"
28           class="material-icons p-0 m-0">arrow_drop_down</span>
29         <span *ngIf="!row.treeNode.expanded"
30           [ngClass]="{invisible: row.copy || row.treeNode.children.length == 0}"
31           class="material-icons p-0 m-0">arrow_right</span>
32         <span>{{row.locationLabel}}</span>
33       </a>
34     </span>
35   </div>
36 </ng-template>
37
38 <!-- Holdable true/false display -->
39
40 <ng-template #holdableTemplate let-row="row" let-userContext="userContext">
41   <ng-container *ngIf="row.copy">
42     <eg-bool [value]="userContext.copyIsHoldable(row.copy)">
43     </eg-bool>
44   </ng-container>
45 </ng-template>
46
47 <eg-mark-damaged-dialog #markDamagedDialog></eg-mark-damaged-dialog>
48 <eg-mark-missing-dialog #markMissingDialog></eg-mark-missing-dialog>
49 <eg-copy-alerts-dialog #copyAlertsDialog></eg-copy-alerts-dialog>
50 <eg-replace-barcode-dialog #replaceBarcode></eg-replace-barcode-dialog>
51 <eg-delete-volcopy-dialog #deleteVolcopy></eg-delete-volcopy-dialog>
52 <eg-bucket-dialog #bucketDialog></eg-bucket-dialog>
53 <eg-conjoined-items-dialog #conjoinedDialog></eg-conjoined-items-dialog>
54 <eg-make-bookable-dialog #makeBookableDialog></eg-make-bookable-dialog>
55
56 <!-- holdings grid -->
57 <div class='eg-copies w-100 mt-3'>
58   <eg-grid #holdingsGrid [dataSource]="gridDataSource"
59     (onRowActivate)="onRowActivate($event)" [disablePaging]="true"
60     [rowClassCallback]="rowClassCallback"
61     [sortable]="false" persistKey="cat.holdings">
62
63     <!-- checkboxes / filters -->
64
65     <eg-grid-toolbar-checkbox i18n-label label="Show Call Numbers"
66       #volsCheckbox (onChange)="toggleShowVolumes($event)">
67     </eg-grid-toolbar-checkbox> 
68     <eg-grid-toolbar-checkbox i18n-label label="Show Copies" 
69       #copiesCheckbox (onChange)="toggleShowCopies($event)">
70     </eg-grid-toolbar-checkbox> 
71     <eg-grid-toolbar-checkbox i18n-label label="Show Empty Call Numbers"
72       #emptyVolsCheckbox (onChange)="toggleShowEmptyVolumes($event)">
73     </eg-grid-toolbar-checkbox> 
74     <eg-grid-toolbar-checkbox i18n-label label="Show Empty Libs"            
75       #emptyLibsCheckbox (onChange)="toggleShowEmptyLibs($event)">
76     </eg-grid-toolbar-checkbox> 
77
78     <!-- row actions -->
79
80     <!-- row actions : Ungrouped -->
81
82     <eg-grid-toolbar-action
83       i18n-label label="Print Labels" (onClick)="openItemPrintLabels($event)">
84     </eg-grid-toolbar-action>
85
86     <eg-grid-toolbar-action
87       i18n-label label="Request Items" (onClick)="requestItems($event)">
88     </eg-grid-toolbar-action>
89
90     <eg-grid-toolbar-action
91       i18n-label label="Link as Conjoined to Marked Bib Record"
92       (onClick)="openConjoinedDialog($event)">
93     </eg-grid-toolbar-action>
94
95     <!-- row actions : Add -->
96
97     <eg-grid-toolbar-action
98       i18n-group group="Add" i18n-label label="Add Call Numbers"
99       (onClick)="openVolCopyEdit($event, true, false)">
100     </eg-grid-toolbar-action>
101
102     <eg-grid-toolbar-action
103       i18n-group group="Add" i18n-label label="Add Items"
104       (onClick)="openVolCopyEdit($event, false, true)">
105     </eg-grid-toolbar-action>
106
107     <eg-grid-toolbar-action
108       i18n-group group="Add" i18n-label label="Add Call Numbers and Items"
109       (onClick)="openVolCopyEdit($event, true, true)">
110     </eg-grid-toolbar-action>
111
112     <eg-grid-toolbar-action
113       i18n-group group="Add" i18n-label label="Add Item Alerts"
114       (onClick)="openItemNotes($event, 'create')">
115     </eg-grid-toolbar-action>
116
117     <eg-grid-toolbar-action
118       i18n-group group="Add" i18n-label label="Add Items To Bucket"
119       (onClick)="openBucketDialog($event)">
120     </eg-grid-toolbar-action>
121
122     <!-- row actions: Booking -->
123
124     <eg-grid-toolbar-action
125       i18n-group group="Booking" i18n-label label="Book Item Now"
126       (onClick)="bookItems($event)">
127     </eg-grid-toolbar-action>
128
129     <eg-grid-toolbar-action
130       i18n-group group="Booking" i18n-label label="Make Items Bookable"
131       (onClick)="makeBookable($event)">
132     </eg-grid-toolbar-action>
133     
134     <!-- row actions: Edit -->
135
136     <eg-grid-toolbar-action
137       i18n-group group="Edit" i18n-label label="Edit Call Numbers"
138       (onClick)="openVolCopyEdit($event, true, false)">
139     </eg-grid-toolbar-action>
140
141     <eg-grid-toolbar-action
142       i18n-group group="Edit" i18n-label label="Edit Call Numbers And Items"
143       (onClick)="openVolCopyEdit($event, true, true)">
144     </eg-grid-toolbar-action>
145
146     <eg-grid-toolbar-action
147       i18n-group group="Edit" i18n-label label="Edit Items"
148       (onClick)="openVolCopyEdit($event, false, true)">
149     </eg-grid-toolbar-action>
150     
151     <eg-grid-toolbar-action
152       i18n-group group="Edit" i18n-label label="Edit Item Alerts"
153       (onClick)="openItemNotes($event, 'manage')">
154     </eg-grid-toolbar-action>
155
156     <eg-grid-toolbar-action
157       i18n-group group="Edit" i18n-label label="Replace Barcodes"
158       (onClick)="openReplaceBarcodeDialog($event)">
159     </eg-grid-toolbar-action>
160
161     <!-- row actions: Delete -->
162
163     <eg-grid-toolbar-action
164       i18n-group group="Delete" i18n-label label="Delete Empty Call Numbers"
165       (onClick)="deleteHoldings($event, 'vols')">
166     </eg-grid-toolbar-action>
167
168     <eg-grid-toolbar-action
169      i18n-group group="Delete" i18n-label label="Delete Items"
170      (onClick)="deleteHoldings($event, 'copies')">
171     </eg-grid-toolbar-action>
172
173     <eg-grid-toolbar-action
174       i18n-group group="Delete" i18n-label label="Delete Call Numbers and Items"
175       (onClick)="deleteHoldings($event, 'both')">
176     </eg-grid-toolbar-action>
177     
178     <!-- row actions : Show -->
179
180     <eg-grid-toolbar-action
181       i18n-group group="Show" i18n-label label="Show Item Status (list)"
182       (onClick)="openItemStatusList($event)"></eg-grid-toolbar-action>
183
184     <eg-grid-toolbar-action
185       i18n-group group="Show" i18n-label label="Show Item Status (detail)"
186       (onClick)="openItemStatus($event)"></eg-grid-toolbar-action>
187
188     <eg-grid-toolbar-action
189       i18n-group group="Show" i18n-label label="Show Item Holds"
190       (onClick)="openItemHolds($event)"></eg-grid-toolbar-action>
191
192     <eg-grid-toolbar-action
193       i18n-group group="Show" i18n-label label="Show Triggered Events"
194       (onClick)="openItemTriggeredEvents($event)"></eg-grid-toolbar-action>
195
196     <!-- row actions : Mark -->
197
198     <eg-grid-toolbar-action
199       group="Mark" i18n-group i18n-label label="Mark Item Damaged"
200       (onClick)="showMarkDamagedDialog($event)"></eg-grid-toolbar-action>
201
202     <eg-grid-toolbar-action
203       i18n-group group="Mark" i18n-label label="Mark Item Missing"
204       (onClick)="showMarkMissingDialog($event)">
205     </eg-grid-toolbar-action>
206
207     <eg-grid-toolbar-action
208       i18n-group group="Mark" 
209       i18n-label label="Mark Library/Call Number as Transfer Destination"
210       (onClick)="markLibCnForTransfer($event)">
211     </eg-grid-toolbar-action>
212       
213
214     <!-- fields -->
215     <!-- NOTE column names were added to match the names from the AngJS grid
216         so grid settings would propagate -->
217
218     <eg-grid-column path="index" [hidden]="true" [index]="true">
219     </eg-grid-column>
220     <eg-grid-column name="id" path="copy.id" [hidden]="true" label="Copy ID" i18n-label>
221     </eg-grid-column>
222     <eg-grid-column path="volume.id" [hidden]="true" label="Call Number ID" i18n-label>
223     </eg-grid-column>
224     <eg-grid-column name="owner_label" [flex]="4"
225       [cellTemplate]="locationTemplate" [cellContext]="gridTemplateContext" 
226       label="Location/Barcode" [disableTooltip]="true" i18n-label>
227     </eg-grid-column>
228     <eg-grid-column path="volumeCount" datatype="number" label="Call Numbers" i18n-label>
229     </eg-grid-column>
230     <eg-grid-column path="copyCount" datatype="number" label="Copies" i18n-label>
231     </eg-grid-column>
232     <eg-grid-column path="volume._label" name="call_number.label" 
233       label="Call Number" i18n-label>
234     </eg-grid-column>
235     <eg-grid-column path="copy.barcode" name="barcode" label="Barcode" i18n-label>
236     </eg-grid-column>
237     <eg-grid-column i18n-label label="Circ Library" path="copy.circ_lib" 
238       name="circ_lib.name" datatype="org_unit"></eg-grid-column>
239     <eg-grid-column i18n-label label="Owning Library" path="volume.owning_lib" 
240       datatype="org_unit"></eg-grid-column>
241     <eg-grid-column i18n-label label="Due Date" path="circ.due_date" 
242       datatype="timestamp"></eg-grid-column>
243     <eg-grid-column i18n-label label="Shelving Location" 
244       path="copy.location.name" name="location.name">
245     </eg-grid-column>
246     <eg-grid-column i18n-label label="Circulation Modifier" 
247       path="copy.circ_modifier" name="circ_modifier">
248     </eg-grid-column>
249     <eg-grid-column i18n-label label="Copy Number" path="copy.copy_number" 
250       name="copy_number" [hidden]="true">
251     </eg-grid-column>
252
253     <eg-grid-column i18n-label label="Status" 
254       path="copy.status.name" name="status_name">
255     </eg-grid-column>
256     <eg-grid-column i18n-label label="Call Number Prefix" 
257       path="volume.prefix.label" name="call_number.prefix.label" [hidden]="true">
258     </eg-grid-column>
259     <eg-grid-column i18n-label label="Call Number Suffix" 
260       path="volume.suffix.label" name="call_number.suffix.label" [hidden]="true">
261     </eg-grid-column>
262     <eg-grid-column i18n-label label="Active/Create Date" 
263       path="copy.active_date" datatype="timestamp">
264     </eg-grid-column>
265     <eg-grid-column i18n-label label="Age Hold Protection" 
266       path="copy.age_protect.name" name="age_protect.name"></eg-grid-column>
267     <eg-grid-column i18n-label label="Copy Price" 
268       path="copy.price" name="price" [hidden]="true"></eg-grid-column>
269
270     <eg-grid-column i18n-label label="Circulate" path="copy.circulate" 
271       name="circulate" datatype="bool" [hidden]="true"></eg-grid-column>
272     <eg-grid-column i18n-label label="Deposit" path="copy.deposit" 
273       name="deposit" datatype="bool" [hidden]="true"></eg-grid-column>
274     <eg-grid-column i18n-label label="Deposit Amount" path="copy.deposit_amount" 
275       name="deposit_amount" datatype="money" [hidden]="true"></eg-grid-column>
276     <eg-grid-column i18n-label label="Holdable?" name="holdable" 
277       [cellTemplate]="holdableTemplate" [cellContext]="gridTemplateContext">
278     </eg-grid-column>
279     <eg-grid-column i18n-label label="Reference?" path="copy.ref" 
280       name="ref" datatype="bool" [hidden]="true"></eg-grid-column>
281     <eg-grid-column i18n-label label="Last Inventory Date" 
282       path="copy.latest_inventory.inventory_date" 
283       name="latest_inventory.inventory_date" datatype="timestamp" [hidden]="true">
284     </eg-grid-column>
285     <eg-grid-column i18n-label label="Last Inventory Workstation" 
286       path="copy.latest_inventory.inventory_workstation.name" 
287       name="latest_inventory.inventory_workstation.name" [hidden]="true">
288     </eg-grid-column>
289   </eg-grid>
290 </div>
291