RM-1099 (Refactor Transfer and Accession reports)

* Extended the existing file transfer report dialogue. There will be a new dialogue which will be used for all reports.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@58366 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2013-11-27 19:10:45 +00:00
parent e95dbff3e9
commit 53ad4b33dc
2 changed files with 5 additions and 5 deletions

View File

@@ -223,7 +223,7 @@
<cm:description>Transfer report template.</cm:description>
<cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl|mimetype=text/plain|encoding=UTF-8</cm:content>
<cm:title>Transfer Report Template</cm:title>
<cm:name>report_rmr_transfer.html.ftl</cm:name>
<cm:name>report_rmr_transferReport.html.ftl</cm:name>
</view:properties>
</cm:content>
</cm:contains>

View File

@@ -1,6 +1,6 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<#assign isAccession=node.property["rma:transferAccessionIndicator"]>
<#assign isAccession=node.properties["rma:transferAccessionIndicator"]>
<head>
<#if isAccession>
<#-- FIXME: Label -->
@@ -31,7 +31,7 @@
<#-- FIXME: Label -->
<td class="label">Transfer Date:</td>
<#-- FIXME: Escape, toString -->
<td>${node.property["cm:created"]}</td>
<td><#--${node.properties["cm:created"]}--></td>
</tr>
<tr>
<#-- FIXME: Label -->
@@ -42,7 +42,7 @@
NARA
<#else>
<#-- FIXME: String, Escape -->
${node.property["rma:transferLocation"]}
${node.properties["rma:transferLocation"]}
</#if>
</td>
</tr>
@@ -50,7 +50,7 @@
<#-- FIXME: Label -->
<td class="label">Performed By:</td>
<#-- FIXME: String, Escape -->
<td> ${node.property["cm:creator"]}</td>
<td> ${node.properties["cm:creator"]}</td>
</tr>
<tr>
<#-- FIXME: Label -->