Bugzilla – Attachment 152063 Details for
Bug 21983
Better handling of deleted biblios on ILL requests
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21983: (QA follow-up) Skip deleted_biblio_id from the API object
Bug-21983-QA-follow-up-Skip-deletedbiblioid-from-t.patch (text/plain), 1.89 KB, created by
Tomás Cohen Arazi (tcohen)
on 2023-06-06 18:25:42 UTC
(
hide
)
Description:
Bug 21983: (QA follow-up) Skip deleted_biblio_id from the API object
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2023-06-06 18:25:42 UTC
Size:
1.89 KB
patch
obsolete
>From 2e6a3970d4c83352a4d9b9b03bb8fbf6e922ed5a Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Tue, 6 Jun 2023 15:24:36 -0300 >Subject: [PATCH] Bug 21983: (QA follow-up) Skip deleted_biblio_id from the API > object > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > Koha/Illrequest.pm | 29 +++++++++++++++-------------- > 1 file changed, 15 insertions(+), 14 deletions(-) > >diff --git a/Koha/Illrequest.pm b/Koha/Illrequest.pm >index 4af4aa8c755..90dab74b174 100644 >--- a/Koha/Illrequest.pm >+++ b/Koha/Illrequest.pm >@@ -1895,20 +1895,21 @@ sub TO_JSON { > > sub to_api_mapping { > return { >- illrequest_id => 'ill_request_id', >- borrowernumber => 'patron_id', >- branchcode => 'library_id', >- status_alias => 'status_av', >- placed => 'requested_date', >- replied => 'replied_date', >- updated => 'timestamp', >- completed => 'completed_date', >- accessurl => 'access_url', >- price_paid => 'paid_price', >- notesopac => 'opac_notes', >- notesstaff => 'staff_notes', >- orderid => 'ill_backend_request_id', >- backend => 'ill_backend_id', >+ accessurl => 'access_url', >+ backend => 'ill_backend_id', >+ borrowernumber => 'patron_id', >+ branchcode => 'library_id', >+ completed => 'completed_date', >+ deleted_biblio_id => undef, >+ illrequest_id => 'ill_request_id', >+ notesopac => 'opac_notes', >+ notesstaff => 'staff_notes', >+ orderid => 'ill_backend_request_id', >+ placed => 'requested_date', >+ price_paid => 'paid_price', >+ replied => 'replied_date', >+ status_alias => 'status_av', >+ updated => 'timestamp', > }; > } > >-- >2.41.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 21983
:
83226
|
83227
|
152005
|
152006
|
152007
|
152008
|
152010
|
152011
|
152012
|
152013
|
152056
|
152057
|
152058
|
152059
|
152060
| 152063