-
Notifications
You must be signed in to change notification settings - Fork 1
/
FulLoanReceiptLetter.xsl
127 lines (118 loc) · 4.68 KB
/
FulLoanReceiptLetter.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
<?xml version="1.0" encoding="utf-8"?>
<!--
Modified on 20161220 by Wee Hiong
1. Remove libchanges2016 message.
Modified on 20161219 by Wee Hiong
1. Update course reserve location codes.
2. Repurpose the variable @@dear@@ for the reserve item message.
Modified on 20161031 by Wee Hiong
1. Inform user about returning reserve item to owning library.
Modified on 20160811 by Wee Hiong
1. Insert libchanges2016 message (about change to 3-hour loans).
Modified on 20160811 by Wee Hiong
1. Inform user about shortened due date if item is under reservation.
Modified on 20160707 by Wee Hiong
1. Add do-not-reply message to the footer.
Modified on 20151222 by Wee Hiong
1. Remove sender's address as contact information is now inside the header.
2. Add link to library account.
3. Remove loans header.
Modified on 20151215 by Wee Hiong
1. Removed SMU15 promotion message.
Modified on 20150908 by Salihin
1. Added SMU15 programme promotion at end of message.
Modified on 20150810 by Wee Hiong
1. Removed description column.
2. Added call number column.
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:include href="header.xsl" />
<xsl:include href="mailReason.xsl" />
<xsl:include href="footer.xsl" />
<xsl:include href="style.xsl" />
<xsl:template match="/">
<html>
<head>
<xsl:call-template name="generalStyle" />
</head>
<body>
<xsl:attribute name="style">
<!-- style.xsl -->
<xsl:call-template name="bodyStyleCss" />
</xsl:attribute>
<!-- header.xsl -->
<xsl:call-template name="head" />
<br />
<!-- mailReason.xsl -->
<xsl:call-template name="toWhomIsConcerned" />
<div class="messageArea">
<div class="messageBody">
<table cellspacing="0" cellpadding="5" border="0">
<tr>
<td>
<h>@@inform_loaned_items@@</h>
</td>
</tr>
<tr>
<td>
<table cellpadding="5" class="listing">
<xsl:attribute name="style">
<!-- style.xsl -->
<xsl:call-template name="mainTableStyleCss" />
</xsl:attribute>
<tr>
<th>@@title@@</th>
<th>Call Number</th>
<th>@@author@@</th>
<th>@@loan_date@@</th>
<th>@@due_date@@</th>
<th>@@library@@</th>
</tr>
<xsl:for-each select="notification_data/items/item_loan">
<tr>
<td>
<xsl:value-of select="title" />
</td>
<td>
<xsl:value-of select="call_number" />
</td>
<td>
<xsl:value-of select="author" />
</td>
<td>
<xsl:value-of select="loan_date" />
<xsl:if test="due_date_shortened_reason='RECALL'"><b>*</b></xsl:if>
</td>
<td>
<xsl:value-of select="new_due_date_str" />
</td>
<td>
<xsl:value-of select="library_name" />
<xsl:if test="location_code='CR3H' or location_code='CRMedia' or location_code='3DaysL4' or location_code='3 Days L3' or location_code='3 Days L4'"><b>#</b></xsl:if>
</td>
</tr>
</xsl:for-each>
</table>
</td>
</tr>
<xsl:if test="//item_loan/due_date_shortened_reason[text()]='RECALL'">
<tr>
<td><b>* Loan period is shortened due to reservation by another user.</b></td>
</tr>
</xsl:if>
<xsl:if test="//item_loan/location_code[text()]='CR3H' or //item_loan/location_code[text()]='CRMedia' or //item_loan/location_code[text()]='3DaysL4' or //item_loan/location_code[text()]='3 Days L3' or //item_loan/location_code[text()]='3 Days L4'">
<tr>
<td><b># @@dear@@</b></td>
</tr>
</xsl:if>
</table>
<br />
<!-- footer.xsl -->
<xsl:call-template name="myAccount" />
<xsl:call-template name="doNotReply" />
</div>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>