Back to bug 24254

Who When What Removed Added
katrin.fischer 2020-01-02 07:13:53 UTC CC katrin.fischer
katrin.fischer 2020-03-28 15:30:02 UTC Blocks 24403
tomascohen 2020-03-29 15:00:28 UTC CC tomascohen
nick 2020-12-02 11:13:49 UTC See Also https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15448
tomascohen 2020-12-02 17:54:02 UTC CC jonathan.druart, martin.renvoize
tomascohen 2020-12-03 15:41:13 UTC Assignee koha-bugs tomascohen
Summary Add Koha::Biblio get_visible_items method Add Koha::Items->filter_by_visible_in_opac
tomascohen 2020-12-03 18:22:05 UTC Status NEW Needs Signoff
tomascohen 2020-12-03 18:22:08 UTC Attachment #96373 Attachment is obsolete 0 1
tomascohen 2020-12-04 11:20:27 UTC Blocks 15448
See Also https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15448
kyle 2020-12-04 18:23:08 UTC Status Needs Signoff Signed Off
kyle 2020-12-04 18:23:11 UTC Attachment #114159 Attachment is obsolete 0 1
Attachment #114160 Attachment is obsolete 0 1
martin.renvoize 2020-12-09 14:08:17 UTC Attachment #114206 Attachment is obsolete 0 1
martin.renvoize 2020-12-09 14:08:20 UTC Attachment #114207 Attachment is obsolete 0 1
martin.renvoize 2020-12-09 14:08:53 UTC Status Signed Off Passed QA
martin.renvoize 2020-12-09 14:08:59 UTC QA Contact testopia martin.renvoize
jonathan.druart 2020-12-11 11:02:17 UTC Keywords release-notes-needed
tomascohen 2020-12-11 11:27:14 UTC Text to go in the release notes This patch introduces an efficient way of filtering Koha::Items result sets, to hide items that OpacHiddenItems determines shouldn't be exposed on public interfaces.
jonathan.druart 2020-12-18 13:02:16 UTC Keywords release-notes-needed
Status Passed QA In Discussion
tomascohen 2020-12-19 13:30:17 UTC Status In Discussion Needs Signoff
tomascohen 2020-12-21 11:14:38 UTC Attachment #114539 Attachment is obsolete 0 1
tomascohen 2020-12-21 11:14:40 UTC Attachment #114540 Attachment is obsolete 0 1
tomascohen 2020-12-21 11:14:43 UTC Attachment #114278 Attachment is obsolete 0 1
tomascohen 2020-12-21 11:14:45 UTC Attachment #114279 Attachment is obsolete 0 1
tomascohen 2020-12-21 20:40:19 UTC CC kyle
Text to go in the release notes This patch introduces an efficient way of filtering Koha::Items result sets, to hide items that OpacHiddenItems determines shouldn't be exposed on public interfaces. to handle this.
- hidelostitems: Koha::Items->filter_out_lost is added to handle this.

Some patrons have exceptions so OpacHiddenItems is not enforced on them. That's why the new method [1] has an optional parameter that expects the logged in patron This patch introduces an efficient way of filtering Koha::Items result sets to be passed in the call.

[1] Koha::Items->filter_by_visible_in_opac, to hide items that that shouldn't be exposed on public interfaces.

Filtering is governed by the following system preferences. Two helper methods are added to handle each of them:
- OpacHiddenItems: Koha::Items->filter_out_opachiddenitems is added
kyle 2020-12-22 11:40:50 UTC Attachment #114574 Attachment is obsolete 0 1
Attachment #114550 Attachment is obsolete 0 1
Attachment #114548 Attachment is obsolete 0 1
Attachment #114551 Attachment is obsolete 0 1
Attachment #114549 Attachment is obsolete 0 1
kyle 2020-12-22 11:41:15 UTC Status Needs Signoff Signed Off
kyle 2020-12-22 11:41:21 UTC Attachment #114594 Attachment is obsolete 0 1
martin.renvoize 2020-12-23 11:25:41 UTC Attachment #114595 Attachment is obsolete 0 1
martin.renvoize 2020-12-23 11:25:44 UTC Attachment #114596 Attachment is obsolete 0 1
martin.renvoize 2020-12-23 11:25:48 UTC Attachment #114597 Attachment is obsolete 0 1
martin.renvoize 2020-12-23 11:25:51 UTC Attachment #114598 Attachment is obsolete 0 1
martin.renvoize 2020-12-23 11:25:55 UTC Attachment #114599 Attachment is obsolete 0 1
martin.renvoize 2020-12-23 11:28:50 UTC Status Signed Off Passed QA
tomascohen 2021-01-07 13:51:36 UTC Blocks 27358
jonathan.druart 2021-01-14 09:45:50 UTC Attachment #115131 Attachment is obsolete 0 1
jonathan.druart 2021-01-14 09:45:55 UTC Attachment #115132 Attachment is obsolete 0 1
martin.renvoize 2021-01-14 11:47:19 UTC Attachment #114664 Attachment is obsolete 0 1
martin.renvoize 2021-01-14 11:47:23 UTC Attachment #114665 Attachment is obsolete 0 1
martin.renvoize 2021-01-14 11:47:27 UTC Attachment #114666 Attachment is obsolete 0 1
martin.renvoize 2021-01-14 11:47:30 UTC Attachment #114667 Attachment is obsolete 0 1
martin.renvoize 2021-01-14 11:47:34 UTC Attachment #114668 Attachment is obsolete 0 1
martin.renvoize 2021-01-14 12:18:02 UTC Attachment #115152 Attachment is obsolete 0 1
martin.renvoize 2021-01-14 12:20:17 UTC Text to go in the release notes to handle this.
- hidelostitems: Koha::Items->filter_out_lost is added to handle this.

