Bugzilla – Attachment 137508 Details for
Bug 31128
Add effective_not_for_loan_status to API item objects
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 31128: Add effective_not_for_loan_status into items response
Bug-31128-Add-effectivenotforloanstatus-into-items.patch (text/plain), 1.48 KB, created by
Martin Renvoize (ashimema)
on 2022-07-11 12:48:04 UTC
(
hide
)
Description:
Bug 31128: Add effective_not_for_loan_status into items response
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2022-07-11 12:48:04 UTC
Size:
1.48 KB
patch
obsolete
>From 26d58518903f48a6fea1f2fdb1e6aadcd05bf2da Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Mon, 11 Jul 2022 13:07:28 +0100 >Subject: [PATCH] Bug 31128: Add effective_not_for_loan_status into items > response > >--- > Koha/Item.pm | 2 +- > api/v1/swagger/definitions/item.yaml | 3 +++ > 2 files changed, 4 insertions(+), 1 deletion(-) > >diff --git a/Koha/Item.pm b/Koha/Item.pm >index 55e91182ee..e558f2e2a0 100644 >--- a/Koha/Item.pm >+++ b/Koha/Item.pm >@@ -1310,7 +1310,7 @@ sub to_api { > my $overrides = {}; > > $overrides->{effective_item_type_id} = $self->effective_itemtype; >- $overrides->{not_for_loan_status} = $self->itemtype->notforloan unless $self->notforloan; >+ $overrides->{effective_not_for_loan_status} = $self->notforloan ? $self->notforloan : $self->itemtype->notforloan; > > return { %$response, %$overrides }; > } >diff --git a/api/v1/swagger/definitions/item.yaml b/api/v1/swagger/definitions/item.yaml >index 48bd53647e..e67b53813e 100644 >--- a/api/v1/swagger/definitions/item.yaml >+++ b/api/v1/swagger/definitions/item.yaml >@@ -59,6 +59,9 @@ properties: > not_for_loan_status: > type: integer > description: Authorized value defining why this item is not for loan >+ effective_not_for_loan_status: >+ type: integer >+ description: Authorized value defining why this item is not for not_for_loan_status > damaged_status: > type: integer > description: Authorized value defining this item as damaged >-- >2.20.1
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 31128
:
137507
|
137508
|
137574
|
137575
|
137576
|
137577
|
137593
|
137594
|
138023
|
138024