[Koha-bugs] [Bug 5790] Deleting a biblio should alert/fail if there are existent subscriptions and holds

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Aug 26 01:49:52 CEST 2011


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5790

--- Comment #6 from Chris Cormack <chris at bigballofwax.co.nz> 2011-08-25 23:49:52 UTC ---
Currently, we just delete the subscriptions silently

    # We delete attached subscriptions
    my $subscriptions =
&C4::Serials::GetFullSubscriptionsFromBiblionumber($biblionumber);
    foreach my $subscription (@$subscriptions) {
        &C4::Serials::DelSubscription( $subscription->{subscriptionid} );
    }

It doesnt check for holds at all.

-- 
Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA Contact for the bug.


More information about the Koha-bugs mailing list