From: senator Date: Thu, 20 Jan 2011 22:37:46 +0000 (+0000) Subject: Backport r19239 from trunk X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fbea05c00811d75e2d49b47420c0f48a386bc60f;p=working%2FEvergreen.git Backport r19239 from trunk Acq: use the acqlimad table instead of its ancestor acqliad table to populate a dropdown for the Export Single Attribute List function of lists of lineitems The acqliad table may appear to have duplicate entries since it's a parent, and the point of the function that's trying to use it is just to export lists of ISBNs or UPCs, so acqlimad is a better fit. git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_2_0@19240 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/js/ui/default/acq/common/li_table.js b/Open-ILS/web/js/ui/default/acq/common/li_table.js index 5d10a0d4e2..a01618d0e3 100644 --- a/Open-ILS/web/js/ui/default/acq/common/li_table.js +++ b/Open-ILS/web/js/ui/default/acq/common/li_table.js @@ -2040,9 +2040,9 @@ function AcqLiTable() { var self = this; acqLitExportAttrSelector.store = new dojo.data.ItemFileReadStore( { - "data": acqliad.toStoreData( + "data": acqlimad.toStoreData( this.pcrud.search( - "acqliad", {"code": li_exportable_attrs} + "acqlimad", {"code": li_exportable_attrs} ) ) }