Lines 137-143
AddReturn( $item1->{barcode} );
Link Here
|
137 |
Koha::Items->find( $item1->{itemnumber} )->set({homebranch => $library_B, holdingbranch => $library_B })->store; |
137 |
Koha::Items->find( $item1->{itemnumber} )->set({homebranch => $library_B, holdingbranch => $library_B })->store; |
138 |
$item1 = GetItem( $itemnumber1 ); |
138 |
$item1 = GetItem( $itemnumber1 ); |
139 |
#Scenario is: |
139 |
#Scenario is: |
140 |
#One shelf holds is 'If all unavailable'/2 |
140 |
#One shelf holds is 'Only if other items unavailable'/2 |
141 |
#Item 1 homebranch library B is available |
141 |
#Item 1 homebranch library B is available |
142 |
#Item 2 homebranch library A is checked out |
142 |
#Item 2 homebranch library A is checked out |
143 |
#Borrower1 is from library A |
143 |
#Borrower1 is from library A |
Lines 177-183
AddReturn( $item1->{barcode} );
Link Here
|
177 |
Koha::Items->find( $item1->{itemnumber} )->set({homebranch => $library_A, holdingbranch => $library_A })->store; |
177 |
Koha::Items->find( $item1->{itemnumber} )->set({homebranch => $library_A, holdingbranch => $library_A })->store; |
178 |
$item1 = GetItem( $itemnumber1 ); |
178 |
$item1 = GetItem( $itemnumber1 ); |
179 |
#Scenario is: |
179 |
#Scenario is: |
180 |
#One shelf holds is 'If all unavailable'/2 |
180 |
#One shelf holds is 'Only if other items unavailable'/2 |
181 |
#Item 1 homebranch library A is available |
181 |
#Item 1 homebranch library A is available |
182 |
#Item 2 homebranch library A is checked out |
182 |
#Item 2 homebranch library A is checked out |
183 |
#Borrower1 is from library A |
183 |
#Borrower1 is from library A |
184 |
- |
|
|