http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11084
Katrin Fischer <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #11 from Katrin Fischer <[email protected]> --- 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. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
