From a978e74d8303bf39bdcd081c2f77bb5289d1159d Mon Sep 17 00:00:00 2001 From: berick Date: Mon, 2 May 2011 15:51:15 -0400 Subject: [PATCH] added support for 'limit records to those with any import errors' in vandelay queue display --- Open-ILS/web/js/ui/default/vandelay/vandelay.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Open-ILS/web/js/ui/default/vandelay/vandelay.js b/Open-ILS/web/js/ui/default/vandelay/vandelay.js index fa97b8cf55..cd6cd82d4e 100644 --- a/Open-ILS/web/js/ui/default/vandelay/vandelay.js +++ b/Open-ILS/web/js/ui/default/vandelay/vandelay.js @@ -374,6 +374,9 @@ function retrieveQueuedRecords(type, queueId, onload) { if(vlQueueGridShowNonImport.checked) params[2].non_imported = 1; + if(vlQueueGridShowImportErrors.checked) + params[2].with_import_error = 1; + fieldmapper.standardRequest( ['open-ils.vandelay', method], { async: true, -- 2.11.0