RM-581 (A user will receive notification of rejected records)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@46150 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2013-02-01 18:03:32 +00:00
parent 3ddc70cf74
commit 4bc75f4db9
9 changed files with 107 additions and 50 deletions

View File

@@ -44,7 +44,7 @@
</tr>
</table>
<div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;">
<p>Hello ${args.userName},</p>
<p>Hello ${args.recordCreator},</p>
<p>${args.rejectedPerson} has rejected the following record with this reason:</p>

View File

@@ -1143,13 +1143,29 @@
<aspect name="rma:recordOriginatingDetails">
<title>The originating details of a record</title>
<properties>
<property name="rma:recordOrginalLocation">
<type>d:any</type>
<property name="rma:recordOriginatingUserId">
<type>d:text</type>
</property>
<property name="rma:recordCreationDate">
<property name="rma:recordOriginatingCreationDate">
<type>d:date</type>
</property>
<property name="rma:recordUserId">
<property name="rma:recordOriginatingLocation">
<type>d:any</type>
</property>
</properties>
</aspect>
<!-- Aspect to hold the details of a record rejection -->
<aspect name="rma:recordRejectionDetails">
<title>The rejection details of a record</title>
<properties>
<property name="rma:recordRejectionUserId">
<type>d:text</type>
</property>
<property name="rma:recordRejectionDate">
<type>d:date</type>
</property>
<property name="rma:recordRejectionReason">
<type>d:text</type>
</property>
</properties>