Lines 1026-1031
sub ModReserveFill {
Link Here
|
1026 |
} |
1026 |
} |
1027 |
); |
1027 |
); |
1028 |
|
1028 |
|
|
|
1029 |
logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper($hold->unblessed) ) |
1030 |
if C4::Context->preference('HoldsLog'); |
1031 |
|
1029 |
# FIXME Must call Koha::Hold->cancel ? => No, should call ->filled and add the correct log |
1032 |
# FIXME Must call Koha::Hold->cancel ? => No, should call ->filled and add the correct log |
1030 |
Koha::Old::Hold->new( $hold->unblessed() )->store(); |
1033 |
Koha::Old::Hold->new( $hold->unblessed() )->store(); |
1031 |
|
1034 |
|
Lines 1126-1131
sub ModReserveAffect {
Link Here
|
1126 |
CartToShelf( $itemnumber ); |
1129 |
CartToShelf( $itemnumber ); |
1127 |
} |
1130 |
} |
1128 |
|
1131 |
|
|
|
1132 |
logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper($hold->unblessed) ) |
1133 |
if C4::Context->preference('HoldsLog'); |
1134 |
|
1129 |
return; |
1135 |
return; |
1130 |
} |
1136 |
} |
1131 |
|
1137 |
|
1132 |
- |
|
|