From 457e560a06e00d861ec88bc7354969aac7ab9099 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 14 Dec 2018 12:48:09 -0300 Subject: [PATCH] Bug 21065: Add koha_object(s)_class methods to accountline Signed-off-by: Martin Renvoize Signed-off-by: Nick Clemens --- Koha/Schema/Result/Accountline.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Koha/Schema/Result/Accountline.pm b/Koha/Schema/Result/Accountline.pm index ab6d8413d6..2545995e99 100644 --- a/Koha/Schema/Result/Accountline.pm +++ b/Koha/Schema/Result/Accountline.pm @@ -239,4 +239,11 @@ __PACKAGE__->belongs_to( # Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-16 17:00:24 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pygYYKxFDRLX97PyeUeLvg +sub koha_objects_class { + 'Koha::Account::Lines'; +} +sub koha_object_class { + 'Koha::Account::Line'; +} + 1; -- 2.20.1