@@ -, +, @@ --- C4/SIP/ILS/Patron.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) --- a/C4/SIP/ILS/Patron.pm +++ a/C4/SIP/ILS/Patron.pm @@ -30,6 +30,10 @@ use Koha::Patrons; our $kp; # koha patron +=head1 Methods + +=cut + sub new { my ($class, $patron_id) = @_; my $type = ref($class) || $class; @@ -476,6 +480,13 @@ sub _get_outstanding_holds { return \@holds; } +=head2 build_patron_attributes_string + +This method builds the part of the sip message for extended patron +attributes as defined in the sip config + +=cut + sub build_patron_attributes_string { my ( $self, $server ) = @_; --