mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
RM-951: FilePlan is not refreshed automatically after creating a category
RM-950: Completed Records are not displayed for RM Admin RM-949: RM admin can see only own Categories/Folders/Records git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@55257 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -28,12 +28,11 @@ function doclist_getAllNodes(parsedArgs, filterParams, query, totalItemCount)
|
||||
requestTotalCountMax = 0,
|
||||
paged = false,
|
||||
allNodes = [];
|
||||
if (query == "" &&
|
||||
(
|
||||
(filter || "path") == "path" ||
|
||||
(filter || "unfiledRecords") == "unfiledRecords" ||
|
||||
(filter || "holds") == "holds" ||
|
||||
(filter || "transfers") == "transfers"))
|
||||
if ((filter || "path") == "path" ||
|
||||
query == "" &&
|
||||
((filter || "unfiledRecords") == "unfiledRecords" ||
|
||||
(filter || "holds") == "holds" ||
|
||||
(filter || "transfers") == "transfers"))
|
||||
{
|
||||
// TODO also add DB filter by "node" (in addition to "path")
|
||||
var parentNode = parsedArgs.pathNode;
|
||||
|
@@ -174,7 +174,8 @@ Filters.getFilterParams = function RecordsManagementFilter_getFilterParams(filte
|
||||
break;
|
||||
|
||||
case "unfiledRecords":
|
||||
|
||||
|
||||
filterParams.query = "";
|
||||
break;
|
||||
|
||||
default:
|
||||
|
Reference in New Issue
Block a user