Lines 1049-1054
sub ModReserveFill {
Link Here
|
1049 |
} |
1049 |
} |
1050 |
); |
1050 |
); |
1051 |
|
1051 |
|
|
|
1052 |
logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper($hold->unblessed) ) |
1053 |
if C4::Context->preference('HoldsLog'); |
1054 |
|
1052 |
# FIXME Must call Koha::Hold->cancel ? => No, should call ->filled and add the correct log |
1055 |
# FIXME Must call Koha::Hold->cancel ? => No, should call ->filled and add the correct log |
1053 |
Koha::Old::Hold->new( $hold->unblessed() )->store(); |
1056 |
Koha::Old::Hold->new( $hold->unblessed() )->store(); |
1054 |
|
1057 |
|
Lines 1149-1154
sub ModReserveAffect {
Link Here
|
1149 |
CartToShelf( $itemnumber ); |
1152 |
CartToShelf( $itemnumber ); |
1150 |
} |
1153 |
} |
1151 |
|
1154 |
|
|
|
1155 |
logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper($hold->unblessed) ) |
1156 |
if C4::Context->preference('HoldsLog'); |
1157 |
|
1152 |
return; |
1158 |
return; |
1153 |
} |
1159 |
} |
1154 |
|
1160 |
|
1155 |
- |
|
|