Browse Source

Bug 25998: (QA follow-up) Add DBIC level relation

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
20.11.x
Martin Renvoize 4 years ago
committed by Jonathan Druart
parent
commit
997094cc38
  1. 2
      Koha/Account/Line.pm
  2. 20
      Koha/Schema/Result/Accountline.pm

2
Koha/Account/Line.pm

@ -93,7 +93,7 @@ Returns a Koha::Library object representing where the accountline was recorded
sub library {
my ( $self ) = @_;
my $rs = $self->_result->branchcode;
my $rs = $self->_result->library;
return unless $rs;
return Koha::Library->_new_from_dbic($rs);
}

20
Koha/Schema/Result/Accountline.pm

@ -370,6 +370,26 @@ __PACKAGE__->belongs_to(
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-19 09:20:20
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BuE4CYsSH4BwXZoQKE2MWw
=head2 library
Type: belongs_to
Related object: L<Koha::Schema::Result::Branch>
=cut
__PACKAGE__->belongs_to(
"library",
"Koha::Schema::Result::Branch",
{ branchcode => "branchcode" },
{
is_deferrable => 1,
join_type => "LEFT",
on_delete => "SET NULL",
on_update => "CASCADE",
},
);
sub koha_objects_class {
'Koha::Account::Lines';
}

Loading…
Cancel
Save