[Bug 32630] New: Don't delete ILL requests when patron is deleted
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Bug ID: 32630 Summary: Don't delete ILL requests when patron is deleted Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: ILL Assignee: koha-bugs@lists.koha-community.org Reporter: katrin.fischer@bsz-bw.de CC: magnus@libriotech.no, martin.renvoize@ptfs-europe.com, tomascohen@gmail.com There is a FK constraint, that makes it so that when a patron is deleted, the ILL requests linked to the account are deleted as well. This can potentially cause a number of problems: * ILL requests deleted could be pending, in shipment etc. You will have no audit track if there are any problems with transport etc. * You won't be able to do reliable statistics on number of ILL requests etc. especially since adding a request is not even logged. I propose that instead of removing the borrowernumber, we either * leave it * set it to NULL Would love to get some input on this one! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #1 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- illrequests: [...] `orderid` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `backend` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`illrequest_id`), UNIQUE KEY `illrequest_id` (`illrequest_id`), KEY `illrequests_bnfk` (`borrowernumber`), KEY `illrequests_bcfk_2` (`branchcode`), KEY `illrequests_safk` (`status_alias`), CONSTRAINT `illrequests_bcfk_2` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `illrequests_bnfk` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `illrequests_safk` FOREIGN KEY (`status_alias`) REFERENCES `authorised_values` (`authorised_value`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=21809 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=22513 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=21983 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #2 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- I think 'SET NULL' is the right thing to do here.. if you want the audit trail for what deleted borrower we should follow the pattern and add a deleted_borrower_id field to the table and trigger a move at patron delete. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Martin Renvoize <martin.renvoize@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pedro.amorim@ptfs-europe.co | |m -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36360 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36361 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jeremy.evans@ukhsa.gov.uk -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=37901 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |39175 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39175 [Bug 39175] Send request to partners explodes -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #3 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178387 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178387&action=edit Bug 32630: dbic -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #4 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178388 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178388&action=edit Bug 32630: database changes -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #5 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178389 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178389&action=edit Bug 32630: atomicupdate -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #6 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178390 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178390&action=edit Bug 32630: Update send notice to patron button Only show this action button if the ILL request has a borrowernumber -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #7 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178391 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178391&action=edit Bug 32630: Update patron attribute display Only show this attribute if defined -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #8 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178392 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178392&action=edit Bug 32630: Add tests prove t/db_dependent/Koha/ILL/Requests.t -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #9 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178393 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178393&action=edit Bug 32630: Update get_notice Make it consider the possibility of a patron not existing. This ensures that placing a request with partners does not error and works as expected even if the ILL request's borrowernumber is undef To test: 1) Run the test file before and after applying this patch: prove t/db_dependent/Koha/ILL/Requests.t To test (ILL request is kept after borrower is deleted): 1) Apply all patches except this one 2) Enable ILLModule and create an ILL request. 3) Add a type, valid cardnumber and library. 4) Delete the associated borrower. 5) Confirm the ILL request is still listed and shown as expected Continue test, confirm follow-up bug is fixed: 6) Click 'Place request with partners' 7) You get a ERR_TOO_MANY_REDIRECTS error 8) Apply this patch and restart plack. Repeat. 9) Confirm the place request with partners libraries page is shown correctly -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs@lists.koha-commun |pedro.amorim@ptfs-europe.co |ity.org |m Patch complexity|--- |Trivial patch --- Comment #10 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Added bug 39175 as dependency because it fixes an unrelated bug that otherwise makes following the test plan here impossible. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #178387|0 |1 is obsolete| | --- Comment #11 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178858 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178858&action=edit Bug 32630: dbic Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #178388|0 |1 is obsolete| | --- Comment #12 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178859 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178859&action=edit Bug 32630: database changes Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #178389|0 |1 is obsolete| | --- Comment #13 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178860 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178860&action=edit Bug 32630: atomicupdate Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #178390|0 |1 is obsolete| | --- Comment #14 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178861 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178861&action=edit Bug 32630: Update send notice to patron button Only show this action button if the ILL request has a borrowernumber Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #178391|0 |1 is obsolete| | --- Comment #15 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178862 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178862&action=edit Bug 32630: Update patron attribute display Only show this attribute if defined Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #178392|0 |1 is obsolete| | --- Comment #16 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178863 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178863&action=edit Bug 32630: Add tests prove t/db_dependent/Koha/ILL/Requests.t Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #178393|0 |1 is obsolete| | --- Comment #17 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 178864 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178864&action=edit Bug 32630: Update get_notice Make it consider the possibility of a patron not existing. This ensures that placing a request with partners does not error and works as expected even if the ILL request's borrowernumber is undef To test: 1) Run the test file before and after applying this patch: prove t/db_dependent/Koha/ILL/Requests.t To test (ILL request is kept after borrower is deleted): 1) Apply all patches except this one 2) Enable ILLModule and create an ILL request. 3) Add a type, valid cardnumber and library. 4) Delete the associated borrower. 5) Confirm the ILL request is still listed and shown as expected Continue test, confirm follow-up bug is fixed: 6) Click 'Place request with partners' 7) You get a ERR_TOO_MANY_REDIRECTS error 8) Apply this patch and restart plack. Repeat. 9) Confirm the place request with partners libraries page is shown correctly Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Lisette Scheer <lisette@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Lisette Scheer <lisette@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #178858|0 |1 is obsolete| | Attachment #178859|0 |1 is obsolete| | Attachment #178860|0 |1 is obsolete| | Attachment #178861|0 |1 is obsolete| | Attachment #178862|0 |1 is obsolete| | Attachment #178863|0 |1 is obsolete| | Attachment #178864|0 |1 is obsolete| | --- Comment #18 from Lisette Scheer <lisette@bywatersolutions.com> --- Created attachment 178876 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178876&action=edit Bug 32630: dbic Worked as expected. Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> Signed-off-by: Lisette Scheer <lisette@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #19 from Lisette Scheer <lisette@bywatersolutions.com> --- Created attachment 178877 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178877&action=edit Bug 32630: database changes Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> Signed-off-by: Lisette Scheer <lisette@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #20 from Lisette Scheer <lisette@bywatersolutions.com> --- Created attachment 178878 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178878&action=edit Bug 32630: atomicupdate Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> Signed-off-by: Lisette Scheer <lisette@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #21 from Lisette Scheer <lisette@bywatersolutions.com> --- Created attachment 178879 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178879&action=edit Bug 32630: Update send notice to patron button Only show this action button if the ILL request has a borrowernumber Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> Signed-off-by: Lisette Scheer <lisette@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #22 from Lisette Scheer <lisette@bywatersolutions.com> --- Created attachment 178880 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178880&action=edit Bug 32630: Update patron attribute display Only show this attribute if defined Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> Signed-off-by: Lisette Scheer <lisette@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #23 from Lisette Scheer <lisette@bywatersolutions.com> --- Created attachment 178881 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178881&action=edit Bug 32630: Update get_notice Make it consider the possibility of a patron not existing. This ensures that placing a request with partners does not error and works as expected even if the ILL request's borrowernumber is undef To test: 1) Run the test file before and after applying this patch: prove t/db_dependent/Koha/ILL/Requests.t To test (ILL request is kept after borrower is deleted): 1) Apply all patches except this one 2) Enable ILLModule and create an ILL request. 3) Add a type, valid cardnumber and library. 4) Delete the associated borrower. 5) Confirm the ILL request is still listed and shown as expected Continue test, confirm follow-up bug is fixed: 6) Click 'Place request with partners' 7) You get a ERR_TOO_MANY_REDIRECTS error 8) Apply this patch and restart plack. Repeat. 9) Confirm the place request with partners libraries page is shown correctly Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> Signed-off-by: Lisette Scheer <lisette@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Lisette Scheer <lisette@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #178881|0 |1 is obsolete| | --- Comment #24 from Lisette Scheer <lisette@bywatersolutions.com> --- Created attachment 178882 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178882&action=edit Bug 32630: Update get_notice Make it consider the possibility of a patron not existing. This ensures that placing a request with partners does not error and works as expected even if the ILL request's borrowernumber is undef To test: 1) Run the test file before and after applying this patch: prove t/db_dependent/Koha/ILL/Requests.t To test (ILL request is kept after borrower is deleted): 1) Apply all patches except this one 2) Enable ILLModule and create an ILL request. 3) Add a type, valid cardnumber and library. 4) Delete the associated borrower. 5) Confirm the ILL request is still listed and shown as expected Continue test, confirm follow-up bug is fixed: 6) Click 'Place request with partners' 7) You get a ERR_TOO_MANY_REDIRECTS error 8) Apply this patch and restart plack. Repeat. 9) Confirm the place request with partners libraries page is shown correctly Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> Signed-off-by: Lisette Scheer <lisette@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #25 from Lisette Scheer <lisette@bywatersolutions.com> --- Created attachment 178883 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=178883&action=edit Bug 32630: Add tests prove t/db_dependent/Koha/ILL/Requests.t Sponsored-by: UKHSA - UK Health Security Agency Signed-off-by: Jeremy Evans <Jeremy.Evans@ukhsa.gov.uk> Signed-off-by: Lisette Scheer <lisette@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to main Version(s)| |25.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #26 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Pushed for 25.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 --- Comment #27 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- I'd be quite happy if this cold be considered for backporting to the 24.11 LTS release at least. (updating to be a bug, but leaving final decision to RMaint) -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal QA Contact| |lisette@bywatersolutions.co | |m -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Pedro Amorim <pedro.amorim@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |40057 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40057 [Bug 40057] Database update 24.12.00.017 fails if old ILL data points to non-existent borrowernumber -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Baptiste Wojtkowski (bwoj) <baptiste.wojtkowski@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |baptiste.wojtkowski@biblibr | |e.com Status|Pushed to main |Pushed to stable --- Comment #28 from Baptiste Wojtkowski (bwoj) <baptiste.wojtkowski@biblibre.com> --- Pushed to 24.11.x for 24.11.07 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Baptiste Wojtkowski (bwoj) <baptiste.wojtkowski@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|25.05.00 |25.05.00,24.11.07 released in| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |michaela.sieber@kit.edu -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wainuiwitikapark@catalyst.n | |et.nz Status|Pushed to stable |Needs documenting --- Comment #29 from Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz> --- Not backporting to 22.11 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david@davidnind.com Resolution|--- |FIXED Status|Needs documenting |RESOLVED --- Comment #30 from David Nind <david@davidnind.com> --- Bug fix, no changes to the manual required. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32630 Bug 32630 depends on bug 39175, which changed state. Bug 39175 Summary: Send request to partners explodes https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39175 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org