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

(-)a/C4/SIP/ILS/Patron.pm (-2 / +1 lines)
Lines 130-136 sub new { Link Here
130
130
131
    # FIXME: populate fine_items recall_items
131
    # FIXME: populate fine_items recall_items
132
    $ilspatron{unavail_holds} = _get_outstanding_holds($kp->{borrowernumber});
132
    $ilspatron{unavail_holds} = _get_outstanding_holds($kp->{borrowernumber});
133
    $ilspatron{items} = GetPendingIssues($kp->{borrowernumber});
133
    $ilspatron{items} = $patron->pending_checkouts->unblessed;
134
    $self = \%ilspatron;
134
    $self = \%ilspatron;
135
    $debug and warn Dumper($self);
135
    $debug and warn Dumper($self);
136
    syslog("LOG_DEBUG", "new ILS::Patron(%s): found patron '%s'", $patron_id,$self->{id});
136
    syslog("LOG_DEBUG", "new ILS::Patron(%s): found patron '%s'", $patron_id,$self->{id});
137
- 

Return to bug 19935