Bugzilla – Attachment 72122 Details for
Bug 20285
Lost item refund won't always pay down lost item fee first
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20286: Unit Test
Bug-20286-Unit-Test.patch (text/plain), 1.03 KB, created by
Kyle M Hall (khall)
on 2018-02-23 13:49:01 UTC
(
hide
)
Description:
Bug 20286: Unit Test
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2018-02-23 13:49:01 UTC
Size:
1.03 KB
patch
obsolete
>From 447efa9f0a7929667a1833d6e2716361526cfe25 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatetsolutions.com> >Date: Fri, 23 Feb 2018 08:44:24 -0500 >Subject: [PATCH] Bug 20286: Unit Test > >https://bugs.koha-community.org/show_bug.cgi?id=20285 >--- > t/db_dependent/Circulation.t | 10 ++++++++++ > 1 file changed, 10 insertions(+) > >diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t >index f4ff177..321dc86 100755 >--- a/t/db_dependent/Circulation.t >+++ b/t/db_dependent/Circulation.t >@@ -1849,6 +1849,16 @@ subtest '_FixAccountForLostAndReturned' => sub { > > my $patron = $builder->build( { source => 'Borrower' } ); > >+ Koha::Account::Line->new( >+ { >+ borrowernumber => $patron->{borrowernumber}, >+ accounttype => 'F', >+ itemnumber => $itemnumber, >+ amount => 10.00, >+ amountoutstanding => 10.00, >+ } >+ )->store(); >+ > my $accountline = Koha::Account::Line->new( > { > borrowernumber => $patron->{borrowernumber}, >-- >2.10.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 20285
:
72122
|
72123
|
75936
|
76060
|
76061