http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11084 --- Comment #19 from Kyle M Hall <kyle@bywatersolutions.com> --- This is a definite issue, but appears to be outside the scope of this bug. It would appear that misc/batchdeletebiblios.pl has the exact same issues. I would suggest we file a separate bug to handle that issue. (In reply to Katrin Fischer from comment #11)
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.