|
Lines 751-762
sub GetReservesForBranch {
Link Here
|
| 751 |
Takes an itemnumber and returns the status of the reserve placed on it. |
751 |
Takes an itemnumber and returns the status of the reserve placed on it. |
| 752 |
If several reserves exist, the reserve with the lower priority is given. |
752 |
If several reserves exist, the reserve with the lower priority is given. |
| 753 |
|
753 |
|
| 754 |
=cut |
|
|
| 755 |
|
| 756 |
## FIXME: I don't think this does what it thinks it does. |
754 |
## FIXME: I don't think this does what it thinks it does. |
| 757 |
## It only ever checks the first reserve result, even though |
755 |
## It only ever checks the first reserve result, even though |
| 758 |
## multiple reserves for that bib can have the itemnumber set |
756 |
## multiple reserves for that bib can have the itemnumber set |
| 759 |
## the sub is only used once in the codebase. |
757 |
## the sub is only used once in the codebase. |
|
|
758 |
|
| 759 |
=cut |
| 760 |
|
| 760 |
sub GetReserveStatus { |
761 |
sub GetReserveStatus { |
| 761 |
my ($itemnumber) = @_; |
762 |
my ($itemnumber) = @_; |
| 762 |
|
763 |
|
| 763 |
- |
|
|