Adds support for the org unit setting 'circ.holds.max_duplicate_holds',
which allows staff to place multiple holds per target in the staff
catalog hold placement UI.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Michele Morgan <mmorgan@noblenet.org>
return [...Array(this.maxMultiHolds).keys()].map(n => n + 1);
}
+ holdCountRange(): number[] {
+ return [...Array(this.maxMultiHolds).keys()].map(n => n + 1);
+ }
+
// Load the bib, call number, copy, etc. data associated with each target.
getTargetMeta(): Promise<any> {