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

(-)a/Koha/Account/Line.pm (-2 / +2 lines)
Lines 23-30 use Data::Dumper; Link Here
23
use C4::Log qw(logaction);
23
use C4::Log qw(logaction);
24
use C4::Overdues qw(GetFine);
24
use C4::Overdues qw(GetFine);
25
25
26
use Koha::Account::CreditType;
26
use Koha::Account::CreditTypes;
27
use Koha::Account::DebitType;
27
use Koha::Account::DebitTypes;
28
use Koha::Account::Offsets;
28
use Koha::Account::Offsets;
29
use Koha::Database;
29
use Koha::Database;
30
use Koha::DateUtils;
30
use Koha::DateUtils;
(-)a/Koha/Acquisition/Invoice/Adjustments.pm (-2 lines)
Lines 22-29 use Carp; Link Here
22
22
23
use Koha::Database;
23
use Koha::Database;
24
24
25
use Koha::Rating;
26
27
use base qw(Koha::Objects);
25
use base qw(Koha::Objects);
28
26
29
=head1 NAME
27
=head1 NAME
(-)a/Koha/AdditionalFieldValue.pm (-1 / +1 lines)
Lines 1-7 Link Here
1
package Koha::AdditionalFieldValue;
1
package Koha::AdditionalFieldValue;
2
2
3
use Modern::Perl;
3
use Modern::Perl;
4
use Koha::AdditionalField;
4
use Koha::AdditionalFields;
5
5
6
use base 'Koha::Object';
6
use base 'Koha::Object';
7
7
(-)a/Koha/Club/Hold.pm (-1 / +1 lines)
Lines 28-34 use Koha::Club::Template::Fields; Link Here
28
use base qw(Koha::Object);
28
use base qw(Koha::Object);
29
use Koha::Exceptions;
29
use Koha::Exceptions;
30
use Koha::Exceptions::ClubHold;
30
use Koha::Exceptions::ClubHold;
31
use Koha::Club::Hold::PatronHold;
31
use Koha::Club::Hold::PatronHolds;
32
use Koha::Clubs;
32
use Koha::Clubs;
33
use Koha::Patrons;
33
use Koha::Patrons;
34
34
(-)a/Koha/Club/Holds.pm (-2 lines)
Lines 23-30 use Carp; Link Here
23
23
24
use Koha::Database;
24
use Koha::Database;
25
25
26
use Koha::Club::Field;
27
28
use Koha::Club::Hold;
26
use Koha::Club::Hold;
29
27
30
use base qw(Koha::Objects);
28
use base qw(Koha::Objects);
(-)a/Koha/Illrequest.pm (-2 / +2 lines)
Lines 32-40 use Koha::DateUtils qw/ dt_from_string /; Link Here
32
use Koha::Exceptions::Ill;
32
use Koha::Exceptions::Ill;
33
use Koha::Illcomments;
33
use Koha::Illcomments;
34
use Koha::Illrequestattributes;
34
use Koha::Illrequestattributes;
35
use Koha::AuthorisedValue;
35
use Koha::AuthorisedValues;
36
use Koha::Illrequest::Logger;
36
use Koha::Illrequest::Logger;
37
use Koha::Patron;
37
use Koha::Patrons;
38
use Koha::AuthorisedValues;
38
use Koha::AuthorisedValues;
39
use Koha::Biblios;
39
use Koha::Biblios;
40
use Koha::Items;
40
use Koha::Items;
(-)a/Koha/Illrequest/Logger.pm (-1 / +1 lines)
Lines 26-32 use C4::Context; Link Here
26
use C4::Templates;
26
use C4::Templates;
27
use C4::Log qw( logaction );
27
use C4::Log qw( logaction );
28
use Koha::ActionLogs;
28
use Koha::ActionLogs;
29
use Koha::Notice::Template;
29
use Koha::Notice::Templates;
30
30
31
=head1 NAME
31
=head1 NAME
32
32
(-)a/Koha/Item.pm (-1 / +1 lines)
Lines 44-50 use Koha::ItemTypes; Link Here
44
use Koha::Patrons;
44
use Koha::Patrons;
45
use Koha::Plugins;
45
use Koha::Plugins;
46
use Koha::Libraries;
46
use Koha::Libraries;
47
use Koha::StockRotationItem;
47
use Koha::StockRotationItems;
48
use Koha::StockRotationRotas;
48
use Koha::StockRotationRotas;
49
49
50
use base qw(Koha::Object);
50
use base qw(Koha::Object);
(-)a/Koha/Patron.pm (-2 / +2 lines)
Lines 40-47 use Koha::Old::Checkouts; Link Here
40
use Koha::Patron::Attributes;
40
use Koha::Patron::Attributes;
41
use Koha::Patron::Categories;
41
use Koha::Patron::Categories;
42
use Koha::Patron::Debarments;
42
use Koha::Patron::Debarments;
43
use Koha::Patron::HouseboundProfile;
43
use Koha::Patron::HouseboundProfiles;
44
use Koha::Patron::HouseboundRole;
44
use Koha::Patron::HouseboundRoles;
45
use Koha::Patron::Images;
45
use Koha::Patron::Images;
46
use Koha::Patron::Modifications;
46
use Koha::Patron::Modifications;
47
use Koha::Patron::Relationships;
47
use Koha::Patron::Relationships;
(-)a/Koha/Patron/HouseboundVisit.pm (-1 / +1 lines)
Lines 18-24 package Koha::Patron::HouseboundVisit; Link Here
18
use Modern::Perl;
18
use Modern::Perl;
19
19
20
use Koha::Database;
20
use Koha::Database;
21
use Koha::Patron;
21
use Koha::Patrons;
22
22
23
use base qw(Koha::Object);
23
use base qw(Koha::Object);
24
24
(-)a/Koha/Patron/Modification.pm (-1 lines)
Lines 23-29 use Carp; Link Here
23
23
24
use Koha::Database;
24
use Koha::Database;
25
use Koha::Exceptions::Patron::Modification;
25
use Koha::Exceptions::Patron::Modification;
26
use Koha::Patron::Attribute;
27
use Koha::Patron::Attributes;
26
use Koha::Patron::Attributes;
28
use Koha::Patron::Modifications;
27
use Koha::Patron::Modifications;
29
28
(-)a/Koha/Patron/Modifications.pm (-1 / +1 lines)
Lines 26-33 use Modern::Perl; Link Here
26
26
27
use C4::Context;
27
use C4::Context;
28
28
29
use Koha::Patron::Attribute;
30
use Koha::Patron::Modification;
29
use Koha::Patron::Modification;
30
use Koha::Patron::Attributes;
31
31
32
use JSON;
32
use JSON;
33
use List::Util qw /any none/;
33
use List::Util qw /any none/;
(-)a/Koha/StockRotationItem.pm (-3 / +2 lines)
Lines 23-31 use DateTime; Link Here
23
use DateTime::Duration;
23
use DateTime::Duration;
24
use Koha::Database;
24
use Koha::Database;
25
use Koha::DateUtils qw/dt_from_string/;
25
use Koha::DateUtils qw/dt_from_string/;
26
use Koha::Item::Transfer;
26
use Koha::Items;
27
use Koha::Item;
27
use Koha::StockRotationStages;
28
use Koha::StockRotationStage;
29
use Try::Tiny;
28
use Try::Tiny;
30
29
31
use base qw(Koha::Object);
30
use base qw(Koha::Object);
(-)a/Koha/StockRotationStage.pm (-2 / +3 lines)
Lines 20-27 package Koha::StockRotationStage; Link Here
20
use Modern::Perl;
20
use Modern::Perl;
21
21
22
use Koha::Database;
22
use Koha::Database;
23
use Koha::Library;
23
use Koha::StockRotationStage;
24
use Koha::StockRotationRota;
24
use Koha::Libraries;
25
use Koha::StockRotationRotas;
25
26
26
use base qw(Koha::Object);
27
use base qw(Koha::Object);
27
28
(-)a/Koha/Uploader.pm (-1 lines)
Lines 77-83 use base qw(Class::Accessor); Link Here
77
77
78
use C4::Context;
78
use C4::Context;
79
use C4::Koha;
79
use C4::Koha;
80
use Koha::UploadedFile;
81
use Koha::UploadedFiles;
80
use Koha::UploadedFiles;
82
81
83
__PACKAGE__->mk_ro_accessors( qw|| );
82
__PACKAGE__->mk_ro_accessors( qw|| );
(-)a/Koha/Virtualshelf.pm (-3 lines)
Lines 25-33 use Koha::Patrons; Link Here
25
use Koha::Database;
25
use Koha::Database;
26
use Koha::DateUtils qw( dt_from_string );
26
use Koha::DateUtils qw( dt_from_string );
27
use Koha::Exceptions;
27
use Koha::Exceptions;
28
use Koha::Virtualshelfshare;
29
use Koha::Virtualshelfshares;
28
use Koha::Virtualshelfshares;
30
use Koha::Virtualshelfcontent;
31
use Koha::Virtualshelfcontents;
29
use Koha::Virtualshelfcontents;
32
30
33
use base qw(Koha::Object);
31
use base qw(Koha::Object);
34
- 

Return to bug 28150