Skip to content
Snippets Groups Projects
Commit cf5bd52b authored by André Lahmann's avatar André Lahmann
Browse files

refs #8581:

* bugfix in emailhold email-template
parent 276624b8
No related merge requests found
...@@ -8,33 +8,36 @@ ...@@ -8,33 +8,36 @@
<table width="820" border="0"> <table width="820" border="0">
<tr valign="top"> <tr valign="top">
<td width="275"> <td width="275">
<strong>Signatur:</strong> <br> <strong>Signatur:</strong><br />
<?=$this->callnumber?> <?=$this->callnumber?>
</td> </td>
<td width="275"> <td width="275">
<strong>Heft / Jahrgang / Band:</strong><br> <strong>Heft / Jahrgang / Band:</strong><br />
<?=$this->volume?><br> <?=$this->year?> / <?=$this->issue?> / <?=$this->volume?>
<!--<strong>Barcode:</strong><br>-->
<!--<?=$this->barcode?><br><br>-->
</td> </td>
<td width="50"> <td width="50">
&nbsp; &nbsp;
</td> </td>
<td width="220" rowspan="2" align="center" valign="top"> <td width="220" rowspan="2" align="center" valign="top">
<strong><?=$this->callnumber?></strong><br> <strong><?=$this->callnumber?></strong><br />
Jahrgang/ Band/ Heft:<br> Jahrgang / Band / Heft:<br />
<strong><?=$this->volume?></strong><br> <strong><?=$this->year?> / <?=$this->issue?> / <?=$this->volume?></strong><br />
<strong><?=$this->record['title']?></strong><br><br> <strong><?=$this->record['title']?></strong><br /><br />
</td> </td>
</tr> </tr>
<tr>
<td colspan="4">&nbsp;</td>
</tr>
<tr valign="top"> <tr valign="top">
<td colspan="2"> <td colspan="2">
<strong>Titel:</strong> <?=$this->record['title']?><br> <strong>Titel:</strong> <?=$this->record['title']?><br />
<strong>Standort:</strong> <?=$this->pickUpLocation?><br> <strong>Standort:</strong> <?=$this->pickUpLocation?><br />
<? if (isset($this->itemStatus['item_notes'])): ?> <? if (isset($this->itemStatus['item_notes'])): ?>
<strong>Anmerkungen zum Exemplar:</strong> <strong>Anmerkungen zum Exemplar:</strong>
<ul> <ul>
<? foreach ($this->itemStatus['item_notes'] as $note): ?><li><?=$note?></li><? endforeach; ?> <? foreach ($this->itemStatus['item_notes'] as $note): ?>
<li><?=$note?></li>
<? endforeach; ?>
</ul> </ul>
<? endif; ?> <? endif; ?>
</td> </td>
...@@ -44,17 +47,21 @@ ...@@ -44,17 +47,21 @@
<tr valign="bottom"> <tr valign="bottom">
<td colspan="2"> <td colspan="2">
<?if (!empty($this->comment)): ?> <?if (!empty($this->comment)): ?>
<br><br><strong>Kommentar des Benutzers:</strong><br> <p>
<?=$this->comment?> <strong>Kommentar des Benutzers:</strong><br />
<?=$this->comment?>
</p>
<? endif; ?> <? endif; ?>
<strong>wurde bestellt von: </strong><br><br> <p>
<!--<strong>Email:</strong> <?=$this->patron['email']?><br><br><br>--> <strong>wurde bestellt von:</strong><br />
<strong>Name:</strong> <?=$this->patron['lastname']?>, <?=$this->patron['firstname']?><br> <?/*<strong>Email:</strong> <?=$this->patron['email']?><br />*/?>
<strong>Benutzerkarte:</strong> <?=$this->patron['cat_username']?><br> <strong>Name:</strong> <?=$this->patron['lastname']?>, <?=$this->patron['firstname']?><br />
<strong>Benutzerkarte:</strong> <?=$this->patron['cat_username']?><br />
</p>
</td> </td>
<td>&nbsp;</td> <td>&nbsp;</td>
<td align="center" valign="top" style="font-size: 16px"> <td align="center" valign="top" style="font-size: 16px">
<strong><?=$this->patron['lastname']?>, <?=$this->patron['firstname']?></strong><br> <strong><?=$this->patron['lastname']?>, <?=$this->patron['firstname']?></strong><br />
<strong><?=$this->patron['cat_username']?></strong> <strong><?=$this->patron['cat_username']?></strong>
</td> </td>
</tr> </tr>
......
== <?=$this->translate("Zeitschriftenbestellung")?> == == <?=$this->translate("Zeitschriftenbestellung")?> ==
Der Benutzer: <?=$this->patron['lastname']?>, <?=$this->patron['firstname']?> Der Benutzer: <?=$this->patron['lastname']?>, <?=$this->patron['firstname']?>
Benutzerkarte: <?=$this->patron['cat_username']?> Benutzerkarte: <?=$this->patron['cat_username']?>
hat folgenden Titel bestellt: hat folgenden Titel bestellt:
<?=$this->record['title']?> <?=$this->record['title']?>
...@@ -13,8 +15,6 @@ Jahrgang: <?=$this->year?> ...@@ -13,8 +15,6 @@ Jahrgang: <?=$this->year?>
Band: <?=$this->issue?> Band: <?=$this->issue?>
von <?=$this->record['author']?>
Signatur: <?=$this->callnumber?> Signatur: <?=$this->callnumber?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment