Lines 1025-1030
sub AddIssue {
Link Here
|
1025 |
CartToShelf( $item->{'itemnumber'} ); |
1025 |
CartToShelf( $item->{'itemnumber'} ); |
1026 |
} |
1026 |
} |
1027 |
$item->{'issues'}++; |
1027 |
$item->{'issues'}++; |
|
|
1028 |
|
1029 |
## If item was lost, it has now been found, reverse any list item charges if neccessary. |
1030 |
if ( $item->{'itemlost'} ) { |
1031 |
_FixAccountForLostAndReturned( $item->{'itemnumber'}, undef, $item->{'barcode'} ); |
1032 |
} |
1033 |
|
1028 |
ModItem({ issues => $item->{'issues'}, |
1034 |
ModItem({ issues => $item->{'issues'}, |
1029 |
holdingbranch => C4::Context->userenv->{'branch'}, |
1035 |
holdingbranch => C4::Context->userenv->{'branch'}, |
1030 |
itemlost => 0, |
1036 |
itemlost => 0, |
1031 |
- |
|
|