[Koha-bugs] [Bug 11084] Delete biblios on Leader 05 =d

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Nov 19 23:42:31 CET 2013


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

Katrin Fischer <katrin.fischer at bsz-bw.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Signed Off                  |Failed QA

--- Comment #11 from Katrin Fischer <katrin.fischer at bsz-bw.de> ---
Hm, a few notes from me too: 

DelBiblio has a few shortcomings that could cause problems:

1) It just deletes attached subscriptions. Subscription data can be created
over a long time and is not easily reproducable. There is no backup when we
delete it.

 428     # We delete attached subscriptions
429     require C4::Serials;
430     my $subscriptions =
C4::Serials::GetFullSubscriptionsFromBiblionumber($biblionumber);
431     foreach my $subscription (@$subscriptions) {
432         C4::Serials::DelSubscription( $subscription->{subscriptionid} );
433     }

2) It will also delete records that are used with orders, as this isn't checked
at all.

Kyle, could you take a look at Marcel's and my comments?

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list