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

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

Return to bug 31447