- Images not showing in search results
  - Undeclared saved search showing record folders 
  - Records eligable for destruction saved search is showing already ghosted records
  - rma:transferring aspect added to objects being transferred
  - Records eligable for transfer saved search is showing transferring and transfered records
  - Grandle explodedDeploy target updated to copy 'web' source



git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@35352 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Roy Wetherall
2012-04-18 08:16:09 +00:00
parent 09a0f50882
commit 4c7c011ca8
6 changed files with 26 additions and 5 deletions

View File

@@ -919,6 +919,11 @@
</property>
</properties>
</aspect>
<!-- Indicates that an object is being transferred -->
<aspect name="rma:transferring">
<title>TransferringS</title>
</aspect>
<!-- Transfered marker aspect -->
<aspect name="rma:transferred">

View File

@@ -308,7 +308,8 @@
"search" : "ISNODE:T AND NOT ASPECT:\"rma:declaredRecord\"",
"searchparams" :
{
"records" : true,
"records" : true,
"recordfolders" : false,
"undeclaredrecords" : true
}
},
@@ -325,7 +326,7 @@
{
"name" : "Records Eligible For Transfer",
"description" : "All records currently eligible for transfer.",
"search" : "dispositionActionName:\"transfer\" AND (dispositionEventsEligible:true OR dispositionActionAsOf:[MIN TO TODAY])",
"search" : "dispositionActionName:\"transfer\" AND (dispositionEventsEligible:true OR dispositionActionAsOf:[MIN TO TODAY]) AND NOT ASPECT:"rma:transferred" AND NOT ASPECT:"rma:transferring"",
"searchparams" :
{
"records" : true,
@@ -336,7 +337,7 @@
{
"name" : "Records Eligible For Destruction",
"description" : "All records currently eligible for destruction.",
"search" : "dispositionActionName:\"destroy\" AND (dispositionEventsEligible:true OR dispositionActionAsOf:[MIN TO TODAY])",
"search" : "dispositionActionName:\"destroy\" AND (dispositionEventsEligible:true OR dispositionActionAsOf:[MIN TO TODAY]) AND NOT ASPECT:\"rma:ghosted\"",
"searchparams" :
{
"records" : true,