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

(-)a/Koha/Schema/Result/Item.pm (-1 / +7 lines)
Lines 621-626 __PACKAGE__->might_have( Link Here
621
621
622
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
622
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
623
623
624
__PACKAGE__->belongs_to(
625
  "biblio",
626
  "Koha::Schema::Result::Biblio",
627
  { biblionumber => "biblionumber" },
628
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
629
);
630
624
sub effective_itemtype {
631
sub effective_itemtype {
625
    my ( $self ) = @_;
632
    my ( $self ) = @_;
626
633
627
- 

Return to bug 9303