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

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

Return to bug 19935