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

(-)a/Koha/Schema/Result/Biblioitem.pm (-1 / +2 lines)
Lines 344-349 __PACKAGE__->has_many( Link Here
344
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-02-24 14:19:57
344
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-02-24 14:19:57
345
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:A/4lKYlKWWd8TcMVzMRtCg
345
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:A/4lKYlKWWd8TcMVzMRtCg
346
346
347
__PACKAGE__->belongs_to( biblio => "Koha::Schema::Result::Biblio", "biblionumber" );
348
__PACKAGE__->belongs_to( items  => "Koha::Schema::Result::Item",   "biblioitemnumber" );
347
349
348
# You can replace this text with custom content, and it will be preserved on regeneration
349
1;
350
1;
(-)a/Koha/Schema/Result/Item.pm (-1 / +2 lines)
Lines 619-624 __PACKAGE__->might_have( Link Here
619
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 12:42:12
619
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 12:42:12
620
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:urSpNt7LBda4T5Plhi6cPw
620
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:urSpNt7LBda4T5Plhi6cPw
621
621
622
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
623
622
sub effective_itemtype {
624
sub effective_itemtype {
623
    my ( $self ) = @_;
625
    my ( $self ) = @_;
624
626
625
- 

Return to bug 14544