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

(-)a/Koha/Account/Line.pm (+1 lines)
Lines 29-34 use Koha::Account::Offsets; Link Here
29
use Koha::Database;
29
use Koha::Database;
30
use Koha::Exceptions::Account;
30
use Koha::Exceptions::Account;
31
use Koha::Items;
31
use Koha::Items;
32
use Koha::Checkouts;
32
33
33
use base qw(Koha::Object);
34
use base qw(Koha::Object);
34
35
(-)a/Koha/Old/Checkout.pm (-1 / +1 lines)
Lines 19-25 use Modern::Perl; Link Here
19
19
20
use Koha::Database;
20
use Koha::Database;
21
21
22
use base qw(Koha::Object);
22
use base qw(Koha::Checkout);
23
23
24
=head1 NAME
24
=head1 NAME
25
25
(-)a/Koha/Old/Checkouts.pm (-1 / +1 lines)
Lines 20-26 use Modern::Perl; Link Here
20
use Koha::Database;
20
use Koha::Database;
21
use Koha::Old::Checkout;
21
use Koha::Old::Checkout;
22
22
23
use base qw(Koha::Objects);
23
use base qw(Koha::Checkouts);
24
24
25
sub _type {
25
sub _type {
26
    return 'OldIssue';
26
    return 'OldIssue';
(-)a/Koha/Schema/Result/OldIssue.pm (-1 / +10 lines)
Lines 233-238 __PACKAGE__->belongs_to( Link Here
233
  },
233
  },
234
);
234
);
235
235
236
__PACKAGE__->belongs_to(
237
  "branch",
238
  "Koha::Schema::Result::Branch",
239
  { branchcode => "branchcode" },
240
  {
241
    is_deferrable => 1,
242
    join_type     => "LEFT",
243
  },
244
);
245
236
246
237
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-10 19:55:44
247
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-10 19:55:44
238
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E2N2paWcCHg916100ry+2A
248
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E2N2paWcCHg916100ry+2A
239
- 

Return to bug 15985