From c0016f8878c06a08ab571cee3368b2341585bb77 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Sat, 21 Jan 2017 15:48:57 +0100 Subject: [PATCH] Bug 17964: Add old_issues If it's a CHECKIN, C4::Circulation::SendCirculationAlert set a "old_issues" key instead of "issues". Signed-off-by: Kyle M Hall --- C4/Letters.pm | 6 ++++++ t/db_dependent/Letters/TemplateToolkit.t | 12 ++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/C4/Letters.pm b/C4/Letters.pm index 9308e4f..ebed363 100644 --- a/C4/Letters.pm +++ b/C4/Letters.pm @@ -1540,6 +1540,12 @@ sub _get_tt_params { plural => 'checkouts', fk => 'itemnumber', }, + old_issues => { + module => 'Koha::Old::Checkouts', + singular => 'old_checkout', + plural => 'old_checkouts', + fk => 'itemnumber', + }, borrower_modifications => { module => 'Koha::Patron::Modifications', singular => 'patron_modification', diff --git a/t/db_dependent/Letters/TemplateToolkit.t b/t/db_dependent/Letters/TemplateToolkit.t index 0ba51f9..810961a 100644 --- a/t/db_dependent/Letters/TemplateToolkit.t +++ b/t/db_dependent/Letters/TemplateToolkit.t @@ -416,13 +416,13 @@ The following items have been checked out: Thank you for visiting <>. |; reset_template( { template => $checkout_template, code => $checkout_code, module => 'circulation' } ); - my $checkin_template = q| + my $checkin_template = q[ The following items have been checkin out: ---- -<> +<> was due on <> ---- Thank you for visiting <>. -|; +]; reset_template( { template => $checkin_template, code => $checkin_code, module => 'circulation' } ); C4::Circulation::AddIssue( $patron, $item1->{barcode} ); @@ -446,13 +446,13 @@ The following items have been checked out: Thank you for visiting [% branch.branchname %]. |; reset_template( { template => $checkout_template, code => $checkout_code, module => 'circulation' } ); - $checkin_template = q| + $checkin_template = q[ The following items have been checkin out: ---- -[% biblio.title %] +[% biblio.title %] was due on [% old_checkout.date_due | $KohaDates %] ---- Thank you for visiting [% branch.branchname %]. -|; +]; reset_template( { template => $checkin_template, code => $checkin_code, module => 'circulation' } ); C4::Circulation::AddIssue( $patron, $item1->{barcode} ); -- 2.1.4