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

(-)a/C4/SIP/ILS/Patron.pm (-1 / +11 lines)
Lines 30-35 use Koha::Patrons; Link Here
30
30
31
our $kp;    # koha patron
31
our $kp;    # koha patron
32
32
33
=head1 Methods
34
35
=cut
36
33
sub new {
37
sub new {
34
    my ($class, $patron_id) = @_;
38
    my ($class, $patron_id) = @_;
35
    my $type = ref($class) || $class;
39
    my $type = ref($class) || $class;
Lines 476-481 sub _get_outstanding_holds { Link Here
476
    return \@holds;
480
    return \@holds;
477
}
481
}
478
482
483
=head2 build_patron_attributes_string
484
485
This method builds the part of the sip message for extended patron
486
attributes as defined in the sip config
487
488
=cut
489
479
sub build_patron_attributes_string {
490
sub build_patron_attributes_string {
480
    my ( $self, $server ) = @_;
491
    my ( $self, $server ) = @_;
481
492
482
- 

Return to bug 17826