|
Lines 781-792
sub GetReservesForBranch {
Link Here
|
| 781 |
Takes an itemnumber and returns the status of the reserve placed on it. |
781 |
Takes an itemnumber and returns the status of the reserve placed on it. |
| 782 |
If several reserves exist, the reserve with the lower priority is given. |
782 |
If several reserves exist, the reserve with the lower priority is given. |
| 783 |
|
783 |
|
| 784 |
=cut |
|
|
| 785 |
|
| 786 |
## FIXME: I don't think this does what it thinks it does. |
784 |
## FIXME: I don't think this does what it thinks it does. |
| 787 |
## It only ever checks the first reserve result, even though |
785 |
## It only ever checks the first reserve result, even though |
| 788 |
## multiple reserves for that bib can have the itemnumber set |
786 |
## multiple reserves for that bib can have the itemnumber set |
| 789 |
## the sub is only used once in the codebase. |
787 |
## the sub is only used once in the codebase. |
|
|
788 |
|
| 789 |
=cut |
| 790 |
|
| 790 |
sub GetReserveStatus { |
791 |
sub GetReserveStatus { |
| 791 |
my ($itemnumber) = @_; |
792 |
my ($itemnumber) = @_; |
| 792 |
|
793 |
|
| 793 |
- |
|
|