Bug 7614: (QA follow-up) Fix POD merge missed in rebase
authorKyle M Hall <kyle@bywatersolutions.com>
Tue, 22 Jan 2019 18:49:13 +0000 (13:49 -0500)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 25 Jan 2019 16:06:42 +0000 (16:06 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

C4/Reserves.pm

index bf3d515..77880dc 100644 (file)
@@ -297,7 +297,6 @@ sub CanBookBeReserved{
   $canReserve = &CanItemBeReserved($borrowernumber, $itemnumber, $branchcode)
   if ($canReserve->{status} eq 'OK') { #We can reserve this Item! }
 
-<<<<<<< HEAD
 @RETURNS { status => OK },              if the Item can be reserved.
          { status => ageRestricted },   if the Item is age restricted for this borrower.
          { status => damaged },         if the Item is damaged.
@@ -306,17 +305,7 @@ sub CanBookBeReserved{
          { status => notReservable },   if holds on this item are not allowed
          { status => libraryNotFound },   if given branchcode is not an existing library
          { status => libraryNotPickupLocation },   if given branchcode is not configured to be a pickup location
-=======
-@RETURNS OK,              if the Item can be reserved.
-         ageRestricted,   if the Item is age restricted for this borrower.
-         damaged,         if the Item is damaged.
-         cannotReserveFromOtherBranches, if syspref 'canreservefromotherbranches' is OK.
-         tooManyReserves, if the borrower has exceeded his maximum reserve amount.
-         notReservable,   if holds on this item are not allowed
-         libraryNotFound  if given branchcode is not an existing library
-         libraryNotPickupLocation if given branchcode is not configured to be a pickup location
-         cannotBeTransferred if branch transfer limit applies on given item and branchcode
->>>>>>> Bug 7614: Check transfer limit in CanBookBeReserved and CanItemBeReserved
+         { status => cannotBeTransferred }, if branch transfer limit applies on given item and branchcode
 
 =cut