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

(-)a/lib/WebService/ILS.pm (-4 / +4 lines)
Lines 159-165 sub _get_param_spec { Link Here
159
=item C<client_secret> => secret key (password)
159
=item C<client_secret> => secret key (password)
160
160
161
=item C<library_id>    => sometimes service providers provide access
161
=item C<library_id>    => sometimes service providers provide access
162
                          to differnt "libraries"
162
                          to different "libraries"
163
163
164
=back
164
=back
165
165
Lines 299-305 Sort order can be added after option with ":", eg Link Here
299
299
300
=item C<copies_owned>     => number of copies owned
300
=item C<copies_owned>     => number of copies owned
301
301
302
=item C<type>             => availability type, provider dependant
302
=item C<type>             => availability type, provider dependent
303
303
304
=back
304
=back
305
305
Lines 476-482 item records will have: Link Here
476
476
477
=head3 Returns holds item record (as described above)
477
=head3 Returns holds item record (as described above)
478
478
479
In addition, C<total> field will be incorported as well.
479
In addition, C<total> field will be incorporated as well.
480
480
481
=head2 remove_hold ($item_id)
481
=head2 remove_hold ($item_id)
482
482
Lines 517-523 item records will have: Link Here
517
517
518
=head3 Returns checkout item record (as described above)
518
=head3 Returns checkout item record (as described above)
519
519
520
In addition, C<total> field will be incorported as well.
520
In addition, C<total> field will be incorporated as well.
521
521
522
=head2 return ($item_id)
522
=head2 return ($item_id)
523
523
(-)a/lib/WebService/ILS/OverDrive.pm (-1 / +1 lines)
Lines 344-350 sub _extract_link { Link Here
344
344
345
sub _basic_callback { return $_[0]; }
345
sub _basic_callback { return $_[0]; }
346
346
347
# This is not exatly how we meant to use with_get_request()
347
# This is not exactly how we meant to use with_get_request()
348
# ie processing should be placed within the callback.
348
# ie processing should be placed within the callback.
349
# However, if all goes well, it is faster (from the development perspective)
349
# However, if all goes well, it is faster (from the development perspective)
350
# this way.
350
# this way.
(-)a/lib/WebService/ILS/OverDrive/Patron.pm (-2 / +2 lines)
Lines 334-340 C<$auto_checkout> defaults to false. Link Here
334
334
335
=head3 Returns holds item record
335
=head3 Returns holds item record
336
336
337
It is prefered that the C<$notification_email_address> is specified.
337
It is preferred that the C<$notification_email_address> is specified.
338
338
339
If C<$auto_checkout> is set to true, the item will be checked out as soon as
339
If C<$auto_checkout> is set to true, the item will be checked out as soon as
340
it becomes available.
340
it becomes available.
Lines 450-456 later (see L<lock_format()> below). That would be the case with Link Here
450
L<place_hold()> with C<$auto_checkout> set to true. Once format is locked,
450
L<place_hold()> with C<$auto_checkout> set to true. Once format is locked,
451
an early return is not possible.
451
an early return is not possible.
452
452
453
If C<$allow_multiple_format_checkouts> flag is set to true, mutiple formats
453
If C<$allow_multiple_format_checkouts> flag is set to true, multiple formats
454
of the same item can be acioned. If it is false (default) and the item was
454
of the same item can be acioned. If it is false (default) and the item was
455
already checked out, the checked out item record will be returned regardless
455
already checked out, the checked out item record will be returned regardless
456
of the format.
456
of the format.
(-)a/lib/WebService/ILS/RecordedBooks.pm (-2 / +1 lines)
Lines 521-527 sub renew { Link Here
521
        $url
521
        $url
522
    );
522
    );
523
523
524
    my $checkouts = $self->checkouts(@_) or die "Cannot renew, unkmown error";
524
    my $checkouts = $self->checkouts(@_) or die "Cannot renew, unknown error";
525
    foreach my $i (@{ $checkouts->{items} }) {
525
    foreach my $i (@{ $checkouts->{items} }) {
526
        if ($i->{isbn} eq $isbn) {
526
        if ($i->{isbn} eq $isbn) {
527
            $i->{total} = scalar @{ $checkouts->{items} };
527
            $i->{total} = scalar @{ $checkouts->{items} };
528
- 

Return to bug 41521