View | Details | Raw Unified | Return to bug 31447
Collapse All | Expand All

(-)a/C4/Circulation.pm (-4 / +3 lines)
Lines 1187-1193 sub CanBookBeIssued { Link Here
1187
                    $needsconfirmation{'ressurname'} = $patron->surname;
1187
                    $needsconfirmation{'ressurname'} = $patron->surname;
1188
                    $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1188
                    $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1189
                    $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1189
                    $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1190
                    $needsconfirmation{'resbranchcode'} = $patron->branchcode;
1190
                    $needsconfirmation{'resbranchcode'} = $res->{branchcode};
1191
                    $needsconfirmation{'resreservedate'} = $res->{reservedate};
1191
                    $needsconfirmation{'resreservedate'} = $res->{reservedate};
1192
                    $needsconfirmation{'reserve_id'} = $res->{reserve_id};
1192
                    $needsconfirmation{'reserve_id'} = $res->{reserve_id};
1193
                }
1193
                }
Lines 1198-1204 sub CanBookBeIssued { Link Here
1198
                    $needsconfirmation{'ressurname'} = $patron->surname;
1198
                    $needsconfirmation{'ressurname'} = $patron->surname;
1199
                    $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1199
                    $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1200
                    $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1200
                    $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1201
                    $needsconfirmation{'resbranchcode'} = $patron->branchcode;
1201
                    $needsconfirmation{'resbranchcode'} = $res->{branchcode};
1202
                    $needsconfirmation{'resreservedate'} = $res->{reservedate};
1202
                    $needsconfirmation{'resreservedate'} = $res->{reservedate};
1203
                    $needsconfirmation{'reserve_id'} = $res->{reserve_id};
1203
                    $needsconfirmation{'reserve_id'} = $res->{reserve_id};
1204
                }
1204
                }
Lines 1209-1215 sub CanBookBeIssued { Link Here
1209
                    $needsconfirmation{'ressurname'} = $patron->surname;
1209
                    $needsconfirmation{'ressurname'} = $patron->surname;
1210
                    $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1210
                    $needsconfirmation{'rescardnumber'} = $patron->cardnumber;
1211
                    $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1211
                    $needsconfirmation{'resborrowernumber'} = $patron->borrowernumber;
1212
                    $needsconfirmation{'resbranchcode'} = $patron->branchcode;
1212
                    $needsconfirmation{'resbranchcode'} = $res->{branchcode};
1213
                    $needsconfirmation{'resreservedate'} = $res->{reservedate};
1213
                    $needsconfirmation{'resreservedate'} = $res->{reservedate};
1214
                    $needsconfirmation{'reserve_id'} = $res->{reserve_id};
1214
                    $needsconfirmation{'reserve_id'} = $res->{reserve_id};
1215
                }
1215
                }
1216
- 

Return to bug 31447