RM-700: Generate Hold Report fails for a hold if has active content

- check if rma:identifier property exists
This commit is contained in:
Ramona Popa
2019-10-08 18:38:28 +01:00
parent 978bb9e781
commit b30bc712a1

View File

@@ -112,7 +112,12 @@
<td> <td>
<table cellpadding="2" cellspacing="0" border="0"> <table cellpadding="2" cellspacing="0" border="0">
<tr> <tr>
<td>${child.properties["rma:identifier"]} <b>${child.properties.name}</b></td> <td>
<#if child.properties["rma:identifier"]??>
${child.properties["rma:identifier"]}
</#if>
<b>${child.properties.name}</b>
</td>
</tr> </tr>
</table> </table>
</td> </td>