Bugzilla – Attachment 73200 Details for
Bug 19943
Koha::Biblio - Remove GetBiblioItemData
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19943: Fix Borrower_PrevCheckout.t - create the biblioitem entry
Bug-19943-Fix-BorrowerPrevCheckoutt---create-the-b.patch (text/plain), 1.33 KB, created by
Jonathan Druart
on 2018-03-23 16:23:37 UTC
(
hide
)
Description:
Bug 19943: Fix Borrower_PrevCheckout.t - create the biblioitem entry
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2018-03-23 16:23:37 UTC
Size:
1.33 KB
patch
obsolete
>From 49e3d987508bbc932c96b4b00cfeb88d83c31223 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 23 Mar 2018 13:22:35 -0300 >Subject: [PATCH] Bug 19943: Fix Borrower_PrevCheckout.t - create the > biblioitem entry > >--- > t/db_dependent/Patron/Borrower_PrevCheckout.t | 3 +++ > 1 file changed, 3 insertions(+) > >diff --git a/t/db_dependent/Patron/Borrower_PrevCheckout.t b/t/db_dependent/Patron/Borrower_PrevCheckout.t >index 3c705259f5..d7975aee00 100644 >--- a/t/db_dependent/Patron/Borrower_PrevCheckout.t >+++ b/t/db_dependent/Patron/Borrower_PrevCheckout.t >@@ -381,12 +381,14 @@ test_it($cpvPmappings, "PostReturn"); > my $CBBI_patron = $builder->build({source => 'Borrower'}); > $patron = Koha::Patrons->find( $CBBI_patron->{borrowernumber} ); > # Our Items >+ > my $new_item = $builder->build({ > source => 'Item', > value => { > notforloan => 0, > withdrawn => 0, > itemlost => 0, >+ biblionumber => $builder->build( { source => 'Biblioitem' } )->{biblionumber}, > }, > }); > my $prev_item = $builder->build({ >@@ -395,6 +397,7 @@ my $prev_item = $builder->build({ > notforloan => 0, > withdrawn => 0, > itemlost => 0, >+ biblionumber => $builder->build( { source => 'Biblioitem' } )->{biblionumber}, > }, > }); > # Second is Checked Out >-- >2.11.0
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 19943
:
70384
|
70385
|
70386
|
72568
|
72569
|
72570
|
72593
|
72594
|
72595
|
72596
|
73189
|
73190
|
73191
|
73192
|
73194
|
73198
|
73199
| 73200