mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -223,7 +223,7 @@
|
|||||||
<cm:description>Transfer report template.</cm:description>
|
<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: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: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>
|
</view:properties>
|
||||||
</cm:content>
|
</cm:content>
|
||||||
</cm:contains>
|
</cm:contains>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
<!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">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<#assign isAccession=node.property["rma:transferAccessionIndicator"]>
|
<#assign isAccession=node.properties["rma:transferAccessionIndicator"]>
|
||||||
<head>
|
<head>
|
||||||
<#if isAccession>
|
<#if isAccession>
|
||||||
<#-- FIXME: Label -->
|
<#-- FIXME: Label -->
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
<#-- FIXME: Label -->
|
<#-- FIXME: Label -->
|
||||||
<td class="label">Transfer Date:</td>
|
<td class="label">Transfer Date:</td>
|
||||||
<#-- FIXME: Escape, toString -->
|
<#-- FIXME: Escape, toString -->
|
||||||
<td>${node.property["cm:created"]}</td>
|
<td><#--${node.properties["cm:created"]}--></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<#-- FIXME: Label -->
|
<#-- FIXME: Label -->
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
NARA
|
NARA
|
||||||
<#else>
|
<#else>
|
||||||
<#-- FIXME: String, Escape -->
|
<#-- FIXME: String, Escape -->
|
||||||
${node.property["rma:transferLocation"]}
|
${node.properties["rma:transferLocation"]}
|
||||||
</#if>
|
</#if>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
<#-- FIXME: Label -->
|
<#-- FIXME: Label -->
|
||||||
<td class="label">Performed By:</td>
|
<td class="label">Performed By:</td>
|
||||||
<#-- FIXME: String, Escape -->
|
<#-- FIXME: String, Escape -->
|
||||||
<td> ${node.property["cm:creator"]}</td>
|
<td> ${node.properties["cm:creator"]}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<#-- FIXME: Label -->
|
<#-- FIXME: Label -->
|
||||||
|
Reference in New Issue
Block a user