Some patrons have exceptions so OpacHiddenItems is not enforced on them. That's why the new method [1] has an optional parameter that expects the logged in patron This patch introduces an efficient way of filtering Koha::Items result sets to be passed in the call.

[1] Koha::Items->filter_by_visible_in_opac, to hide items that that shouldn't be exposed on public interfaces.

Filtering is governed by the following system preferences. Two helper methods are added to handle each of them:
- OpacHiddenItems: Koha::Items->filter_out_opachiddenitems is added
this.

Some patrons have exceptions so OpacHiddenItems is not enforced on them. That's why the new method [1] has an optional parameter that expects the logged in patron to be passed in the call.

[1] Koha::Items->filter_by_visible_in_opac This patch introduces an efficient way of filtering Koha::Items result sets , to hide items that that shouldn't be exposed on public interfaces.

Filtering is governed by the following system preferences. A helper method is added to handle lost items:
- hidelostitems: Koha::Items->filter_out_lost is added to handle
jonathan.druart 2021-01-14 13:04:27 UTC Version(s) released in 21.05.00
Status Passed QA Pushed to master
fridolin.somers 2021-01-18 15:11:40 UTC Status Pushed to master RESOLVED
CC fridolin.somers
Resolution --- FIXED
fridolin.somers 2021-01-19 07:56:18 UTC Status RESOLVED REOPENED
Resolution FIXED ---
fridolin.somers 2021-01-19 07:56:39 UTC Status REOPENED Needs Signoff
fridolin.somers 2021-01-19 07:56:49 UTC Status Needs Signoff Signed Off
fridolin.somers 2021-01-19 07:56:57 UTC Status Signed Off Passed QA
fridolin.somers 2021-01-19 07:57:05 UTC Status Passed QA Pushed to master
fridolin.somers 2021-01-19 07:57:52 UTC Status Pushed to master Pushed to stable
Version(s) released in 21.05.00 21.05.00,20.11.02
andrew 2021-01-29 17:48:51 UTC CC andrew
andrew 2021-01-29 18:46:46 UTC Version(s) released in 21.05.00,20.11.02 21.05.00,20.11.02,20.05.09
Status Pushed to stable Pushed to oldstable
tomascohen 2021-01-29 19:40:00 UTC Blocks 27580
victor 2021-02-01 21:15:09 UTC Version(s) released in 21.05.00,20.11.02,20.05.09 21.05.00,20.11.02,20.05.09,19.11.15
Status Pushed to oldstable Pushed to oldoldstable
CC victor
caroline.cyr-la-rose 2021-02-11 22:09:48 UTC CC caroline.cyr-la-rose
jonathan.druart 2021-05-25 13:53:37 UTC Text to go in the release notes this.

Some patrons have exceptions so OpacHiddenItems is not enforced on them. That's why the new method [1] has an optional parameter that expects the logged in patron to be passed in the call.

[1] Koha::Items->filter_by_visible_in_opac This patch introduces an efficient way of filtering Koha::Items result sets, to hide items that that shouldn't be exposed on public interfaces.

Filtering is governed by the following system preferences. A helper method is added to handle lost items:
- hidelostitems: Koha::Items->filter_out_lost is added to handle
patrons have exceptions so OpacHiddenItems is not enforced on them. That's why the new method [1] has an optional parameter that expects the logged in patron to be passed in the call.

[1] Koha::Items->filter_by_visible_in_opac This patch introduces an efficient way of filtering Koha::Items result sets, to hide items that shouldn't be exposed on public interfaces.

Filtering is governed by the following system preferences. A helper method is added to handle lost items:
- hidelostitems: Koha::Items->filter_out_lost is added to handle this.

Some
tomascohen 2021-10-13 14:34:50 UTC Status Pushed to oldoldstable RESOLVED
Resolution --- FIXED
nick 2022-01-14 14:58:02 UTC CC kelly
jonathan.druart 2022-03-21 13:56:27 UTC Blocks 29802
katrin.fischer 2022-12-12 21:24:12 UTC Status RESOLVED CLOSED

Back to bug 24254