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

(-)a/C4/XSLT.pm (+1 lines)
Lines 31-36 use Koha::ItemTypes; Link Here
31
use Koha::XSLT::Base;
31
use Koha::XSLT::Base;
32
use Koha::Libraries;
32
use Koha::Libraries;
33
use Koha::Recalls;
33
use Koha::Recalls;
34
use Koha::Holdings;
34
35
35
my $engine; #XSLT Handler object
36
my $engine; #XSLT Handler object
36
my %authval_per_framework;
37
my %authval_per_framework;
(-)a/Koha/Exporter/Record.pm (+2 lines)
Lines 11-16 use Koha::CsvProfiles; Link Here
11
use Koha::Logger;
11
use Koha::Logger;
12
use List::Util qw( all any );
12
use List::Util qw( all any );
13
13
14
use Koha::Holdings;
15
14
sub _get_record_for_export {
16
sub _get_record_for_export {
15
    my ($params)           = @_;
17
    my ($params)           = @_;
16
    my $record_type        = $params->{record_type};
18
    my $record_type        = $params->{record_type};
(-)a/Koha/UI/Form/Builder/Item.pm (+1 lines)
Lines 24-29 use C4::ClassSource qw( GetClassSources ); Link Here
24
24
25
use Koha::DateUtils qw( dt_from_string );
25
use Koha::DateUtils qw( dt_from_string );
26
use Koha::Libraries;
26
use Koha::Libraries;
27
use Koha::Holdings;
27
28
28
=head1 NAME
29
=head1 NAME
29
30
(-)a/cataloguing/addholding.pl (+1 lines)
Lines 36-41 use Koha::DateUtils qw( dt_from_string ); Link Here
36
36
37
use Koha::ItemTypes;
37
use Koha::ItemTypes;
38
use Koha::Libraries;
38
use Koha::Libraries;
39
use Koha::Holdings;
39
40
40
use Date::Calc qw(Today);
41
use Date::Calc qw(Today);
41
use MARC::File::USMARC;
42
use MARC::File::USMARC;
(-)a/cataloguing/additem.pl (-1 lines)
Lines 37-43 use C4::Circulation qw( barcodedecode LostItem ); Link Here
37
use C4::Barcodes;
37
use C4::Barcodes;
38
use C4::Barcodes::ValueBuilder;
38
use C4::Barcodes::ValueBuilder;
39
use Koha::DateUtils qw( dt_from_string );
39
use Koha::DateUtils qw( dt_from_string );
40
use Koha::Holdings;
41
use Koha::Items;
40
use Koha::Items;
42
use Koha::ItemTypes;
41
use Koha::ItemTypes;
43
use Koha::Libraries;
42
use Koha::Libraries;
(-)a/misc/migration_tools/bulkmarcimport.pl (-1 lines)
Lines 36-42 use FindBin (); Link Here
36
36
37
use Koha::Logger;
37
use Koha::Logger;
38
use Koha::Biblios;
38
use Koha::Biblios;
39
use Koha::Holdings;
40
use Koha::SearchEngine;
39
use Koha::SearchEngine;
41
use Koha::SearchEngine::Search;
40
use Koha::SearchEngine::Search;
42
41
(-)a/t/db_dependent/Exporter/Record.t (-1 lines)
Lines 38-44 use Koha::Biblio::Metadata; Link Here
38
use Koha::Biblio::Metadatas;
38
use Koha::Biblio::Metadatas;
39
use Koha::BiblioFramework;
39
use Koha::BiblioFramework;
40
use Koha::BiblioFrameworks;
40
use Koha::BiblioFrameworks;
41
use Koha::Holdings;
42
41
43
my $schema  = Koha::Database->new->schema;
42
my $schema  = Koha::Database->new->schema;
44
$schema->storage->txn_begin;
43
$schema->storage->txn_begin;
(-)a/t/db_dependent/Koha/Item.t (-2 lines)
Lines 28-34 use C4::Biblio qw( GetMarcSubfieldStructure ); Link Here
28
use C4::Circulation qw( AddIssue AddReturn );
28
use C4::Circulation qw( AddIssue AddReturn );
29
29
30
use Koha::Caches;
30
use Koha::Caches;
31
use Koha::Holdings;
32
use Koha::Items;
31
use Koha::Items;
33
use Koha::Database;
32
use Koha::Database;
34
use Koha::DateUtils qw( dt_from_string );
33
use Koha::DateUtils qw( dt_from_string );
35
- 

Return to bug 20447