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

(-)a/Koha/Biblio.pm (+14 lines)
Lines 1660-1665 sub normalized_upc { Link Here
1660
    return $self->metadata_extractor->get_normalized_upc;
1660
    return $self->metadata_extractor->get_normalized_upc;
1661
}
1661
}
1662
1662
1663
=head3 opac_suppressed
1664
1665
    my $opac_suppressed = $biblio->opac_suppressed();
1666
1667
Returns whether the record is flagged as suppressed in the OPAC.
1668
FIXME: Revisit after 38330 discussion
1669
1670
=cut
1671
1672
sub opac_suppressed {
1673
    my ($self) = @_;
1674
    return $self->metadata_extractor->get_opac_suppression();
1675
}
1676
1663
=head3 normalized_oclc
1677
=head3 normalized_oclc
1664
1678
1665
    my $normalized_oclc = $biblio->normalized_oclc
1679
    my $normalized_oclc = $biblio->normalized_oclc
(-)a/t/db_dependent/Koha/Biblio.t (-2 / +39 lines)
Lines 17-23 Link Here
17
17
18
use Modern::Perl;
18
use Modern::Perl;
19
19
20
use Test::More tests => 39;
20
use Test::More tests => 40;
21
use Test::Exception;
21
use Test::Exception;
22
use Test::Warn;
22
use Test::Warn;
23
23
Lines 1733-1738 subtest 'normalized_oclc' => sub { Link Here
1733
    );
1733
    );
1734
};
1734
};
1735
1735
1736
subtest 'opac_suppressed() tests' => sub {
1737
1738
    plan tests => 4;
1739
1740
    $schema->storage->txn_begin;
1741
1742
    my $record = MARC::Record->new;
1743
    $record->append_fields(
1744
        MARC::Field->new( '245', '', '', a => 'Some title 1' ),
1745
        MARC::Field->new( '942', '', '', n => '1' ),
1746
    );
1747
1748
    my ($biblio_id) = AddBiblio( $record, qw{} );
1749
    my $biblio = Koha::Biblios->find($biblio_id);
1750
1751
    ok( $biblio->opac_suppressed(), 'Record is suppressed' );
1752
1753
    $record->field('942')->replace_with( MARC::Field->new( '942', '', '', n => '0' ) );
1754
    ($biblio_id) = AddBiblio( $record, qw{} );
1755
    $biblio = Koha::Biblios->find($biblio_id);
1756
1757
    ok( !$biblio->opac_suppressed(), 'Record is not suppressed' );
1758
1759
    $record->field('942')->replace_with( MARC::Field->new( '942', '', '', n => '' ) );
1760
    ($biblio_id) = AddBiblio( $record, qw{} );
1761
    $biblio = Koha::Biblios->find($biblio_id);
1762
1763
    ok( !$biblio->opac_suppressed(), 'Record is not suppressed' );
1764
1765
    $record->delete_field( $record->field('942') );
1766
    ($biblio_id) = AddBiblio( $record, qw{} );
1767
    $biblio = Koha::Biblios->find($biblio_id);
1768
1769
    ok( !$biblio->opac_suppressed(), 'Record is not suppressed' );
1770
1771
    $schema->storage->txn_rollback;
1772
};
1773
1736
subtest 'ratings' => sub {
1774
subtest 'ratings' => sub {
1737
    plan tests => 1;
1775
    plan tests => 1;
1738
    # See t/db_dependent/Koha/Ratings.t
1776
    # See t/db_dependent/Koha/Ratings.t
1739
- 

Return to bug 28478