LP#1942220: bump up hardcoded LI retrieval limit back to 10000
authorGalen Charlton <gmc@equinoxOLI.org>
Tue, 7 Dec 2021 17:08:13 +0000 (12:08 -0500)
committerBill Erickson <berickxx@gmail.com>
Wed, 21 Sep 2022 15:29:34 +0000 (11:29 -0400)
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
Open-ILS/src/eg2/src/app/staff/acq/lineitem/lineitem-list.component.ts

index 515e236..90c63e4 100644 (file)
@@ -257,7 +257,7 @@ export class LineitemListComponent implements OnInit {
         this.lineitemIds = [];
 
         const searchTerms = {};
-        const opts = { id_list: true, limit: 1000 };
+        const opts = { id_list: true, limit: 10000 };
 
         if (this.picklistId) {
             Object.assign(searchTerms, { jub: [ { picklist: this.picklistId } ] });