-
Notifications
You must be signed in to change notification settings - Fork 1
/
FulReasourceRequestSlipLetter.xsl
420 lines (411 loc) · 18.9 KB
/
FulReasourceRequestSlipLetter.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
<?xml version="1.0" encoding="utf-8"?>
<!--
Modified on 20170111 by Wee Hiong
1. Print circulation desk name in transfer item slips.
Modified on 20170109 by Wee Hiong
1. Print library name in hold slips.
Modified on 20161107 by Wee Hiong
1. Cater for both item and holding-level holds.
2. Change XFER ITEM to TRANSFER ITEM.
Modified on 20161104 by Wee Hiong
1. Add requester's user group to hold slip.
Modified on 20161104 by Wee Hiong
1. Add customized slip for Move Temporarily and Move Permanently.
2. Remove Requested For at the top.
Modified on 20161103 by Wee Hiong
1. Move expiry date up to a more prominent position.
2. Rename title from HOLD to HOLD SLIP.
3. Remove request barcode image.
4. Make the slip longer.
Modified on 20161101 by Wee Hiong
1. Rearrange the order of the elements in the slip. All styles are hardcoded inline.
2. Remove unused references to templates.
3. Standardize case on labels.
Modified on 20161031 by Wee Hiong
1. Remove unused reference to senderReceiver.xsl.
Modified on 20150825 by Wee Hiong
1. Fix incorrect request creation date.
2. Display 3 dates:
- Request Made
- Notification Sent
- Expires On
Modified on 20150824 by Wee Hiong
1. Reorder the elements on the hold slip:
- Requester
- Request type
- Destination library
- Specific item warning
- Request date
- Expiry date
- Request ID
- Item barcode
- Title
- Call number
- Additional metadata
2. Hide the repeated requester name.
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:include href="style.xsl" />
<xsl:include href="recordTitle.xsl" />
<xsl:template match="/">
<html>
<head>
<xsl:call-template name="generalStyle" />
</head>
<body>
<div class="messageArea">
<div class="messageBody">
<table cellspacing="0" cellpadding="5" border="0">
<xsl:choose>
<xsl:when test="notification_data/request_type = 'Patron physical item request'">
<tr>
<td style="text-align: center">
<span style="font-size: xx-large"><b>HOLD SLIP</b></span>
</td>
</tr>
<tr>
<td>
<span style="font-size: large"><b>For: <u><xsl:value-of select="notification_data/user_for_printing/name" /></u> (<xsl:value-of select="notification_data/user_for_printing/user_group" />)</b></span>
</td>
</tr>
<xsl:if test="notification_data/request/work_flow_entity/expiration_date != ''">
<tr>
<td>
<span style="font-size: large"><b>Expires on: <xsl:value-of select="notification_data/request/work_flow_entity/expiration_date" /></b></span>
</td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/selected_inventory_type='ITEM' or notification_data/request/selected_inventory_type='HOLDING'">
<tr>
<td>
<span style="font-size: large"><xsl:value-of select="notification_data/phys_item_display/barcode" /></span>
</td>
</tr>
<tr>
<td>
<span style="font-size: large"><xsl:call-template name="recordTitle" /></span>
</td>
</tr>
<tr>
<td>
<span style="font-size: large"><xsl:value-of select="notification_data/phys_item_display/call_number" /></span>
</td>
</tr>
<tr>
<td>
<span style="font-size: small">@@location@@: <xsl:value-of select="notification_data/phys_item_display/location_name" /></span>
</td>
</tr>
</xsl:if>
<tr>
<td>
<span style="font-size: small">Library: <xsl:value-of select="notification_data/request/delivery_address" /></span>
</td>
</tr>
<xsl:if test="notification_data/request/create_date != ''">
<tr>
<td>
<span style="font-size: small">Request made: <xsl:value-of select="notification_data/request/create_date" /></span>
</td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/work_flow_entity/create_date != ''">
<tr>
<td>
<span style="font-size: small">Notification sent: <xsl:value-of select="notification_data/request/work_flow_entity/create_date" /></span>
</td>
</tr>
</xsl:if>
<tr>
<td>
<span style="font-size: small">@@request_id@@: <xsl:value-of select="notification_data/request_id" /></span>
</td>
</tr>
<xsl:if test="notification_data/request/system_notes != ''">
<tr>
<td>
<span style="font-size: large"><b>@@system_notes@@: <xsl:value-of select="notification_data/request/system_notes" /></b></span>
</td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/note != ''">
<tr>
<td>
<span style="font-size: large"><b>@@request_note@@: <xsl:value-of select="notification_data/request/note" /></b></span>
</td>
</tr>
</xsl:if>
<!-- Some padding to make the hold slip longer. The printer ignores trailing whitespace. -->
<tr>
<td style="height: 200px; vertical-align: bottom; text-align: center">.</td>
</tr>
</xsl:when>
<xsl:when test="notification_data/request_type = 'Move temporarily' or notification_data/request_type = 'Move permanently'">
<tr>
<td style="text-align: center">
<span style="font-size: xx-large"><b>TRANSFER ITEM</b></span>
</td>
</tr>
<xsl:if test="notification_data/request/selected_inventory_type='ITEM'">
<tr>
<td>
<span style="font-size: large"><b><xsl:value-of select="notification_data/phys_item_display/barcode" /></b></span>
</td>
</tr>
<tr>
<td>
<span style="font-size: large"><b><xsl:call-template name="recordTitle" /></b></span>
</td>
</tr>
<tr>
<td>
<span style="font-size: large"><b><xsl:value-of select="notification_data/phys_item_display/call_number" /></b></span>
</td>
</tr>
<tr>
<td>
<span style="font-size: large"><b><xsl:value-of select="notification_data/phys_item_display/location_name" /></b></span>
</td>
</tr>
</xsl:if>
<tr>
<td>
<span style="font-size: small">Desk: <xsl:value-of select="notification_data/request/assigned_unit_name" /></span>
</td>
</tr>
<xsl:if test="notification_data/request/create_date != ''">
<tr>
<td>
<span style="font-size: small">Request made: <xsl:value-of select="notification_data/request/create_date" /></span>
</td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/work_flow_entity/create_date != ''">
<tr>
<td>
<span style="font-size: small">Notification sent: <xsl:value-of select="notification_data/request/work_flow_entity/create_date" /></span>
</td>
</tr>
</xsl:if>
<tr>
<td>
<span style="font-size: small">@@request_id@@: <xsl:value-of select="notification_data/request_id" /></span>
</td>
</tr>
<xsl:if test="notification_data/request/system_notes != ''">
<tr>
<td>
<span style="font-size: large"><b>@@system_notes@@: <xsl:value-of select="notification_data/request/system_notes" /></b></span>
</td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/note != ''">
<tr>
<td>
<span style="font-size: large"><b>@@request_note@@: <xsl:value-of select="notification_data/request/note" /></b></span>
</td>
</tr>
</xsl:if>
<!-- Some padding to make the move slip longer. The printer ignores trailing whitespace. -->
<tr>
<td style="height: 200px; vertical-align: bottom; text-align: center">.</td>
</tr>
</xsl:when>
<xsl:otherwise>
<tr>
<td>
<b>@@request_type@@:</b> 
<xsl:value-of select="notification_data/request_type" /></td>
</tr>
<tr>
<td>
<b>@@move_to_library@@:</b> 
<xsl:value-of select="notification_data/destination" /></td>
</tr>
<xsl:if test="notification_data/request/selected_inventory_type='ITEM'">
<tr>
<td>
<b>@@note_item_specified_request@@.</b>
</td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/manual_description != ''">
<tr>
<td>
<b>@@please_note@@:</b>@@manual_description_note@@ -
<xsl:value-of select="notification_data/request/manual_description" /></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/create_date != ''">
<tr>
<td>
<b>Request Made:</b> 
<xsl:value-of select="notification_data/request/create_date" /></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/work_flow_entity/create_date != ''">
<tr>
<td>
<b>Notification Sent:</b> 
<xsl:value-of select="notification_data/request/work_flow_entity/create_date" /></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/work_flow_entity/expiration_date != ''">
<tr>
<td>
<b>Expires On: 
<xsl:value-of select="notification_data/request/work_flow_entity/expiration_date" /></b>
</td>
</tr>
</xsl:if>
<tr>
<td>
<b>@@request_id@@:</b> 
<img src="cid:request_id_barcode.png" alt="Request Barcode" /></td>
</tr>
<xsl:if test="notification_data/request/selected_inventory_type='ITEM'">
<tr>
<td>
<h2>
<xsl:value-of select="notification_data/phys_item_display/barcode" />
</h2>
</td>
</tr>
</xsl:if>
<xsl:if test="notification_data/external_id != ''">
<tr>
<td>
<b>@@external_id@@:</b> 
<xsl:value-of select="notification_data/external_id" /></td>
</tr>
</xsl:if>
<tr>
<td>
<h2>
<xsl:call-template name="recordTitle" />
</h2>
</td>
</tr>
<xsl:if test="notification_data/phys_item_display/call_number != ''">
<tr>
<td>
<h2>
<xsl:value-of select="notification_data/phys_item_display/call_number" />
</h2>
</td>
</tr>
</xsl:if>
<xsl:if test="notification_data/phys_item_display/isbn != ''">
<tr>
<td>@@isbn@@:
<xsl:value-of select="notification_data/phys_item_display/isbn" /></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/phys_item_display/issn != ''">
<tr>
<td>@@issn@@:
<xsl:value-of select="notification_data/phys_item_display/issn" /></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/phys_item_display/edition != ''">
<tr>
<td>@@edition@@:
<xsl:value-of select="notification_data/phys_item_display/edition" /></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/phys_item_display/imprint != ''">
<tr>
<td>@@imprint@@:
<xsl:value-of select="notification_data/phys_item_display/imprint" /></td>
</tr>
</xsl:if>
<b></b>
<tr>
<td>@@location@@:
<xsl:value-of select="notification_data/phys_item_display/location_name" /></td>
</tr>
<xsl:if test="notification_data/phys_item_display/accession_number != ''">
<tr>
<td>
<h2>
<b>@@accession_number@@:</b> 
<xsl:value-of select="notification_data/phys_item_display/accession_number" /></h2>
</td>
</tr>
</xsl:if>
<xsl:if test="notification_data/phys_item_display/shelving_location/string">
<xsl:if test="notification_data/request/selected_inventory_type='ITEM'">
<tr>
<td>
<b>@@shelving_location_for_item@@:</b> 
<xsl:for-each select="notification_data/phys_item_display/shelving_location/string">
<xsl:value-of select="." /> </xsl:for-each></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/selected_inventory_type='HOLDING'">
<tr>
<td>
<b>@@shelving_locations_for_holding@@:</b> 
<xsl:for-each select="notification_data/phys_item_display/shelving_location/string">
<xsl:value-of select="." /> </xsl:for-each></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/selected_inventory_type='VIRTUAL_HOLDING'">
<tr>
<td>
<b>@@shelving_locations_for_holding@@:</b> 
<xsl:for-each select="notification_data/phys_item_display/shelving_location/string">
<xsl:value-of select="." /> </xsl:for-each></td>
</tr>
</xsl:if>
</xsl:if>
<xsl:if test="notification_data/phys_item_display/display_alt_call_numbers/string">
<xsl:if test="notification_data/request/selected_inventory_type='ITEM'">
<tr>
<td>
<b>@@alt_call_number@@:</b> 
<xsl:for-each select="notification_data/phys_item_display/display_alt_call_numbers/string">
<xsl:value-of select="." /> </xsl:for-each></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/selected_inventory_type='HOLDING'">
<tr>
<td>
<b>@@alt_call_number@@:</b> 
<xsl:for-each select="notification_data/phys_item_display/display_alt_call_numbers/string">
<xsl:value-of select="." /> </xsl:for-each></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/selected_inventory_type='VIRTUAL_HOLDING'">
<tr>
<td>
<b>@@alt_call_number@@:</b> 
<xsl:for-each select="notification_data/phys_item_display/display_alt_call_numbers/string">
<xsl:value-of select="." /> </xsl:for-each></td>
</tr>
</xsl:if>
</xsl:if>
<b></b>
<xsl:if test="notification_data/request/system_notes != ''">
<tr>
<td>
<b>@@system_notes@@:</b> 
<xsl:value-of select="notification_data/request/system_notes" /></td>
</tr>
</xsl:if>
<xsl:if test="notification_data/request/note != ''">
<tr>
<td>
<b>@@request_note@@:</b> 
<xsl:value-of select="notification_data/request/note" /></td>
</tr>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</table>
</div>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>