Bug 28705 - Renewal should look at current article requests
Summary: Renewal should look at current article requests
Status: CLOSED WONTFIX
Alias: None
Product: Koha
Classification: Unclassified
Component: Circulation (show other bugs)
Version: Main
Hardware: All All
: P5 - low enhancement
Assignee: Marcel de Rooy
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks: 28767
  Show dependency treegraph
 
Reported: 2021-07-13 11:53 UTC by Marcel de Rooy
Modified: 2023-06-08 22:26 UTC (History)
4 users (show)

See Also:
Change sponsored?: ---
Patch complexity: Small patch
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments
Bug 28705: Renew should look at current article requests (9.15 KB, patch)
2021-07-14 13:44 UTC, Marcel de Rooy
Details | Diff | Splinter Review
Bug 28705: Renew should look at current article requests (9.33 KB, patch)
2021-07-26 12:53 UTC, Marcel de Rooy
Details | Diff | Splinter Review
Bug 28705: New preference CheckArticleRequestsOnRenewal (3.74 KB, patch)
2021-07-26 12:53 UTC, Marcel de Rooy
Details | Diff | Splinter Review
Bug 28705: Renew should look at current article requests (9.39 KB, patch)
2021-11-29 10:27 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review
Bug 28705: New preference CheckArticleRequestsOnRenewal (3.76 KB, patch)
2021-11-29 10:27 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Marcel de Rooy 2021-07-13 11:53:52 UTC
The Article Requests feature has not been fully integrated with Koha's core circulation functions.
Currently, the renew process does not look at current article requests.
Comment 1 Katrin Fischer 2021-07-13 12:38:15 UTC
Hi Marcel, can you explain how you expect it to work? 

Articles aren't checked out/don't need to be returned usually I think. Or maybe I missed an alternative workflow? Here it's usually used with copies that are kept by the patron.
Comment 2 Marcel de Rooy 2021-07-13 12:43:02 UTC
(In reply to Katrin Fischer from comment #1)
> Hi Marcel, can you explain how you expect it to work? 
> 
> Articles aren't checked out/don't need to be returned usually I think. Or
> maybe I missed an alternative workflow? Here it's usually used with copies
> that are kept by the patron.

I need the physical material to make a photcopy or digital scan of it. When the book is renewed without checking, the request is delayed once more.

Yeah, this is about more than articles actually. An article could be some pages of a regular book too in our context.
Comment 3 Marcel de Rooy 2021-07-14 13:44:16 UTC
Created attachment 122840 [details] [review]
Bug 28705: Renew should look at current article requests

This development is controlled by the new preference called
CheckArticleRequestsOnRenewal.

Test plan:
[1] Run Circulation.t
[2] Run the new test has_pending_article_requests.t
[3] Enable preference
[4] Issue some item, allow it to be renewed now
[5] Add an article request for that specific item
[6] Verify that you cannot renew this item now
[7] Cancel the former article request
[8] Add an article request for same biblio on biblio level
[9] If there are still available items, you should be able
    to renew. But if not, you should not ;)
Comment 4 Marcel de Rooy 2021-07-14 13:46:10 UTC
The patch submitted is kind of POC now.
We could still smoothen things, e.g. the error message that says it is on hold while the item is article requested or damaged etc.

What do you think ?
Comment 5 Marcel de Rooy 2021-07-14 14:07:41 UTC
(In reply to Marcel de Rooy from comment #4)

> hold while the item is article requested or damaged etc.

To clarify: while the item is article requested or the biblio is article requested without available items (because at least one is onloan, and others are damaged, waiting etc.)
Comment 6 Martin Renvoize (ashimema) 2021-07-19 07:40:34 UTC
Silly question, do we highlight there's an article request pending at check-in already.. if not I could see that being nicely folded in here too.. I would be helpful to have such cases flagged at return so the item can be put to one side to process the article request.

Generally, though, this seems like a nice feature.
Comment 7 Marcel de Rooy 2021-07-26 11:40:38 UTC
(In reply to Martin Renvoize from comment #6)
> Silly question, do we highlight there's an article request pending at
> check-in already.. if not I could see that being nicely folded in here too..
> I would be helpful to have such cases flagged at return so the item can be
> put to one side to process the article request.
> 
> Generally, though, this seems like a nice feature.

Thanks for your feedback.
The check-in case is yet another one to take care of. The problem is that article request originally has been developed without considering the need of integration with Circulation. I would prefer to keep this report now at its current size.
When checking in, we touch the point of comparing the priority of holds and article requests. Which one should go first? The oldest one?
This problem is not yet actual here. In the code we just look first at holds to see if renewal is possible. If there are no holds, we check article requests.
Comment 8 Marcel de Rooy 2021-07-26 12:53:37 UTC
Created attachment 123190 [details] [review]
Bug 28705: Renew should look at current article requests

This development is controlled by the new preference called
CheckArticleRequestsOnRenewal.

Test plan:
[1] Run Circulation.t
[2] Run the new test has_current_article_requests.t
[3] Enable preference
[4] Issue some item, allow it to be renewed now
[5] Add an article request for that specific item
[6] Verify that you cannot renew this item now
[7] Cancel the former article request
[8] Add an article request for same biblio on biblio level
[9] If there are still available items, you should be able
    to renew. But if not, you should not ;)
Comment 9 Marcel de Rooy 2021-07-26 12:53:41 UTC
Created attachment 123191 [details] [review]
Bug 28705: New preference CheckArticleRequestsOnRenewal

Test plan:
Run dbrev, check preferences.
Comment 10 Martin Renvoize (ashimema) 2021-11-29 10:27:22 UTC
Created attachment 128061 [details] [review]
Bug 28705: Renew should look at current article requests

This development is controlled by the new preference called
CheckArticleRequestsOnRenewal.

Test plan:
[1] Run Circulation.t
[2] Run the new test has_current_article_requests.t
[3] Enable preference
[4] Issue some item, allow it to be renewed now
[5] Add an article request for that specific item
[6] Verify that you cannot renew this item now
[7] Cancel the former article request
[8] Add an article request for same biblio on biblio level
[9] If there are still available items, you should be able
    to renew. But if not, you should not ;)

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Comment 11 Martin Renvoize (ashimema) 2021-11-29 10:27:26 UTC
Created attachment 128062 [details] [review]
Bug 28705: New preference CheckArticleRequestsOnRenewal

Test plan:
Run dbrev, check preferences.

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Comment 12 Martin Renvoize (ashimema) 2021-11-29 10:29:03 UTC
Works as described so signing off..

Putting my QA hat on, I think I'd prefer to not re-use the reserved flag but rather add our own case for article requests.. that way we have more flexibility later on in the flow to show specific messages etc.
Comment 13 Nick Clemens (kidclamp) 2021-11-29 12:26:30 UTC
Can the two initial searches be combined into one? I see that they have different purposes, however, I think a single search ordered by itemnumber, then a check whether the first result has an itemnumber would be preferred to 2 DB hits - in the case where a borrower has many items checked out it makes a difference.

For the lookup of items, shouldn't the current item be excluded from the list? i.e. if the one item that can fill the request is the one we are trying to renew, we should fail