From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 00:10:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 31 May 2022 22:10:48 +0000 Subject: [Koha-bugs] [Bug 29777] Fields 580 are wrong displayed in summary column In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29777 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #3 from David Nind --- Just checking what is required here, as I'm not sure how it displays now f there are 580 entries and how it should display after the patch is applied. I'm not that familiar with authorities, so I'm not really sure how they should be "correctly" displayed. Screenshots of before and after would help. For me, if I add some 580 entries: - Displays in the summary column as "See also" and then the entries with a space between them. - This is the same before and after the patch is applied. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 00:34:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 31 May 2022 22:34:23 +0000 Subject: [Koha-bugs] [Bug 29554] neworderempty.pl may create records with biblioitems.itemtype NULL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29554 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |david at davidnind.com --- Comment #7 from David Nind --- The patch no longer applies 8-(... Also, just checking my understanding what is required here for testing. Is it that when adding to a basket "From a new (empty) record", that for the catalog details section the item type should be shown regardless of the setting for the item-level_itypes system preference? This is so that the record created has an item type, and it is not empty (which can cause issues elsewhere in Koha if it is NULL). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 02:53:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 00:53:53 +0000 Subject: [Koha-bugs] [Bug 29623] Cache circulation rules In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29623 --- Comment #18 from David Cook --- (In reply to Jonathan Druart from comment #15) > I think this is the correct approach, what do you think? I'm not 100% sure. I find that the code in ./admin/smart-rules.pl and Koha/CirculationsRules.pm is very messy. If we clear the cache after each set_rule() call, we'll be calling the function ~38 times (so 38 loops) for each add/update/delete in ./admin/smart-rules.pl. We should only need to call it 1 time for each CRUD operation. In terms of core code, it looks like Koha::CirculationRules->set_rule only gets called in Koha/CirculationRules.pm and once accidentally in ./admin/smart-rules.pl (it should use set_rules instead). We do call set_rule() a lot in the unit tests though. I suppose occasional inefficient cache setting/clearing in ./admin/smart-rules.pl is worth a performance speed up during frequent transactional work. In fact, since we're using the L1 cache and the L1 cache is flushed at the end of every HTTP/SIP request, clearing the cache (in ./admin/smart-rules.pl) is actually probably totally unnecessary for production purposes. The only time caching of circulation rules would be a potential problem is in the unit tests. So I'd say the cache clearing is messy but it's good enough. (Side note: the circulation_rules table has an "id" column, so we should be using that for for distinct update_rules/delete_rules operations.) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 03:01:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 01:01:02 +0000 Subject: [Koha-bugs] [Bug 29623] Cache circulation rules In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29623 --- Comment #19 from David Cook --- (In reply to Jonathan Druart from comment #15) > I think this is the correct approach, what do you think? Since we are clearing the cache via set_rule, there's probably no harm in using the L2 cache via Koha::Cache. Nick has already signed off this version though, and I think this one is good enough for now at least. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 03:02:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 01:02:51 +0000 Subject: [Koha-bugs] [Bug 29623] Cache circulation rules In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29623 --- Comment #20 from David Cook --- One last thing... we might want to rename this issue to be "Cache effective circulation rules" because that would be more accurate than "Cache circulation rules". We're not just saving a database call by caching. We're saving a database call that has embedded logic in it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 03:08:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 01:08:46 +0000 Subject: [Koha-bugs] [Bug 30182] background_jobs.status should be an ENUM In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30182 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 03:09:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 01:09:10 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 03:09:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 01:09:32 +0000 Subject: [Koha-bugs] [Bug 30570] Replace the use of jQueryUI tabs in OPAC templates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30570 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 03:11:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 01:11:17 +0000 Subject: [Koha-bugs] [Bug 29607] addorderiso2709: The stored discount when importing an order from a file is invalid In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29607 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |david at davidnind.com --- Comment #3 from David Nind --- I get this message when trying to apply the patch (using koha-testing-docker) - I think that this means the patch isn't correctly formatted, but I could be wrong: git bz apply 29607 Bug 29607 - addorderiso2709: The stored discount when importing an order from a file is invalid 128127 - Patch for the bug 29607 Apply? [(y)es, (n)o, (i)nteractive] y Traceback (most recent call last): File "/usr/bin/git-bz", line 2716, in applied = do_apply(bug_ref) File "/usr/bin/git-bz", line 1827, in do_apply users = bug.server.get_xmlrpc_proxy().User.get({ 'names': [patch.attacher] })['users'] File "/usr/lib/python2.7/xmlrpclib.py", line 1243, in __call__ return self.__send(self.__name, args) File "/usr/lib/python2.7/xmlrpclib.py", line 1602, in __request verbose=self.__verbose File "/usr/lib/python2.7/xmlrpclib.py", line 1283, in request return self.single_request(host, handler, request_body, verbose) File "/usr/lib/python2.7/xmlrpclib.py", line 1331, in single_request response.msg, xmlrpclib.ProtocolError: Testing notes ~~~~~~~~~~~~~ The QA Team will probably want the commit message formatted according to https://wiki.koha-community.org/wiki/Commit_messages I have drafted a test plan, based on the comments in the bug description. Bug 29607: Store the discount amount correctly when importing and order from a file This bug fixes how the discount amount for an order is stored, when an order is added to a basket using "From staged MARC records". Test plan: 1. Export a record (without the items) (Tools > Catalog > Export data). 2. Delete the record from the catalog (including any items). 3. Stage the record for import (Tools > Catalog > Stage MARC records for import). 4. Create a new vendor with a discount of 25%. (Or select and existing vendor that has a discount). (Acquisitions > New vendor) 5. Create a new basket for the vendor. (Acquisitions > Manage orders > search for vendors > New > Basket). 6. Add to the basket using "From a staged file": . select "Add orders" next to the staged file . select the record to add to the order . enter a price . leave the discount field blank . select a fund . select "Save" ==> The order is created! 7. Modify the order - note that the discount is showing on the form as .25% instead of 25%, also note that the discount amount is calculated correctly. 8. Check what is recorded in the database: . koha-mysql kohadev . select * from aqorders; ==> discount field for the basket item shows as 0.2500 9. Change the discount to 25%. Run step 8 again - discount amount will be correctly shown as 25.0000 10. Apply the patch. 11. Repeat steps 1-9 - discount amount is shown and calculated correctly. 12. Test modifying the discount amount - should be calculated and shown correctly. 13. Sign off! See additional comments in the bug description. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 03:24:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 01:24:46 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Michal Urban changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |michalurban177 at gmail.com Status|Needs Signoff |Signed Off --- Comment #7 from Michal Urban --- Testing procedure: - Enabled ShowComponentRecords - Added 3 child records to record "E Street" - There were varying biblionumbers for the child records, in the details of "E Street" they were not displayed in ascending biblionumber order, instead in the order they were attached. - Applied patch and refreshed page - Child record components displayed by ascending biblionumber order. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 03:28:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 01:28:55 +0000 Subject: [Koha-bugs] [Bug 23548] AQ field required in checkin response In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23548 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #2 from David Nind --- I'm not familiar with SIP2, but I would like to test. Are you able to provide a test plan similar to bug 26871 or bug 20517? Ideally with the commands to give, and the responses expected. Thanks! -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 03:43:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 01:43:37 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #8 from David Nind --- >From IRC - oleonard, there is a component parts sample record attached to bug 11175 http://irc.koha-community.org/koha/2022-06-01#i_2427405 If you are using koha-testing-docker to sign off, these are the steps I normally use (once .env file for koha-testing-docker is setup with Bugzillar information) - this is so that your sign-off is added to the patch, and appears on the dashboard: 1. git bz apply bug-number 2. Test and make sure things work as per the test plan. 3. git so 1 4. git bz attach -e bug-number HEAD~1.. 5. Remove the # in front of the signoff line (note that there is text added after the test plan, for example: "Signed-off-by: David Nind "), the :wq Notes: - If more than one patch, change: . git so 1 to the number of patches, for example: git so 2 . HEAD~1.. to the number of patches, for example: HEAD~2.. - see my cheat sheet https://gitlab.com/-/snippets/1893788 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 04:30:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 02:30:44 +0000 Subject: [Koha-bugs] [Bug 30873] New: "Libraries" link on OPAC should be hideable by system preference Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30873 Bug ID: 30873 Summary: "Libraries" link on OPAC should be hideable by system preference Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: dcook at prosentient.com.au QA Contact: testopia at bugs.koha-community.org Most of my libraries don't want to show the "Libraries" link on the OPAC. While you can hide it using Javascript, it's not a very elegant solution. There should be a system preference to hide it (like every other option on that nav bar besides "Advanced search"). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 04:30:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 02:30:56 +0000 Subject: [Koha-bugs] [Bug 30873] "Libraries" link on OPAC should be hideable by system preference In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30873 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |13388 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13388 [Bug 13388] Add library pages to the OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 04:30:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 02:30:56 +0000 Subject: [Koha-bugs] [Bug 13388] Add library pages to the OPAC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13388 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30873 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30873 [Bug 30873] "Libraries" link on OPAC should be hideable by system preference -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 08:03:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 06:03:36 +0000 Subject: [Koha-bugs] [Bug 26368] Add support for OCLC Encoding level values In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26368 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Status|Needs Signoff |Patch doesn't apply --- Comment #5 from David Nind --- Patch no longer applies 8-(.. git bz apply 26368 Bug 26368 - Add support for OCLC Encoding level values 120209 - Bug 26368: Add OCLC options to marc21_leader.tt Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 26368: Add OCLC options to marc21_leader.tt Using index info to reconstruct a base tree... M installer/data/mysql/mandatory/sysprefs.sql M koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref M koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_leader.tt Falling back to patching base and 3-way merge... Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_leader.tt Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref Auto-merging installer/data/mysql/mandatory/sysprefs.sql CONFLICT (content): Merge conflict in installer/data/mysql/mandatory/sysprefs.sql error: Failed to merge in the changes. Patch failed at 0001 Bug 26368: Add OCLC options to marc21_leader.tt -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 08:14:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 06:14:40 +0000 Subject: [Koha-bugs] [Bug 28301] Add ability to force re-run of a particular DB update In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28301 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #10 from David Nind --- Is this bug still relevant (from the comments)? If it is, I will have a go at testing... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 08:55:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 06:55:17 +0000 Subject: [Koha-bugs] [Bug 29623] Cache circulation rules In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29623 --- Comment #21 from Jonathan Druart --- (In reply to David Cook from comment #18) > (In reply to Jonathan Druart from comment #15) > > I think this is the correct approach, what do you think? > > I'm not 100% sure. > > I find that the code in ./admin/smart-rules.pl and Koha/CirculationsRules.pm > is very messy. Let's say all our code is messy and so we don't need to tell it every week, deal? > If we clear the cache after each set_rule() call, we'll be calling the > function ~38 times (so 38 loops) for each add/update/delete in > ./admin/smart-rules.pl. We should only need to call it 1 time for each CRUD > operation. We could add a flag to set_rule to not clear the cache, and clear it from set_rules. Would that work for you? > In fact, since we're using the L1 cache and the L1 cache is flushed at the > end of every HTTP/SIP request, clearing the cache (in > ./admin/smart-rules.pl) is actually probably totally unnecessary for > production purposes. Seems a good practices to invalided the cache when the value might have changed. That will prevent bugs in the future. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 08:55:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 06:55:39 +0000 Subject: [Koha-bugs] [Bug 29623] Cache effective circulation rules In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29623 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Cache circulation rules |Cache effective circulation | |rules --- Comment #22 from Jonathan Druart --- (In reply to David Cook from comment #20) > One last thing... we might want to rename this issue to be "Cache effective > circulation rules" because that would be more accurate than "Cache > circulation rules". Done. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 08:57:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 06:57:34 +0000 Subject: [Koha-bugs] [Bug 28301] Add ability to force re-run of a particular DB update In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28301 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |RESOLVED Resolution|--- |INVALID --- Comment #11 from Jonathan Druart --- I don't think so. Nick, please reopen if you disagree. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:01:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:01:12 +0000 Subject: [Koha-bugs] [Bug 29623] Cache effective circulation rules In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29623 --- Comment #23 from David Cook --- (In reply to Jonathan Druart from comment #21) > Let's say all our code is messy and so we don't need to tell it every week, > deal? Hehe deal. > We could add a flag to set_rule to not clear the cache, and clear it from > set_rules. Would that work for you? I thought about that but the existing patches are already signed off, so it's probably not a necessary optimization at this point. > > In fact, since we're using the L1 cache and the L1 cache is flushed at the > > end of every HTTP/SIP request, clearing the cache (in > > ./admin/smart-rules.pl) is actually probably totally unnecessary for > > production purposes. > > Seems a good practices to invalided the cache when the value might have > changed. That will prevent bugs in the future. Agreed. -- Overall, I don't see any blocks/fails for this one. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:13:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:13:19 +0000 Subject: [Koha-bugs] [Bug 23548] AQ field required in checkin response In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23548 --- Comment #3 from Stefan Berndtsson --- (In reply to David Nind from comment #2) > I'm not familiar with SIP2, but I would like to test. I don't have an instance without the patch near me at the moment that can run SIP commands, but it should be something like (tweak credentials and such as needed): Barcode 123123123 is a barcode that is not in the database. 1. Have SIP-server running 2. ./sip_cli_emulator.pl -m checkin -a localhost -p 6001 -l 123 -su sipuser -sp sippass -t CR --item 123123123 3. See that AQ is missing completely. 4. Apply patch 5. Run same command again. 6. See that AQ| is present. That is the expected situation, but as mentioned, I haven't tested the non-patched version. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:19:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:19:00 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 --- Comment #205 from Jonathan Druart --- > Bug 12446: Schema update Category.pm Please note that you must provide the specific change (is_boolean part) in a separate patch. The workflow is: * run `dbic` * commit with "DBIC changes" (this patch won't be pushed by the RM, they will regenerate it themselves) * Edit the schema files and add what you need below the "DO NOT MODIFY" line * commit (ideally with "DBIC specific" or similar) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:21:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:21:26 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 --- Comment #206 from Jonathan Druart --- (In reply to Shi Yao Wang from comment #204) > (In reply to Jonathan Druart from comment #196) > > Can you please review the whole patch set carefully to make it ready for QA? > > > > It took me 3 min to catch trivial errors: > > * merge marker > > +<<<<<<< HEAD > > > > * installer/data/mysql/nb-NO/2-Valgfritt/patron_categories.sql > > has been removed, this patch set reintroduce it > > > > * in members/memberentry.pl there are 2 calls to search_with_library_limits > > > > * still memberentry.pl > > You are adding yet another fetch of the patron category: > > Koha::Patron::Categories->find > > It's fetched several times already in the same script > > > > * t/db_dependent/Patrons.t l.206: extra spaces > > Fixed mentioned errors except "Koha::Patron::Categories->find". It would > require a new variable near the beginning of the script (after "my > $categorycode ...") that stores > "Koha::Patron::Categories->find($categorycode)" and would also require > changing every place where the script uses it for consistency. I don't know > if it's a good idea to do it here. Maybe a separate bug? Agreed, please open it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:24:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:24:43 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:30:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:30:07 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:30:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:30:18 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135506|0 |1 is obsolete| | Attachment #135507|0 |1 is obsolete| | Attachment #135508|0 |1 is obsolete| | Attachment #135510|0 |1 is obsolete| | Attachment #135511|0 |1 is obsolete| | Attachment #135512|0 |1 is obsolete| | --- Comment #207 from Jonathan Druart --- Created attachment 135519 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135519&action=edit Bug 12446: Ability to allow guarantor relationship for all patron category types This adds a new field "Can be guarantee" to patron categories so it becomes possible for any category type to have a guarantor. To test: 1) Have a patron category of type 'Adult' and one of type 'Child' 2) Confirm, by searching for the "Patron guarantor" fieldset in the edit/create form, that: => a patron of the first category can't have a guarantor => a patron from the second category can 3) Apply patch and run updatedatabase.pl 4) Edit the categories and note the new "Can be guarantee" field 5) It should have been set to "yes" for the "Child" and to "no" for the "Adult" 5) Repeat step 2. It should behave in the same way. 6) Edit the "Can be guarantee" for any of the category and check that the fieldset only appears when "Can be guarantee" is set to "yes" 7) prove t/db_dependent/Patrons.t => tests should still pass Signed-off-by: David Nind Signed-off-by: Kyle M Hall Signed-off-by: David Nind Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:30:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:30:29 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 --- Comment #208 from Jonathan Druart --- Created attachment 135520 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135520&action=edit Bug 12446: Schema update Category.pm Signed-off-by: David Nind Signed-off-by: Kyle M Hall Signed-off-by: David Nind Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:30:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:30:39 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 --- Comment #209 from Jonathan Druart --- Created attachment 135521 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135521&action=edit Bug 12446: Limit available categories when using "Add guarantee" button Test plan: 1) Have some patron categories that can and cannot be guarantee 2) Visit a patron's account and click the "Add guarantee" button 3) In the "category" dropdown, note that all categories are available 4) Apply this patch 5) Repeat step 2 and 3; the dropdown now only contains the categories for which "can be guarantee" is set to "Yes". Signed-off-by: Kyle M Hall Signed-off-by: David Nind Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:30:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:30:49 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 --- Comment #210 from Jonathan Druart --- Created attachment 135522 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135522&action=edit Bug 12446: Fix typos Signed-off-by: Owen Leonard JD Amended patch: squashed and edited commit message Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:30:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:30:59 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 --- Comment #211 from Jonathan Druart --- Created attachment 135523 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135523&action=edit Bug 12446: Add canbeguarantee value to patron categories sample data This patch changes sample data so patron categories of type 'C' or 'P' can be guarantees by default. Signed-off-by: Salman Ali Signed-off-by: Salman Ali Signed-off-by: David Nind Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 09:49:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 07:49:50 +0000 Subject: [Koha-bugs] [Bug 10950] Add preferred pronoun field to patron record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950 Ray Delahunty changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |r.delahunty at arts.ac.uk --- Comment #10 from Ray Delahunty --- Following a number of complaints relating to gender self-identity we have changed our data feed from the university registry system to pull the 'Preferred name' rather than the 'Given name' from that system and use that to populate the borrowers.firstname . When we move to using API available in 21.05 we will also be massively trimming back what is included in the borrowers table and will be removing title and sex (for example) as they are not relevant to the services we provide. We are being offered a 'personal pronoun' and I think we will store this in borrowers.sort1 for now, and display it to library staff. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 10:08:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 08:08:39 +0000 Subject: [Koha-bugs] [Bug 30874] New: Simplify patron category handling in memberentry Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 Bug ID: 30874 Summary: Simplify patron category handling in memberentry Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: jonathan.druart+koha at gmail.com Reporter: jonathan.druart+koha at gmail.com QA Contact: testopia at bugs.koha-community.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 10:09:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 08:09:36 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30874 --- Comment #212 from Jonathan Druart --- (In reply to Jonathan Druart from comment #206) > (In reply to Shi Yao Wang from comment #204) > > Fixed mentioned errors except "Koha::Patron::Categories->find". It would > > require a new variable near the beginning of the script (after "my > > $categorycode ...") that stores > > "Koha::Patron::Categories->find($categorycode)" and would also require > > changing every place where the script uses it for consistency. I don't know > > if it's a good idea to do it here. Maybe a separate bug? > > Agreed, please open it. Done, see bug 30874 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 [Bug 30874] Simplify patron category handling in memberentry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 10:09:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 08:09:36 +0000 Subject: [Koha-bugs] [Bug 30874] Simplify patron category handling in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |12446 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 [Bug 12446] Enable an adult to have a guarantor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 10:10:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 08:10:50 +0000 Subject: [Koha-bugs] [Bug 30874] Simplify patron category handling in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 --- Comment #1 from Jonathan Druart --- Created attachment 135524 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135524&action=edit Bug 30874: Replace categoryname -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 10:10:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 08:10:54 +0000 Subject: [Koha-bugs] [Bug 30874] Simplify patron category handling in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 --- Comment #2 from Jonathan Druart --- Created attachment 135525 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135525&action=edit Bug 30874: Reduce number of category fetches -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 10:10:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 08:10:58 +0000 Subject: [Koha-bugs] [Bug 30874] Simplify patron category handling in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 --- Comment #3 from Jonathan Druart --- Created attachment 135526 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135526&action=edit Bug 30874: 2 more - need more investigation -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 10:11:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 08:11:02 +0000 Subject: [Koha-bugs] [Bug 30874] Simplify patron category handling in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 --- Comment #4 from Jonathan Druart --- Created attachment 135527 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135527&action=edit Bug 30874: Simplify categories loop construction -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 10:12:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 08:12:29 +0000 Subject: [Koha-bugs] [Bug 30874] Simplify patron category handling in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |In Discussion --- Comment #5 from Jonathan Druart --- Fancy a code golf? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 10:29:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 08:29:34 +0000 Subject: [Koha-bugs] [Bug 30874] Simplify patron category handling in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135527|0 |1 is obsolete| | --- Comment #6 from Jonathan Druart --- Created attachment 135528 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135528&action=edit Bug 30874: Simplify categories loop construction -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 10:29:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 08:29:39 +0000 Subject: [Koha-bugs] [Bug 30874] Simplify patron category handling in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 --- Comment #7 from Jonathan Druart --- Created attachment 135529 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135529&action=edit Bug 30874: Remove category_type In which case do we pass category_type to this script? Am I missing something? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 11:45:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 09:45:47 +0000 Subject: [Koha-bugs] [Bug 30077] Add option for library dropdown in search function for staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30077 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 11:45:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 09:45:54 +0000 Subject: [Koha-bugs] [Bug 30077] Add option for library dropdown in search function for staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30077 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131544|0 |1 is obsolete| | --- Comment #17 from David Nind --- Created attachment 135530 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135530&action=edit Bug 30077: Add system preference IntranetAddMastheadLibraryPulldown To test: 1. Apply patch, updatedatabase, restart_all 2. Search for the system pref 'IntranetAddMastheadLibraryPulldown' 3. Set it to 'Show'. 4. Go to any page that contains header search box and click on 'Search the catalog'. 5. To the left of the search bar you should see a dropdown for branches. 6. This should be defaulted to 'All libraries'. 7. In the dropdown choose any branch and do a search and make sure it is correctly limiting to that branch. 8. Try changing to a different branch and doing another search. It should correcrly limit to that branch BUT it should also default back to 'All libraries' for the next search. 9. Try selecting 'All libraries' from the top of the dropdown and make sure it is correctly searching all branches. 10. Turn on the system pref 'IntranetCatalogSearchPulldown' and make sure it looks nice with both of those dropdowns and functions when you use limiters from both dropdowns. Signed-off-by: Sally Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 11:46:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 09:46:00 +0000 Subject: [Koha-bugs] [Bug 30077] Add option for library dropdown in search function for staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30077 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #132982|0 |1 is obsolete| | --- Comment #18 from David Nind --- Created attachment 135531 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135531&action=edit Bug 30077: (follow-up) retain branch selection To test: 1. Apply patch, updatedatabase, restart_all 2. Search for the system pref 'IntranetAddMastheadLibraryPulldown' 3. Set it to 'Show'. 4. Go to any page that contains header search box and click on 'Search the catalog'. 5. To the left of the search bar you should see a dropdown for branches. 6. This should be defaulted to 'All libraries'. 7. In the dropdown choose any branch and do a search and make sure it is correctly limiting to that branch. 8. Try changing to a different branch and doing another search. It should correcrly limit to that branch and retain that branch in the dropdown, just like the OPAC. 9. Try selecting 'All libraries' from the top of the dropdown and make sure it is correctly searching all branches. 10. Turn on the system pref 'IntranetCatalogSearchPulldown' and make sure it looks nice with both of those dropdowns and functions when you use limiters from both dropdowns. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 1 11:46:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 01 Jun 2022 09:46:08 +0000 Subject: [Koha-bugs] [Bug 30077] Add option for library dropdown in search function for staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30077 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133037|0 |1 is obsolete| | --- Comment #19 from David Nind --- Created attachment 135532 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135532&action=edit Bug 30077: (follow-up) Set max width for library drapdown If you have a library with a very long name the dropdown will expand to accommodate it. I think this is awkward-looking, so I propose to set a max width on + Select all [% INCLUDE 'recalls.inc' %]
> 3. Once a recall is made, and checked in: > . From Circulation > Recalls > Recalls to pull: select "Cancel recall and > return to: Centerville: generates this error: > > DBIx::Class::Storage::DBI::_dbh_execute(): DBI Exception: DBD::mysql::st > execute failed: Data truncated for column 'reason' at row 1 at > /kohadevbox/koha/Koha/Object.pm line 170 > at /usr/share/perl5/DBIx/Class/Exception.pm line 77 > ..... branchtransfers.cancellation_reason does not contain 'RecallCancellation' (but 'CancelRecall') -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:15:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:15:11 +0000 Subject: [Koha-bugs] [Bug 30975] New: Framework plugins do not work on cloned fields/subfields Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30975 Bug ID: 30975 Summary: Framework plugins do not work on cloned fields/subfields Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: ASSIGNED Severity: major Priority: P5 - low Component: Cataloging Assignee: julian.maurice at biblibre.com Reporter: julian.maurice at biblibre.com QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl Depends on: 29155 Since bug 29155 (Upgrade jquery version to 3.6.0) framework plugins do not work on a cloned field/subfield. That is because we rely on jQuery's `.data('events')` to clone event handlers to the cloned elements, and that was removed in jQuery 1.8.0 (I did not confirm but it's possible it continued to work after that thanks to jQuery Migrate) Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29155 [Bug 29155] Upgrade jquery version to 3.6.0 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:15:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:15:11 +0000 Subject: [Koha-bugs] [Bug 29155] Upgrade jquery version to 3.6.0 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29155 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30975 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30975 [Bug 30975] Framework plugins do not work on cloned fields/subfields -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:16:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:16:43 +0000 Subject: [Koha-bugs] [Bug 30975] Framework plugins do not work on cloned fields/subfields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30975 --- Comment #1 from Julian Maurice --- Created attachment 136135 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136135&action=edit Bug 30975: Fix framework plugins not working on cloned fields/subfields Since bug 29155 (Upgrade jquery version to 3.6.0) framework plugins do not work on a cloned field/subfield. That is because we rely on jQuery's `.data('events')` to clone event handlers to the cloned elements, and that was removed in jQuery 1.8.0 (I did not confirm but it's possible it continued to work after that thanks to jQuery Migrate) It is apparently still possible to access these event handlers by using `jQuery._data(element, "events")` but here's what jQuery 1.8.0 release notes says about it: "this is not a supported public interface; the actual data structures may change incompatibly from version to version." So we should not rely on it. Instead, what this patch does is use event delegation [1]. Events are bound to a parent container, so when elements are added dynamically inside that container, we don't need to re-attach event handlers manually This patch also comes with a bit of cleanup, and introduce "breaking changes" (they are breaking changes only if you happen to have custom framework plugins): 1) Only 'click', 'focus' and 'blur' events are listened to now. They are the only ones we use, and the only ones we actually need. Events removed: change, mouseover, mouseout, mousedown, mouseup, mousemove, keydown, keypress, keyup. If you ever need one of those, you can still add event listeners in the 'focus' event handler, and remove them in the 'blur' event handler 2) Event handlers now takes a single parameter that is an Event object It just makes the code a lot less complicated. All framework plugins have been updated 3) Event handlers do not pollute the global scope anymore [1] https://learn.jquery.com/events/event-delegation/ Test plan: - Go to every page that has a MARC editor and verify that plugins still work. This includes addbiblio.pl, additem.pl, authorities.pl, neworderempty.pl, orderreceive.pl - Test plugins that use 'focus' event (for instance barcode.pl), 'blur' event (callnumber.pl) and 'click' event (almost all the others) - Test that plugins work on cloned fields/subfields -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:16:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:16:59 +0000 Subject: [Koha-bugs] [Bug 30975] Framework plugins do not work on cloned fields/subfields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30975 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:29:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:29:05 +0000 Subject: [Koha-bugs] [Bug 30946] Error in database update 21.12.00.048 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30946 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #15 from Jonathan Druart --- Update your system and it should fix the problem. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:41:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:41:53 +0000 Subject: [Koha-bugs] [Bug 30961] Table Settings Reports table_reports Group and Subgroup does not work In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30961 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha at gmail. | |com --- Comment #1 from Jonathan Druart --- It seems to work on the first tab 'All', not the others. Is that what you are noticing as well? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:50:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:50:29 +0000 Subject: [Koha-bugs] [Bug 30970] holdst columns don't match actual columns in 'Holds waiting' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30970 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha at gmail. | |com --- Comment #1 from Jonathan Druart --- Looks ok for me on master. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:50:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:50:58 +0000 Subject: [Koha-bugs] [Bug 30954] includes/background_jobs_update_elastic_index.inc must be removed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30954 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136023|0 |1 is obsolete| | --- Comment #2 from Martin Renvoize --- Created attachment 136136 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136136&action=edit Bug 30954: (bug 27344 follow-up) Remove background_jobs_update_elastic_index.inc includes/background_jobs_update_elastic_index.inc vs includes/background_jobs/update_elastic_index.inc Both exist and have been added by bug 27344. The first one is not used. Test plan: git grep background_jobs_update_elastic_index.inc must not return any occurrences (outside of POs) Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:51:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:51:20 +0000 Subject: [Koha-bugs] [Bug 30954] includes/background_jobs_update_elastic_index.inc must be removed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30954 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |martin.renvoize at ptfs-europe | |.com --- Comment #3 from Martin Renvoize --- Trivial fix, straight PQA from me :) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:51:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:51:26 +0000 Subject: [Koha-bugs] [Bug 30954] includes/background_jobs_update_elastic_index.inc must be removed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30954 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:54:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:54:04 +0000 Subject: [Koha-bugs] [Bug 30974] Job size not correct for indexing jobs In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30974 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136126|0 |1 is obsolete| | --- Comment #2 from Martin Renvoize --- Created attachment 136137 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136137&action=edit Bug 30974: Set size for indexing jobs to 1 job's size is the number of records to index, but when finished the progress is always set to 1. Wich leads to: finished 1/42 Test plan: Don't apply this patch Use the batch item modification tool to update more than 1 item Notice that the new indexing job has a size of the number of items you modified When finished, the job detail shows "Finished. 1/X" Apply this patch, repeat Notice that now the progress shows 0/1 before the job is done, then 1/1 when finished Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:54:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:54:28 +0000 Subject: [Koha-bugs] [Bug 30974] Job size not correct for indexing jobs In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30974 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |martin.renvoize at ptfs-europe | |.com --- Comment #3 from Martin Renvoize --- Another trivial fix, works as described. Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:54:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:54:34 +0000 Subject: [Koha-bugs] [Bug 30974] Job size not correct for indexing jobs In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30974 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:54:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:54:38 +0000 Subject: [Koha-bugs] [Bug 30974] Job size not correct for indexing jobs In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30974 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:55:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:55:44 +0000 Subject: [Koha-bugs] [Bug 30973] Serials search wrong body id In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30973 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136125|0 |1 is obsolete| | --- Comment #2 from Martin Renvoize --- Created attachment 136138 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136138&action=edit Bug 30973: Serials search fix body id The serials search page serials/serials-search.pl has HTML body id : It is the same as serials home page. This patch replaces with id="ser_serials-search" Test plan : 1) Go to Serials > Advanced search 2) Look at HTML code 3) Check you see Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:56:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:56:16 +0000 Subject: [Koha-bugs] [Bug 30973] Serials search wrong body id In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30973 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:56:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:56:39 +0000 Subject: [Koha-bugs] [Bug 30973] Serials search wrong body id In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30973 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #3 from Martin Renvoize --- Trivial improvement, no JS functions or CSS tied to the original ID.. Straight PQA from me. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:56:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:56:45 +0000 Subject: [Koha-bugs] [Bug 30973] Serials search wrong body id In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30973 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:57:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:57:21 +0000 Subject: [Koha-bugs] [Bug 30975] Framework plugins do not work on cloned fields/subfields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30975 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=3544 CC| |jonathan.druart+koha at gmail. | |com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:57:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:57:21 +0000 Subject: [Koha-bugs] [Bug 3544] Value builder plug-ins don't work with repeatable subfields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3544 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30975 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:59:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:59:55 +0000 Subject: [Koha-bugs] [Bug 30971] Recalls - log viewer error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30971 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136121|0 |1 is obsolete| | --- Comment #11 from Martin Renvoize --- Created attachment 136139 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136139&action=edit Bug 30971: Recalls log viewer error This patch addresses the itemnumber and biblionumber attributes for recalls having been renamed. Signed-off-by: Tomas Cohen Arazi Signed-off-by: David Nind Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 11:59:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 09:59:59 +0000 Subject: [Koha-bugs] [Bug 30971] Recalls - log viewer error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30971 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136122|0 |1 is obsolete| | --- Comment #12 from Martin Renvoize --- Created attachment 136140 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136140&action=edit Bug 30971: (follow-up) Fix one more occurence To test: 1. Run: $ git grep 'recall.itemnumber' => SUCCESS: No more occurences 2. Run: $ git grep 'recall.biblionumber' => SUCCESS: No more occurences 3. Run: $ git grep 'recall\->biblionumber' => SUCCESS: No more occurences 4. Run: $ git grep 'recall\->itemnumber' => FAIL: One standing occurence 5. Apply this patch 6. Repeat 4 => SUCCESS: No more occurences 7. Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: David Nind Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:00:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:00:03 +0000 Subject: [Koha-bugs] [Bug 30971] Recalls - log viewer error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30971 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136123|0 |1 is obsolete| | --- Comment #13 from Martin Renvoize --- Created attachment 136141 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136141&action=edit Bug 30971: (follow-up) Fix recall.branchcode occurences This fixes a couple cases actually. Signed-off-by: Tomas Cohen Arazi Signed-off-by: David Nind Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:00:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:00:35 +0000 Subject: [Koha-bugs] [Bug 30971] Recalls - log viewer error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30971 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA CC| |martin.renvoize at ptfs-europe | |.com --- Comment #14 from Martin Renvoize --- All works as expected now, thanks for following through on all this Tomas. PQA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:02:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:02:50 +0000 Subject: [Koha-bugs] [Bug 30931] Handling of items.dateaccessioned in the item editor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30931 --- Comment #8 from Alex Buckley --- (In reply to Heather from comment #7) > Hi! > > Thank you for bringing this bug to the attention of the Koha-US CatSIG! I > don't have a strong opinion on this behavior, but I'll monitor this bug & > see if discussion is generated, and be sure that any discussion on the > CatSIG email list makes its way into comments here--and if there isn't any > discussion and the bug is still under discussion by our next meeting (July > 7, 2022), I'll bring it up in the meeting to call additional attention to it > & encourage commenting here. > > Cheerio! > h2 Thanks very much Heather, much appreciated! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:03:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:03:27 +0000 Subject: [Koha-bugs] [Bug 23450] Display issue and subscription price for each issue in subscription tab of /catalogue/detail.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23450 Alex Buckley changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |ASSIGNED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:03:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:03:57 +0000 Subject: [Koha-bugs] [Bug 30971] Recalls - log viewer error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30971 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:06:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:06:55 +0000 Subject: [Koha-bugs] [Bug 29963] Date accessioned plugin should not automatically fill today's date on cataloguing screens In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29963 --- Comment #33 from Alex Buckley --- (In reply to Alex Buckley from comment #32) > I have shifted Martin's and my patches to bug 30931 to keep this bug report, > hopefully, focused on reverting bug 29815 as quickly as possible. > > Discussion around how the community would like the item editor to handle the > dateaccessioned field is very welcome on bug 30931 :) Hi Katrin, Martin and others who may know, As I wrote the original patch 29815 am I allowed to sign off the patch on this ticket - which is reverting 29815? I had assumed not, but I just wanted to check :) Alex -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:10:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:10:17 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers do not appear in the administrative interface, unless their home library is the same as the one selected by the user upon entry. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131430|0 |1 is obsolete| | --- Comment #21 from Jonathan Druart --- Created attachment 136142 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136142&action=edit Bug 30234: Fix local cover image display for other holdings Bug 26145 added the ability to add local cover images to items. If SeparateHoldings is set, items from other libraries are displayed in a separate tab, and not considered as visible. We have a JS test to assume that images not shown are not present, this only apply for the images for the bibliographic record, as they can come from different sources. Test plan: Turn on LocalCoverImages and SeparateHoldings Create a record with different items coming from different libraries Attach images to items and to the biblio Notice that with this patch you can see the images from the "Other holdings" tab -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:11:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:11:02 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers do not appear in the administrative interface, unless their home library is the same as the one selected by the user upon entry. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major --- Comment #22 from Jonathan Druart --- Looks like without this patch we don't even see the cover images for the item in 'Holdings'. Upping severity. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:11:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:11:55 +0000 Subject: [Koha-bugs] [Bug 30938] Add column configuration to the acquisitions home page In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30938 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135977|0 |1 is obsolete| | --- Comment #3 from Martin Renvoize --- Created attachment 136143 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136143&action=edit Bug 30938: Convert ColumnSettings to TableSettings To test: 1. Apply this patch 2. Go to /cgi-bin/koha/acqui/acqui-home.pl 3. The columns button should be restored, make sure you can hide/show columns correctly. 4. Go to Table settings and make sure you can hide columns properly by default. Signed-off-by: David Nind Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:12:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:12:22 +0000 Subject: [Koha-bugs] [Bug 30938] Add column configuration to the acquisitions home page In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30938 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA CC| |martin.renvoize at ptfs-europe | |.com --- Comment #4 from Martin Renvoize --- Trivial fix to rebase issue with first submission. Works as expected.. PQA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:12:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:12:29 +0000 Subject: [Koha-bugs] [Bug 30938] Add column configuration to the acquisitions home page In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30938 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:13:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:13:15 +0000 Subject: [Koha-bugs] [Bug 30973] Serials search wrong body id In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30973 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:13:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:13:18 +0000 Subject: [Koha-bugs] [Bug 30973] Serials search wrong body id In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30973 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136138|0 |1 is obsolete| | --- Comment #4 from David Nind --- Created attachment 136144 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136144&action=edit Bug 30973: Serials search fix body id The serials search page serials/serials-search.pl has HTML body id : It is the same as serials home page. This patch replaces with id="ser_serials-search" Test plan : 1) Go to Serials > Advanced search 2) Look at HTML code 3) Check you see Signed-off-by: Martin Renvoize Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:13:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:13:54 +0000 Subject: [Koha-bugs] [Bug 30973] Serials search wrong body id In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30973 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:29:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:29:07 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |jonathan.druart+koha at gmail. |ity.org |com CC| |jonathan.druart+koha at gmail. | |com Version|22.05 |unspecified Depends on| |30234 Status|NEW |ASSIGNED --- Comment #1 from Jonathan Druart --- Are talking about cover images you attached to an *item* (vs bibliographic record)? This feature has been added by bug 26145 and is not in Koha "for years" ;) Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 [Bug 30234] Serial local covers do not appear in the administrative interface, unless their home library is the same as the one selected by the user upon entry. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:29:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:29:07 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers do not appear in the administrative interface, unless their home library is the same as the one selected by the user upon entry. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30972 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:32:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:32:51 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:32:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:32:55 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 --- Comment #2 from Jonathan Druart --- Created attachment 136145 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136145&action=edit Bug 30972: Don't replace biblio's local cover images when uploading an image's image When attaching a new cover image to an item we should not replace cover images attached to the bibliographic record if "Replace existing covers" is ticked. Test plan: Attach 1+ image to a bibliographic record Attach 1 image to an item of this biblio Attach another image to the item and seect "replace existing covers" => Without this patch the images attached to the biblio are removed => With this patch applied only the images attached to the image are removed Same if you tick the checkbox when attaching an image to the biblio -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:33:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:33:24 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:35:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:35:06 +0000 Subject: [Koha-bugs] [Bug 30976] New: Cover images for biblio should be displayed first Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30976 Bug ID: 30976 Summary: Cover images for biblio should be displayed first Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: normal Priority: P5 - low Component: Cataloging Assignee: jonathan.druart+koha at gmail.com Reporter: jonathan.druart+koha at gmail.com QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl If one add cover images at item's level, then biblio level, the cover images of the items are displayed first on the main "cover slider" at the top of the page. We should displayed biblio cover images first, then the ones for the items. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:35:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:35:43 +0000 Subject: [Koha-bugs] [Bug 30976] Cover images for biblio should be displayed first In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30976 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:35:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:35:47 +0000 Subject: [Koha-bugs] [Bug 30976] Cover images for biblio should be displayed first In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30976 --- Comment #1 from Jonathan Druart --- Created attachment 136146 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136146&action=edit Bug 30976: Display biblio's cover images first If one add cover images at item's level, then biblio level, the cover images of the items are displayed first on the main "cover slider" at the top of the page. We should displayed biblio cover images first, then the ones for the items. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:35:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:35:56 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30976 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:35:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:35:56 +0000 Subject: [Koha-bugs] [Bug 30976] Cover images for biblio should be displayed first In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30976 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30972 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:36:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:36:14 +0000 Subject: [Koha-bugs] [Bug 30976] Cover images for biblio should be displayed first In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30976 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30234 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 [Bug 30234] Serial local covers do not appear in the administrative interface, unless their home library is the same as the one selected by the user upon entry. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:36:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:36:14 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers do not appear in the administrative interface, unless their home library is the same as the one selected by the user upon entry. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30976 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30976 [Bug 30976] Cover images for biblio should be displayed first -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:39:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:39:29 +0000 Subject: [Koha-bugs] [Bug 30871] Make it clear that 008 Type of Material is controlled by Leader 6th position in MARC21 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30871 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135517|0 |1 is obsolete| | --- Comment #6 from Martin Renvoize --- Created attachment 136147 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136147&action=edit Bug 30871: Add/expand title text for LDR/06 and 008 Type of material This patch simply adds title elements or clarifies existing title elements to indicate how default values are chosen To test: 1 - Create new record in default editor 2 - Open leader helper, hover over "6-Type of record" and the dropdown 3 - Confirm notes make sense 4 - Open 008 helper 5 - Hover over 'Type of Material' and dropdown 6 - Confirm notes make sense Signed-off-by: David Nind Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:39:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:39:33 +0000 Subject: [Koha-bugs] [Bug 30871] Make it clear that 008 Type of Material is controlled by Leader 6th position in MARC21 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30871 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135518|0 |1 is obsolete| | --- Comment #7 from Martin Renvoize --- Created attachment 136148 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136148&action=edit Bug 30871: Add notes in advanced cataloging editor This is the same as preevious patch, but for advanced cataloging editor To test: 1 - Enable EnableAdvancedCatalogingEditor 2 - Create a new record in advanced edtior 3 - Hover over leader6 and 008 type 4 - Confirm notes are useful Signed-off-by: David Nind Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:39:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:39:47 +0000 Subject: [Koha-bugs] [Bug 30871] Make it clear that 008 Type of Material is controlled by Leader 6th position in MARC21 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30871 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:39:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:39:52 +0000 Subject: [Koha-bugs] [Bug 30871] Make it clear that 008 Type of Material is controlled by Leader 6th position in MARC21 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30871 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:40:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:40:02 +0000 Subject: [Koha-bugs] [Bug 30871] Make it clear that 008 Type of Material is controlled by Leader 6th position in MARC21 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30871 --- Comment #8 from Martin Renvoize --- Simple improvement, passing qa -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:43:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:43:04 +0000 Subject: [Koha-bugs] [Bug 27697] Opening bibliographic record page prepopulates search bar text In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27697 --- Comment #10 from Jonathan Druart --- This adds a new warning in the log [2022/06/16 10:31:18] [WARN] CGI::param called in list context from /kohadevbox/koha/catalogue/detail.pl line 626, this can lead to vulnerabilities. See the warning in "Fetching the value or values of a single named parameter" at /usr/share/perl5/CGI.pm line 414. It should be $template->param(found1 => scalar $query->param('found1') ); -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:47:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:47:37 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30822 --- Comment #16 from Jonathan Druart --- (In reply to Jonathan Druart from comment #14) > Created attachment 136129 [details] [review] > Bug 27421: Enqueue only one job for indexing > > Might need to be backported. This is actually bug 30822. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 [Bug 30822] BatchCommit does not deal with indexation correctly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:47:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:47:37 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |27421 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:49:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:49:42 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 --- Comment #10 from Jonathan Druart --- I think you did better than me on https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136129 But maybe we need that part, for biblio deletions, what do you think? + if ( $record_type eq 'biblio' && ( @updated_biblionumbers || @deleted_biblionumbers ) ) { + my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX }); + if ( @deleted_biblionumbers ) { + $indexer->index_records( \@deleted_biblionumbers, "recordDelete", "biblioserver" ); + } else { + $indexer->index_records( \@updated_biblionumbers, "specialUpdate", "biblioserver" ); + } + } -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 12:50:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 10:50:29 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136129|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:27:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:27:45 +0000 Subject: [Koha-bugs] [Bug 29454] Stash itemtypes in plugin objects to reduce DB calls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29454 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136077|0 |1 is obsolete| | --- Comment #14 from Martin Renvoize --- Created attachment 136149 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136149&action=edit Bug 29454: Use Koha Cache Memory Lite to stash itemtype descriptions for template plugin Returns empty string if given item type is undefined or unknown To test: 1 - Add 1000 items to a record, of varying item types 2 - Bring up the details page 3 - Note time to load 4 - Apply patch 5 - Reload page and compare to previous 6 - Confirm information is correct 7 - Confirm some performance benefit Signed-off-by: Fridolin Somers Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:27:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:27:49 +0000 Subject: [Koha-bugs] [Bug 29454] Stash itemtypes in plugin objects to reduce DB calls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29454 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136090|0 |1 is obsolete| | --- Comment #15 from Martin Renvoize --- Created attachment 136150 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136150&action=edit Bug 29454: Add unit test for Koha::Template::Plugin::ItemTypes Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:27:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:27:53 +0000 Subject: [Koha-bugs] [Bug 29454] Stash itemtypes in plugin objects to reduce DB calls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29454 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136091|0 |1 is obsolete| | --- Comment #16 from Martin Renvoize --- Created attachment 136151 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136151&action=edit Bug 29454: (follow-up) Cover more test cases Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:28:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:28:33 +0000 Subject: [Koha-bugs] [Bug 29454] Stash itemtypes in plugin objects to reduce DB calls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29454 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA CC| |martin.renvoize at ptfs-europe | |.com --- Comment #17 from Martin Renvoize --- Nice work.. works well, tests passing and coverage is good.. PQA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:28:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:28:57 +0000 Subject: [Koha-bugs] [Bug 29454] Stash itemtypes in plugin objects to reduce DB calls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29454 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|jonathan.druart+koha at gmail. |martin.renvoize at ptfs-europe |com |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:31:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:31:58 +0000 Subject: [Koha-bugs] [Bug 30775] 952w should have datepicker plugin enabled for it by default In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30775 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135461|0 |1 is obsolete| | --- Comment #4 from Martin Renvoize --- Created attachment 136152 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136152&action=edit Bug 30775: Make 952w to have datepicker plugin by default This field (Price effective from) is very similar to 952d, but it doesn't have dateaccessioned.pl plugin by default, Apart of worse usability of this it is also allows to enter wrong date which will be converted in 0000-00-00 in DB and even lead to crashes by code in other places. So, adding this plugin not only improves usability (user can have datepicker) but also adds date field validation. Test plan: 1. Head over to MARC frameworks from your administration page, check 952 subfield structure of your default framework structure. 2. dateaccessioned.pl is set as a plugin for 952d by default but is missing from 952w. 3. Apply the patch and reset your koha, drop db and use reset_all alias. 4. Check frameworks structure again and ensure that datepicker plugin is set by default for 952w. 5. Edit some item to ensure that datepicker works for that 952w. Signed-off-by: David Nind Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:32:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:32:26 +0000 Subject: [Koha-bugs] [Bug 30775] 952w should have datepicker plugin enabled for it by default In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30775 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA CC| |martin.renvoize at ptfs-europe | |.com --- Comment #5 from Martin Renvoize --- Good call, works as described and is a sensible default. PQA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:33:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:33:11 +0000 Subject: [Koha-bugs] [Bug 30775] 952w should have datepicker plugin enabled for it by default In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30775 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:37:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:37:17 +0000 Subject: [Koha-bugs] [Bug 29963] Date accessioned plugin should not automatically fill today's date on cataloguing screens In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29963 --- Comment #34 from Martin Renvoize --- Sorry for the slow reply.. yes, it's a distinct, if related, patch. I'm happy to have your SO on it Alex. In fact.. I think with the discussions here we can go ahead and call this one PQA.. lots of eyes and the debatable bits are now on other bugs, thanks Alex. I'll add Alex's SO line above mine and call it PQA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:38:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:38:44 +0000 Subject: [Koha-bugs] [Bug 29963] Date accessioned plugin should not automatically fill today's date on cataloguing screens In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29963 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135744|0 |1 is obsolete| | --- Comment #35 from Martin Renvoize --- Created attachment 136153 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136153&action=edit Bug 29963: Do not prefill empty date fields with today's date Revert "Bug 29815: Pre-populate 'Date acquired' field when adding/editing items" commit bd197c64567fba6899f12e4897d786adf52384d8 Items date fields in MARC framework with dateaccessioned.pl assigned as plugin automatically prefilled by it with today's date if empty on page load. This becomes big problem because it silently changes empty date fields in single item edit form with today's date. This drastically degrades UX because user won't noitce that fields were filled. Also, even when user aware about this problem, user is forced to clean the field manually each time they edit items with empty fields. Also in item batch edit tool the probability heavily increases to make mistake and leave those fields prefilled on mass. To reproduce problem with single item edit: 1. Edit single item that doesn't have a date set in any of the date fields where dateaccessioned.pl in MARC framework assigned as plugin, see that the field got prefilled with today's date. 2. Save the item. See that it overwrote the previously empty date. 3. Apply the patch. 4. Edit single item again, and ensure that the empty date fields don't get overwriten like it happened previously. To reproduce problem with bath edit: 1. Edit items in batch for any biblio, see that the date fields where dateaccessioned.pl in MARC framework assigned as plugin is automatically set to current day's date. 2. Apply the patch. 3. Check the fields again, they should be empty after that. Signed-off-by: Alex Buckley Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:39:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:39:01 +0000 Subject: [Koha-bugs] [Bug 29963] Date accessioned plugin should not automatically fill today's date on cataloguing screens In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29963 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:39:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:39:09 +0000 Subject: [Koha-bugs] [Bug 29963] Date accessioned plugin should not automatically fill today's date on cataloguing screens In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29963 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:51:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:51:57 +0000 Subject: [Koha-bugs] [Bug 29963] Date accessioned plugin should not automatically fill today's date on cataloguing screens In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29963 --- Comment #36 from Alex Buckley --- (In reply to Martin Renvoize from comment #34) > Sorry for the slow reply.. yes, it's a distinct, if related, patch. I'm > happy to have your SO on it Alex. > > In fact.. I think with the discussions here we can go ahead and call this > one PQA.. lots of eyes and the debatable bits are now on other bugs, thanks > Alex. > > I'll add Alex's SO line above mine and call it PQA Thanks very much Martin! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 13:52:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 11:52:28 +0000 Subject: [Koha-bugs] [Bug 29282] Show items.issue and items.renewals in the holdings table on the detail page in the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29282 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com --- Comment #12 from Martin Renvoize --- (In reply to Nick Clemens from comment #11) > (In reply to Victor Grousset/tuxayo from comment #10) > > Is there a reason to use the classes issues_field and renewals_field for the > > values when the other columns don't have the _field prefix? There doesn't > > seem to be a name clash in the file with issues and renewals. > > > > Otherwise everything looks good for QA. > > I think those classes already has associated styles, and this was just a way > to differentiate the view on this page I see a .renewals rule in staff-global.scss (though I'm struggling to find anything using the class in the templates right now) but I don't see any rules that would catch an 'issues' class. I think personally I'd like to see the consistency carried through and the _field dropped from the class names. Asking Owen for an opinion in case I've missed something obvious. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:06:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:06:32 +0000 Subject: [Koha-bugs] [Bug 30977] New: Set mar21_linking_records.pl value builder in frameworks by default Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30977 Bug ID: 30977 Summary: Set mar21_linking_records.pl value builder in frameworks by default Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: MARC Bibliographic data support Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org The mar21_linking_records.pl is a very helpful plugin when linking records from the various 77x fields. It will allow you to search for the record you want to link and pull in the information from it into various subfields. I believe this feature is not known very well and it would help if we added it to the default frameworks. It doesn't alter the behaviour of the fields if not used, so no harm done :) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:10:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:10:38 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers do not appear in the administrative interface, unless their home library is the same as the one selected by the user upon entry. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:10:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:10:42 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers do not appear in the administrative interface, unless their home library is the same as the one selected by the user upon entry. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136142|0 |1 is obsolete| | --- Comment #23 from David Nind --- Created attachment 136154 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136154&action=edit Bug 30234: Fix local cover image display for other holdings Bug 26145 added the ability to add local cover images to items. If SeparateHoldings is set, items from other libraries are displayed in a separate tab, and not considered as visible. We have a JS test to assume that images not shown are not present, this only apply for the images for the bibliographic record, as they can come from different sources. Test plan: Turn on LocalCoverImages and SeparateHoldings Create a record with different items coming from different libraries Attach images to items and to the biblio Notice that with this patch you can see the images from the "Other holdings" tab Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:10:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:10:59 +0000 Subject: [Koha-bugs] [Bug 30977] Set marc21_linking_section.pl value builder in frameworks by default In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30977 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Set |Set |mar21_linking_records.pl |marc21_linking_section.pl |value builder in frameworks |value builder in frameworks |by default |by default --- Comment #1 from Katrin Fischer --- Got the name slightly wrong, it's marc21_kinking_section.pl, but maybe we should actually rename as _record would be more accurate. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:15:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:15:04 +0000 Subject: [Koha-bugs] [Bug 30977] Set marc21_linking_section.pl value builder in frameworks by default In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30977 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |DUPLICATE Status|NEW |RESOLVED --- Comment #2 from Katrin Fischer --- *** This bug has been marked as a duplicate of bug 29733 *** -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:15:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:15:04 +0000 Subject: [Koha-bugs] [Bug 29733] MARC21: Link 7xx linking fields to marc21_linking_section.pl value builder in sample frameworks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29733 --- Comment #1 from Katrin Fischer --- *** Bug 30977 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:15:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:15:35 +0000 Subject: [Koha-bugs] [Bug 29733] MARC21: Link 7xx linking fields to marc21_linking_section.pl value builder in sample frameworks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29733 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Academy --- Comment #2 from Katrin Fischer --- Looks like late 2021 me already had the same idea :) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:18:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:18:39 +0000 Subject: [Koha-bugs] [Bug 29282] Show items.issue and items.renewals in the holdings table on the detail page in the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29282 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135042|0 |1 is obsolete| | --- Comment #13 from Martin Renvoize --- Created attachment 136155 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136155&action=edit Bug 29282: Add issues and renewals columns to holdings tbale on details page To test: 1 - Apply patch, restart all 2 - View a record with items in the staff client 3 - Note issues and renewals columns not shown 4 - Click the gear to edit visible columns 5 - Issues and renewals are present and hidden 6 - Click to view columns 7 - Confirm counts show, or 0 if item has not circulated/been renewed 8 - Circulate/renew an item 9 - Verify counts increase 10 - Make columns visible by default in Admin->Table settings 11 - Confirm columns show by default on details page Signed-off-by: Owen Leonard Signed-off-by: Sally Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:18:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:18:43 +0000 Subject: [Koha-bugs] [Bug 29282] Show items.issue and items.renewals in the holdings table on the detail page in the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29282 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135043|0 |1 is obsolete| | --- Comment #14 from Martin Renvoize --- Created attachment 136156 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136156&action=edit Bug 29282: (follow-up) Account for otherholdings table This patch accounts for the otherholdins table. To test: 1. Turn on SeparateHoldings 2. Find a record where the items are split by SeparateHoldings. 3. Make sure you can hide columns from the table in the Other holdings tab. Signed-off-by: Sally Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:18:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:18:47 +0000 Subject: [Koha-bugs] [Bug 29282] Show items.issue and items.renewals in the holdings table on the detail page in the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29282 --- Comment #15 from Martin Renvoize --- Created attachment 136157 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136157&action=edit Bug 29282: (QA follow-up) Class consistency This patch updates the field classes introduced in this patchset to improve class name consistency. We remove the _field apendment and to repvent a clash we update the existing 'renewals' class elsewhere to 'renewals-info' to more clearly reflect it's content. Test plan 1) The patchset should continue to function as described in prior patches 2) Build the CSS for the staff client 3) Check the 'Checkouts' table on various screens and confirm the renewals information still displays as it always has in the table. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:19:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:19:56 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers do not appear in the administrative interface, unless their home library is the same as the one selected by the user upon entry. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the display of release notes| |item-specific local cover | |images in the staff | |interface. Before this, | |item images were not shown | |for holdings on the | |record's details view page. CC| |david at davidnind.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:20:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:20:02 +0000 Subject: [Koha-bugs] [Bug 29282] Show items.issue and items.renewals in the holdings table on the detail page in the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29282 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|victor at tuxayo.net |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:21:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:21:09 +0000 Subject: [Koha-bugs] [Bug 29282] Show items.issue and items.renewals in the holdings table on the detail page in the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29282 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #16 from Martin Renvoize --- All works as described. I added a follow-up to make the classes introduced consistent with the rest of the table, but that also entailed updating an existing class elsewhere. I'll leave it to the RM to decide which way to jump here.. we can push with or without the final followup. Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:30:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:30:46 +0000 Subject: [Koha-bugs] [Bug 30947] Simplify date handling in CanbookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30947 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136092|0 |1 is obsolete| | --- Comment #5 from Martin Renvoize --- Created attachment 136158 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136158&action=edit Bug 30947: Add test for Illrequest checkout with custom due date To test: 1) prove t/db_dependent/Illrequests.t Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:30:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:30:50 +0000 Subject: [Koha-bugs] [Bug 30947] Simplify date handling in CanbookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30947 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136093|0 |1 is obsolete| | --- Comment #6 from Martin Renvoize --- Created attachment 136159 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136159&action=edit Bug 30947: Simplify CanBookBeIssued date handling 1) This removes support for passing string dates to CanBookBeIssued. The function didn't publicly even document support for string dates, only DateTime objects. 2) We get a $duedate always at least from CalcDateDue so having $issuingimpossible{INVALID_DATE} = output_pref($duedate); was unneccesary and thus removed. 3) The check "duedate cannot be before now" was needlessly complex: if the due date really cannot be before now we should check seconds too and warn the librarian! Thus the truncation to minutes can be dropped safely. To test: 1) prove t/db_dependent/Circulation.t 2) prove t/db_dependent/Illrequests.t 3) Enable OnSiteCheckouts and disable SpecifyDueDate syspref. Create on-site checkout for any patron and verify the due date is your current date at 23:59, you can check the exact minute with sql: > select * from issues Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:33:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:33:02 +0000 Subject: [Koha-bugs] [Bug 30947] Simplify date handling in CanbookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30947 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Status|Signed Off |Passed QA --- Comment #7 from Martin Renvoize --- QA scripts are happy and tests all pass. This is a nice simplification and improvement.. great work. Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:49:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:49:06 +0000 Subject: [Koha-bugs] [Bug 30971] Recalls - log viewer error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30971 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:49:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:49:08 +0000 Subject: [Koha-bugs] [Bug 30971] Recalls - log viewer error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30971 --- Comment #15 from Tomás Cohen Arazi --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:49:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:49:11 +0000 Subject: [Koha-bugs] [Bug 30973] Serials search wrong body id In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30973 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:49:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:49:13 +0000 Subject: [Koha-bugs] [Bug 30973] Serials search wrong body id In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30973 --- Comment #5 from Tomás Cohen Arazi --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:49:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:49:15 +0000 Subject: [Koha-bugs] [Bug 30974] Job size not correct for indexing jobs In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30974 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:49:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:49:18 +0000 Subject: [Koha-bugs] [Bug 30974] Job size not correct for indexing jobs In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30974 --- Comment #4 from Tomás Cohen Arazi --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:49:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:49:44 +0000 Subject: [Koha-bugs] [Bug 30971] Recalls - log viewer error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30971 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |rel_22_05_candidate CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:56:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:56:24 +0000 Subject: [Koha-bugs] [Bug 30961] Table Settings Reports table_reports Group and Subgroup does not work In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30961 --- Comment #2 from Donna --- On the ALL tab, neither column is hidden by table settings. On the group tabs, group is hidden automatically, but subgroup still shows. I can verify that groups and subgroups columns were being hidden correctly on the All tab on 20.05, that changed with 20.11. Subgroups on the group tabs were not being hidden correctly starting with at least 20.05. Verified the current behavior (or lack thereof) in 20.11, 21.05, and 21.11 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:57:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:57:55 +0000 Subject: [Koha-bugs] [Bug 30954] includes/background_jobs_update_elastic_index.inc must be removed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30954 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:57:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:57:58 +0000 Subject: [Koha-bugs] [Bug 30954] includes/background_jobs_update_elastic_index.inc must be removed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30954 --- Comment #4 from Tomás Cohen Arazi --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:59:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:59:35 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 14:59:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 12:59:40 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136145|0 |1 is obsolete| | --- Comment #3 from David Nind --- Created attachment 136160 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136160&action=edit Bug 30972: Don't replace biblio's local cover images when uploading an image's image When attaching a new cover image to an item we should not replace cover images attached to the bibliographic record if "Replace existing covers" is ticked. Test plan: Attach 1+ image to a bibliographic record Attach 1 image to an item of this biblio Attach another image to the item and seect "replace existing covers" => Without this patch the images attached to the biblio are removed => With this patch applied only the images attached to the image are removed Same if you tick the checkbox when attaching an image to the biblio Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:02:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:02:49 +0000 Subject: [Koha-bugs] [Bug 30976] Cover images for biblio should be displayed first In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30976 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:02:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:02:53 +0000 Subject: [Koha-bugs] [Bug 30976] Cover images for biblio should be displayed first In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30976 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136146|0 |1 is obsolete| | --- Comment #2 from David Nind --- Created attachment 136161 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136161&action=edit Bug 30976: Display biblio's cover images first If one add cover images at item's level, then biblio level, the cover images of the items are displayed first on the main "cover slider" at the top of the page. We should displayed biblio cover images first, then the ones for the items. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:07:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:07:34 +0000 Subject: [Koha-bugs] [Bug 25560] Exclude itemtypes from UpdateNotForLoanStatusOnCheckin In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25560 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha at gmail. | |com --- Comment #57 from Jonathan Druart --- (In reply to Nick Clemens from comment #56) > This works and is a relatively small change so signing off. > > I do think this would be better if it didn't split this control into two > places: syspref and itemtype administration. > > The existing syspref is YAML based, and could be expanded to take itemtypes > into account, and would consolidate the feature into a single control. I went here to say this. I agree with Nick, it smells to have 2 different places to configure a feature. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:09:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:09:48 +0000 Subject: [Koha-bugs] [Bug 25560] Exclude itemtypes from UpdateNotForLoanStatusOnCheckin In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25560 --- Comment #58 from Katrin Fischer --- (In reply to Nick Clemens from comment #56) > This works and is a relatively small change so signing off. > > I do think this would be better if it didn't split this control into two > places: syspref and itemtype administration. > > The existing syspref is YAML based, and could be expanded to take itemtypes > into account, and would consolidate the feature into a single control. I've had the same thought actually. Having different places to check always makes it harder to debug any configuration issues as it's hard to keep all options in mind that might have an influence on a certain behaviour. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:11:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:11:20 +0000 Subject: [Koha-bugs] [Bug 25560] Exclude itemtypes from UpdateNotForLoanStatusOnCheckin In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25560 --- Comment #59 from Katrin Fischer --- Alex, any chance that the feature could be adapted? And maybe the others could detail how this could look like? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:19:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:19:08 +0000 Subject: [Koha-bugs] [Bug 30859] Upgrade jQuery Validation plugin from v1.19.1 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30859 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:19:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:19:12 +0000 Subject: [Koha-bugs] [Bug 30859] Upgrade jQuery Validation plugin from v1.19.1 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30859 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135443|0 |1 is obsolete| | --- Comment #4 from Jonathan Druart --- Created attachment 136162 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136162&action=edit Bug 30859: Upgrade jQuery Validation plugin from v1.19.1 This patch updates the jQuery Validation plugin in both the OPAC and staff interface. This upgrade brings the plugin to the current latest version (1.19.4) which includes compatibility fixes for the latest version of jQuery. To test, apply the patch and test various forms in the OPAC and staff interface to confirm that validation is still working correctly. In the OPAC: - Patron self-registration: Required fields, password match and complexity. Test also the "Forgot password" and "Change password" interfaces. In the staff interface, for example: - Patrons -> Patron password change: Required fields, password match and complexity. - Administration -> Patron categories -> New category: - Required fields - One or the other enrollment period inputs - Digits required in password expiration, age required, upper age limit - Numbers required in enrollment and hold fee. - Administration -> Budgets -> New budget: - Required fields - End date must be after start date - Administration -> Cities & towns: Required fields Signed-off-by: David Nind Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:34:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:34:14 +0000 Subject: [Koha-bugs] [Bug 30937] Add a detail view for libraries In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30937 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:34:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:34:18 +0000 Subject: [Koha-bugs] [Bug 30937] Add a detail view for libraries In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30937 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135914|0 |1 is obsolete| | --- Comment #3 from Jonathan Druart --- Created attachment 136163 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136163&action=edit Bug 30937: Add a detail view for libraries This patch adds a view page for libraries, so that the user isn't required to edit the library to see information about it. To test, apply the patch and log into Koha as a user with permission to manage libraries. - In the list of libraries you should see that the library name in the first column is now a link. - When you click the link you should be taken to a view of all the information about the library. Signed-off-by: Lucas Gass Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:34:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:34:23 +0000 Subject: [Koha-bugs] [Bug 30937] Add a detail view for libraries In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30937 --- Comment #4 from Jonathan Druart --- Created attachment 136164 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136164&action=edit Bug 30937: Add a 'does not exist' hint if branchcode is invalid Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:34:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:34:28 +0000 Subject: [Koha-bugs] [Bug 30937] Add a detail view for libraries In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30937 --- Comment #5 from Jonathan Druart --- Created attachment 136165 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136165&action=edit Bug 30937: Surroung Yes/No with span See bug 29602 Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:43:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:43:08 +0000 Subject: [Koha-bugs] [Bug 10950] Add preferred pronoun field to patron record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha at gmail. | |com --- Comment #33 from Jonathan Druart --- To make this change usable I think we should have a new AV category to list the different choices. By default it could come with a predefined list that would be translatable. Unless we really want to keep it a free text field? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:47:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:47:22 +0000 Subject: [Koha-bugs] [Bug 30978] New: Potential data loss when using Quick add new patron Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30978 Bug ID: 30978 Summary: Potential data loss when using Quick add new patron Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: sally.healey at cheshiresharedservices.gov.uk QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com When using the Quick add new patron form with mandatory fields, if a mistake is made, data can be lost. To replicate: - In System Preferences, go to: BorrowerMandatoryField - Put in some mandatory fields - e.g. firstname, surname, cardnumber - Go to Patrons - Press +Quick add new patron - Choose patron as a category type - Note that firstname, surname and cardnumber are all mandatory fields - Put data into firstname and cardnumber - Do not put any data in surname - Press Save The form will not submit because surname is a required field - and a prompt is shown: "This field is required." - Now correct your mistake and fill in the surname - Press Save - The form now submits and creates an account - but the corrected surname field is still blank I've tested this with a range of fields - and I've added 10 mandatory fields and submitted a form with 2, then corrected 4, then submitted again etc - and the form always sends the very first version and disregards any amendments. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:52:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:52:44 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136033|0 |1 is obsolete| | --- Comment #38 from Martin Renvoize --- Created attachment 136166 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136166&action=edit Bug 25498: Add transfer button on intranet Note: Adjusting shelves_results template too for not allowing delete when you do not have delete_public_lists (or higher). If you are the owner, you are allowed to edit or delete. But transfer specifically needs edit_public_lists (or higher). Note: Removed a few useless POD lines to make qa tools happy. Test plan: Check if you see the transfer button on public lists only when having permission edit_public_lists (or higher). And never on private lists. Signed-off-by: Marcel de Rooy Signed-off-by: Owen Leonard Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:52:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:52:49 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136034|0 |1 is obsolete| | --- Comment #39 from Martin Renvoize --- Created attachment 136167 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136167&action=edit Bug 25498: Add a transfer form for public lists Test plan: [1] Valid transfer: Log in with staff patron C having edit_public_lists. Pick a public list. Choose Transfer. Select a patron. Submit and check if transfer was successful. [2] Permission problem: Pick a staff user D. Temporary enable edit_public_lists. Add another private tab. Login with D. Pick a public list. Transfer. Choose another patron. Wait. Switch tab: remove added permission from D. Switch tab again: Submit transfer form. Error? Close tab. [3] Bonus test - Shelf disappeared: Pick a public list. Transfer. Choose another patron. Wait. Open another tab. Delete the selected public list. Close tab. Submit the transfer. Not exist error? [4] Bonus test - Patron not found: Pick a public list. Transfer. Choose another patron. Wait. Open another tab. Delete selected patron. Close tab. Submit transfer. Patron not found error? Signed-off-by: Marcel de Rooy Signed-off-by: Owen Leonard Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:52:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:52:54 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136035|0 |1 is obsolete| | --- Comment #40 from Martin Renvoize --- Created attachment 136168 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136168&action=edit Bug 25498: Show transfer button for shared lists on OPAC Test plan: Pick or create a shared list. Verify that OPAC only shows the Transfer button when you are the owner of a shared list. Signed-off-by: Marcel de Rooy Signed-off-by: Owen Leonard Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:52:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:52:59 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136036|0 |1 is obsolete| | --- Comment #41 from Martin Renvoize --- Created attachment 136169 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136169&action=edit Bug 25498: Transfer ownership shared list on OPAC Test plan: Pick or create a shared list. Login as owner. Transfer to one of the other members. Verify that you do no longer have Transfer, but see Remove share. Login as the other member. Transfer it back. Bonus: Working with two tabs, you can open the Transfer form and in the meantime delete the list, the patron or remove the share. Or change permissions. Submit after that and check the error message. Signed-off-by: Marcel de Rooy Signed-off-by: Owen Leonard Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:54:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:54:39 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #42 from Martin Renvoize --- This works well, tests pass and QA script is happy. Minor wonderment, should the permissions check be moved up in the the module level rather than being in the controllers.. so we can have it unit tested consistently? Otherwise, this is all good and gets my PQA stamp, great work Marcel -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 15:57:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 13:57:02 +0000 Subject: [Koha-bugs] [Bug 29303] Quick add form duplicates HTML ID's In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29303 Sally changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sally.healey at cheshireshared | |services.gov.uk --- Comment #4 from Sally --- Hi Lucas, Is there any chance you could take another look at this? I'd love to be able to use jQuery on the quick add form and the duplicate ids are a real problem. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:00:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:00:36 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 --- Comment #43 from Jonathan Druart --- Isn't Koha::Virtualshelfshare->patron confusing? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:04:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:04:28 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 --- Comment #44 from Marcel de Rooy --- (In reply to Martin Renvoize from comment #42) > This works well, tests pass and QA script is happy. > > Minor wonderment, should the permissions check be moved up in the the module > level rather than being in the controllers.. so we can have it unit tested > consistently? > > Otherwise, this is all good and gets my PQA stamp, great work Marcel Thanks Martin -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:04:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:04:50 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 --- Comment #45 from Marcel de Rooy --- (In reply to Jonathan Druart from comment #43) > Isn't Koha::Virtualshelfshare->patron confusing? Hmm Good question. Do you have a suggestion already? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:08:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:08:03 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 --- Comment #46 from Marcel de Rooy --- (In reply to Martin Renvoize from comment #42) > Minor wonderment, should the permissions check be moved up in the the module > level rather than being in the controllers.. so we can have it unit tested > consistently? Could do that. Will move it to the next report. 30933 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:13:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:13:06 +0000 Subject: [Koha-bugs] [Bug 30646] Add option to send WELCOME notice for new patrons added at first login via LDAP/SAML In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30646 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add option to send |Add option to send WELCOME |ACCTDETAILS notice for new |notice for new patrons |patrons added at first |added at first login via |login via LDAP/SAML |LDAP/SAML -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:13:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:13:22 +0000 Subject: [Koha-bugs] [Bug 30566] Incorporate link handling in OPAC's biblio-title include In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30566 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:13:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:13:27 +0000 Subject: [Koha-bugs] [Bug 30566] Incorporate link handling in OPAC's biblio-title include In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30566 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135738|0 |1 is obsolete| | --- Comment #5 from Jonathan Druart --- Created attachment 136170 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136170&action=edit Bug 30566: Incorporate link handling in OPAC's biblio-title include This patch modifies the biblio-title include so that it can be used to link to the bibliographic record using the default biblio view. On pages where the biblio-title include was wrapped in an anchor tag, a link parameter is added: [% INCLUDE 'biblio-title.inc' link=> 1 %] To test, apply the patch and view the following pages in the OPAC to confirm that titles are displayed correctly and that the link to the bibliographic record is correct: - Log in to the OPAC: On the "your summary" page, check checkouts, overdues, holds, and article requests. - Check the "your holds history" page. - Locate a bibliographic record and click "Save to your lists." In the popup, the title should be displayed correctly without a link. - Place a hold, and check the hold confirmation page. - Check the "Recent comments" page. - Locate a record which has a local cover image attached, and view the image. Signed-off-by: David Nind Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:16:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:16:28 +0000 Subject: [Koha-bugs] [Bug 30646] Add option to send WELCOME notice for new patrons added at first login via LDAP/SAML In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30646 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|29005 |30237 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29005 [Bug 29005] Add option to send WELCOME notice for new patrons added via patron imports https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30237 [Bug 30237] Rename/rephrase AutoEmailOpacUser/ACCTDETAILS feature to clarify intended use -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:16:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:16:28 +0000 Subject: [Koha-bugs] [Bug 29005] Add option to send WELCOME notice for new patrons added via patron imports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29005 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|30646 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30646 [Bug 30646] Add option to send WELCOME notice for new patrons added at first login via LDAP/SAML -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:16:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:16:28 +0000 Subject: [Koha-bugs] [Bug 30237] Rename/rephrase AutoEmailOpacUser/ACCTDETAILS feature to clarify intended use In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30237 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30646 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30646 [Bug 30646] Add option to send WELCOME notice for new patrons added at first login via LDAP/SAML -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:21:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:21:12 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 --- Comment #47 from Jonathan Druart --- (In reply to Marcel de Rooy from comment #45) > (In reply to Jonathan Druart from comment #43) > > Isn't Koha::Virtualshelfshare->patron confusing? > > Hmm Good question. Do you have a suggestion already? Not really, "contributor" maybe? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:24:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:24:26 +0000 Subject: [Koha-bugs] [Bug 30646] Add option to send WELCOME notice for new patrons added at first login via LDAP/SAML In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30646 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134272|0 |1 is obsolete| | --- Comment #3 from Martin Renvoize --- Created attachment 136171 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136171&action=edit Bug 30646: Add welcome email support to LDAP This patch adds the ability to enable the welcome email notice for new users added via the LDAP replicate option. Test plan 1) Configure LDAP for authentication 2) Enable the welcome email by adding '1' to your ldap config block 3) Confirm you have replicate enabled for your LDAP config 4) Attempt to login with an entirely new user to Koha using the LDAP connection (with a user who has a valid email address mapped to Koha borrower fields) 5) Confirm the email is sent by looking at the notices for the new user. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:24:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:24:30 +0000 Subject: [Koha-bugs] [Bug 30646] Add option to send WELCOME notice for new patrons added at first login via LDAP/SAML In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30646 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134279|0 |1 is obsolete| | --- Comment #4 from Martin Renvoize --- Created attachment 136172 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136172&action=edit Bug 30646: Add welcome email support to SAML2 This patch adds the ability to enable the welcome email notice for new users added via the Shibboleth autocreate option. Test plan 1) Configure Shibboleth for authentication 2) Enable the welcome email by adding '1' to your shibboleth config block 3) Confirm you have autocreate enabled for your Shibboleth config 4) Attempt to login with an entirely new user to Koha using the shibboleth connection (with a user who has a valid email address mapped to Koha borrower fields) 5) Confirm the email is sent by looking at the notices for the new user. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:24:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:24:34 +0000 Subject: [Koha-bugs] [Bug 30646] Add option to send WELCOME notice for new patrons added at first login via LDAP/SAML In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30646 --- Comment #5 from Martin Renvoize --- Created attachment 136173 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136173&action=edit Bug 30646: (follow-up) Set to send immediately Other welcome notices send immediately rather than waiting on the queue to be processed.. these one's should too. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:40:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:40:58 +0000 Subject: [Koha-bugs] [Bug 23659] Allow hold pickup location to default to item home branch for item-level holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23659 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com Status|Pushed to master |Pushed to stable Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | --- Comment #11 from Lucas Gass --- Pushed to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:45:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:45:07 +0000 Subject: [Koha-bugs] [Bug 29483] AllowRenewalIfOtherItemsAvailable has poor performance for records with many items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29483 --- Comment #34 from Victor Grousset/tuxayo --- ↑↑↑↑↑ errata, wrong message Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:54:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:54:39 +0000 Subject: [Koha-bugs] [Bug 30979] New: Add ability for opac users to checkout to themselves Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30979 Bug ID: 30979 Summary: Add ability for opac users to checkout to themselves Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org In some trusted environments libraries would like their users to self-issue without having to use the SCO or SIP checkouts. i.e. once logged in a user should have the ability to check out to themselves much like they already have the option to renew and place holds etc. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 16:54:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 14:54:50 +0000 Subject: [Koha-bugs] [Bug 30979] Add ability for opac users to checkout to themselves In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30979 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|oleonard at myacpl.org |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:05:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:05:14 +0000 Subject: [Koha-bugs] [Bug 26902] Add ability to flag a patron email address as possibly invalid In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26902 Jessie Zairo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jzairo at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:08:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:08:31 +0000 Subject: [Koha-bugs] [Bug 30942] Why can I place a recall on a bib when no items are on loan? In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30942 --- Comment #4 from Martin Renvoize --- OK.. I find the notion of 'on-shelf recalls' weird then.. I totally don't understand this new feature... it just feels like copy of the existing holds functionality. As for article requests I understand why you'd want that always there.. or rather there for anything that should be allowed an article request regardless of it's current availability... it's more about copyright and scanning of materials that would mean it's unavailable for article requests I would think? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:11:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:11:24 +0000 Subject: [Koha-bugs] [Bug 30980] New: Make patron selection more consistent Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30980 Bug ID: 30980 Summary: Make patron selection more consistent Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff Client Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com We have a number of places where one can select a patron as part of a process... but these selects vary wildly.. some are 'autocomplete', others allow for full search. I proposed using select2 consistently for the forms one's when reviewing bug 30578. It's worth investigating. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:11:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:11:35 +0000 Subject: [Koha-bugs] [Bug 30980] Make patron selection more consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30980 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30578 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30578 [Bug 30578] We should drop circ/ysearch.pl in preference to using the REST API's -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:11:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:11:35 +0000 Subject: [Koha-bugs] [Bug 30578] We should drop circ/ysearch.pl in preference to using the REST API's In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30578 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30980 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30980 [Bug 30980] Make patron selection more consistent -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:14:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:14:26 +0000 Subject: [Koha-bugs] [Bug 3544] Value builder plug-ins don't work with repeatable subfields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3544 --- Comment #7 from Katrin Fischer --- I've heard a similar complaint recently, could it be a browser issue? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:17:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:17:42 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 --- Comment #48 from Martin Renvoize --- Do they contribute or just get access to view? 'Recipient' or 'Beneficiary' or 'Sharer' and 'Sharee'.. those feel funky but might actually be the clearest two quasi-terms.? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:23:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:23:55 +0000 Subject: [Koha-bugs] [Bug 3544] Value builder plug-ins don't work with repeatable subfields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3544 --- Comment #8 from Katrin Fischer --- I see you linked bug 30975 already, could this be a duplicate? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:27:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:27:48 +0000 Subject: [Koha-bugs] [Bug 30966] Record Overlay Rules - can't use Z39.50 filter In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30966 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version|21.11 |master --- Comment #1 from Katrin Fischer --- Hi Björn, that's a great hint already - does your coworker want to provide a patch for this? We are happy to help with the steps! -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:54:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:54:34 +0000 Subject: [Koha-bugs] [Bug 30962] REST API: Add endpoint /patrons/:patron_id/check_password In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30962 --- Comment #5 from Katrin Fischer --- (In reply to David Cook from comment #4) > (In reply to David Cook from comment #3) > > (In reply to Tomás Cohen Arazi from comment #2) > > > How will we prevent abuse for this password-guessing service? Hehe > > > > It's not a public/anonymous endpoint. Only an authenticated and authorized > > user could use it. > > But happy to add more security to lock accounts on too many bad password > checks. I think it would make sense to use the existing lock feature here, also consistent. ILS-DI locks too. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:57:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:57:46 +0000 Subject: [Koha-bugs] [Bug 30942] Why can I place a recall on a bib when no items are on loan? In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30942 --- Comment #5 from Katrin Fischer --- There was a longer discussion about performance etc. for showing the Article request link when there is actually not an article request possible when ArticleRequestsLinkControl was added. Looking into the bug for that one might explain more. For recalls Aleisha might be able to explain next week. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 17:58:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 15:58:29 +0000 Subject: [Koha-bugs] [Bug 30938] Fix column configuration to the acquisitions home page In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30938 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add column configuration to |Fix column configuration to |the acquisitions home page |the acquisitions home page -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:01:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:01:43 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136108|0 |1 is obsolete| | --- Comment #88 from Victor Grousset/tuxayo --- Created attachment 136174 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136174&action=edit Bug 30733: Simplify translatable strings And a few minor fixes when they where causing issues for translatability. And rephrased a string about password reset to have it identical to other strings with the same meaning. Simplified via wrapping strings with to split to huge concatenated strings with a lot of %s everywhere. == Test plan == This patch needs mainly proof reading. Still it's possible to do some basic testing to demonstrate that adding a in an IF doesn't break anything. Pick in one of the 110 modified templates a string that you know how to display. Otherwise: 1. acquisitions => vendor => basket => add to basket => search "from existing record" => add order 2. Cancel the order 3. You see without issue "Bibliographic record will not be deleted" 4. administration => Patron categories 5. Try to delete a used and unused category 6. You see as expected Category XXXX is in use. Deletion not possible! and Confirm deletion of category XXXX Signed-off-by: Fridolin Somers -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:02:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:02:03 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136109|0 |1 is obsolete| | --- Comment #89 from Victor Grousset/tuxayo --- Created attachment 136175 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136175&action=edit Bug 30733: Move all semicolons inside the translatable strings In the 1st patch, sometimes they where left out Signed-off-by: Fridolin Somers -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:02:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:02:23 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136110|0 |1 is obsolete| | --- Comment #90 from Victor Grousset/tuxayo --- Created attachment 136176 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136176&action=edit Bug 30733: Fix string context lost due to being in two parts Due to conditions. Things like "Edit batch" need to be keept in one strings. Also removed some capitalization because it wasn't needed and wasn't consistend with and <h1> which had now capitalization. Also fixed patron edit-batch.tt and edit-layout.tt because they were incomplete in regard to their label counterparts. They had the condition on description and batch_id but weren't displaying anything different between the two cases. Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:02:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:02:46 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-It80uYqT6D@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136111|0 |1 is obsolete| | --- Comment #91 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136177 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136177&action=edit Bug 30733: Undo bad handling of a plural case Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:03:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:03:01 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-pd8QPshwEZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136112|0 |1 is obsolete| | --- Comment #92 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136178 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136178&action=edit Bug 30733: Wrap one more string in <span> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:03:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:03:18 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-5P4AqHPK16@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136113|0 |1 is obsolete| | --- Comment #93 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136179 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136179&action=edit Bug 30733: Undo <span> in an ICS calendar file Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:03:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:03:38 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-MUKhuap7Qu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136114|0 |1 is obsolete| | --- Comment #94 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136180 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136180&action=edit Bug 30733: Simplify some singular cases To be sure translators don't think it's wrong and translate it plurally. Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:04:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:04:01 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-N1ZGkyAY3t@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136115|0 |1 is obsolete| | --- Comment #95 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136181 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136181&action=edit Bug 30733: Undo some <span> additions that don't yield good strings They need more complex solutions that would be better in a follow up ticket to not drag this one too long. Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:04:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:04:25 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-Fzw9rXeYzK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136116|0 |1 is obsolete| | --- Comment #96 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136182 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136182&action=edit Bug 30733: fix url => URL to merge with existing string Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:04:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:04:49 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-8wOf29DVJ1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136117|0 |1 is obsolete| | --- Comment #97 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136183 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136183&action=edit Bug 30733: Split strings differently Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:05:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:05:59 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-AZwmIScXt3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 --- Comment #98 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Rebased. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:25:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:25:02 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-0BoxH9xV9c@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #132941|0 |1 is obsolete| | --- Comment #4 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136184 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136184&action=edit Bug 30447: Check if transfers arrived or cancelled TO test: 1 - Find a bib with a single item 2 - Browse to Circulation->Transfer 3 - Transfer the item to another branch 4 - Check the item in at current branch and cancel the transfer on the dialog 5 - Place a hold on the biblio for a patron at current branch 6 - Browse to Circulation->Holds to pull 7 - Item does not show 8 - Apply patch, restart all 9 - Browse to Circulation->Holds to pull 10 - Item shows Signed-off-by: Owen Leonard <oleonard at myacpl.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:25:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:25:06 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-ixNy9r1dP8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 --- Comment #5 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136185 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136185&action=edit Added test to ensure that Koha::Holds->get_items_that_can_fill returns items with datecancelled and datearrived -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:34:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:34:56 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-jFp54YkXYa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |paul.derscheid at lmscloud.de --- Comment #99 from Paul Derscheid <paul.derscheid at lmscloud.de> --- I this intended? --- diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt index 6af47706d0..a39f377914 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt @@ -38,7 +38,7 @@ Your cart <p> [% IF ( BIBLIO_RESULT.HASAUTHORS ) %] - <span>Author(s): [% IF ( BIBLIO_RESULT.author ) %][% BIBLIO_RESULT.author | $raw %][% END %] + <span><span>Author(s):</span> [% IF ( BIBLIO_RESULT.author ) %][% BIBLIO_RESULT.author | $raw %][% END %] [% IF ( BIBLIO_RESULT.MARCAUTHORS ) %] [% IF ( BIBLIO_RESULT.author ) %]; [% END %] --- I think there's something wrong here.. diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index 905fd07bd3..917a7ef246 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -516,14 +516,15 @@ Note that permanent location is a code, and location may be an authval. [% IF item.recalled %] [% IF item.recall.waiting_date %] - Waiting at [% Branches.GetName( item.recall.pickup_library_id ) | html %] since [% item.recall.waiting_date | $KohaDates %] + <span>Waiting at [% Branches.GetName( item.recall.pickup_library_id ) | html %] since [% item.recall.waiting_date | $KohaDates %]</span> [% ELSE %] - Item recalled by <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% item.recall.patron_id | uri %]">[% item.recall.patron.firstname | html %] [% item.recall.patron.surname | html %] ([% item.recall.patron.cardnumber | html %])</a> on [% item.recall.created_date | $KohaDates %] + [% patron_link = BLOCK %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% item.recall.patron_id | uri %]">[% item.recall.patron.firstname | html %] [% item.recall.patron.surname | html %] ([% item.recall.patron.cardnumber | html %])</a>[% END %] + <span>Item recalled by [% patron_link| $raw %] on [% item.recall.created_date | $KohaDates %]</span> [% END %] [% END %] --- diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt index 8953297ab7..445ec01a03 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt @@ -127,7 +127,7 @@ <div class="dialog message">[% added_count | html %] [% IF ( added_count == 1 ) %]tag[% ELSE %]tags[% END %] successfully added.</div> [% END %] [% IF ( deleted_count ) %] - <div class="dialog message">[% deleted_count | html %] [% IF ( deleted_count == 1 ) %]tag[% ELSE %]tags[% END %] successfully deleted.</div> + <div class="dialog message">[% deleted_count | html %] [% IF ( deleted_count == 1 ) %]tag[% ELSE %]tags[% END %] successfully deleted.</div> [% END %] [% END # /add_op %] -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:43:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:43:27 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25498-70-BvamSqQlOG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 --- Comment #49 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- > > or 'Sharer' and 'Sharee'.. those feel funky but might actually be the > clearest two quasi-terms.? I like those best from the suggested. user I guess is too general in context here? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 18:47:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 16:47:53 +0000 Subject: [Koha-bugs] [Bug 10950] Add preferred pronoun field to patron record In-Reply-To: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10950-70-iyR4mfy6jX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950 --- Comment #34 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Jonathan Druart from comment #33) > To make this change usable I think we should have a new AV category to list > the different choices. By default it could come with a predefined list that > would be translatable. > > Unless we really want to keep it a free text field? I think that was intended, what do you think about just a category, but leave empty, and make it like bsort1 (free text but AV possible?) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:01:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:01:26 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-CDcLrt6SIp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 --- Comment #100 from Victor Grousset/tuxayo <victor at tuxayo.net> --- (In reply to Paul Derscheid from comment #99) > I this intended? > [...] > <p> > [% IF ( BIBLIO_RESULT.HASAUTHORS ) %] > - <span>Author(s): [% IF ( BIBLIO_RESULT.author ) %][% > BIBLIO_RESULT.author | $raw %][% END %] > + <span><span>Author(s):</span> [% IF ( BIBLIO_RESULT.author ) > %][% BIBLIO_RESULT.author | $raw %][% END %] This is expected. There was already one <span> spanning (ha ha) a few lines and I needed another one just for the string on this line. ------ > I think there's something wrong here.. > > diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt > [...] > - Item recalled by <a > href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% > item.recall.patron_id | uri %]">[% item.recall.patron.firstname | html %] [% > item.recall.patron.surname | html %] ([% item.recall.patron.cardnumber | > html %])</a> on [% item.recall.created_date | $KohaDates %] > > + [% patron_link = BLOCK %]<a > href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% > item.recall.patron_id | uri %]">[% item.recall.patron.firstname | html %] [% > item.recall.patron.surname | html %] ([% item.recall.patron.cardnumber | > html %])</a>[% END %] > + <span>Item recalled by [% patron_link| $raw > %] on [% item.recall.created_date | $KohaDates %]</span> > [% END %] > [% END %] I had to do something ugly (adding <span> everywhere arguably is already ^^") , extracting the <a> in a BLOCK. Because having the <a> in the middle of the phrase would split it without any recourse. But a BLOCK usage doesn't cause the extractor to split the string. ------ > diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt > b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt > index 8953297ab7..445ec01a03 100644 > --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt > +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt > [...] > - <div class="dialog message">[% deleted_count | > html %] [% IF ( deleted_count == 1 ) %]tag[% ELSE %]tags[% END %] > successfully deleted.</div> > + <div class="dialog message">[% > deleted_count | html %] [% IF ( deleted_count == 1 ) %]tag[% ELSE %]tags[% > END %] successfully deleted.</div> Here I had split the string initially and fixed indentation but I ended up not splitting the string. It's a plural case. It should be done using I18n TT functions. But I let the indentation fix. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:05:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:05:18 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-YqcxRgalb9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136185|0 |1 is obsolete| | --- Comment #6 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136186 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136186&action=edit Added test to ensure that Koha::Holds->get_items_that_can_fill returns items with datecancelled and datearrived -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:05:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:05:21 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-GvvJ6x1Xva@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 --- Comment #7 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136187 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136187&action=edit Added test to ensure that Koha::Holds->get_items_that_can_fill returns items with either datecancelled or datearrived (inclusive). I made an error with my understanding of my boolean logic. Also cleaned up the variables in the test by removing unblessed and using the variable base forms. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:08:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:08:44 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-oF5uvgmqag@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136174|0 |1 is obsolete| | --- Comment #101 from Paul Derscheid <paul.derscheid at lmscloud.de> --- Created attachment 136188 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136188&action=edit Bug 30733: Simplify translatable strings And a few minor fixes when they where causing issues for translatability. And rephrased a string about password reset to have it identical to other strings with the same meaning. Simplified via wrapping strings with <span> to split to huge concatenated strings with a lot of %s everywhere. == Test plan == This patch needs mainly proof reading. Still it's possible to do some basic testing to demonstrate that adding a <span> in an IF doesn't break anything. Pick in one of the 110 modified templates a string that you know how to display. Otherwise: 1. acquisitions => vendor => basket => add to basket => search "from existing record" => add order 2. Cancel the order 3. You see without issue "Bibliographic record will not be deleted" 4. administration => Patron categories 5. Try to delete a used and unused category 6. You see as expected Category XXXX is in use. Deletion not possible! and Confirm deletion of category XXXX Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:08:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:08:50 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-jztPDxL3G9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136175|0 |1 is obsolete| | --- Comment #102 from Paul Derscheid <paul.derscheid at lmscloud.de> --- Created attachment 136189 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136189&action=edit Bug 30733: Move all semicolons inside the translatable strings In the 1st patch, sometimes they where left out Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:08:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:08:54 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-vp3i2ka5Yv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136176|0 |1 is obsolete| | --- Comment #103 from Paul Derscheid <paul.derscheid at lmscloud.de> --- Created attachment 136190 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136190&action=edit Bug 30733: Fix string context lost due to being in two parts Due to conditions. Things like "Edit batch" need to be keept in one strings. Also removed some capitalization because it wasn't needed and wasn't consistend with <title> and <h1> which had now capitalization. Also fixed patron edit-batch.tt and edit-layout.tt because they were incomplete in regard to their label counterparts. They had the condition on description and batch_id but weren't displaying anything different between the two cases. Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:08:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:08:59 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-P9XEdrGXnY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136177|0 |1 is obsolete| | --- Comment #104 from Paul Derscheid <paul.derscheid at lmscloud.de> --- Created attachment 136191 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136191&action=edit Bug 30733: Undo bad handling of a plural case Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:09:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:09:05 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-jwMnN7hMNl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136178|0 |1 is obsolete| | --- Comment #105 from Paul Derscheid <paul.derscheid at lmscloud.de> --- Created attachment 136192 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136192&action=edit Bug 30733: Wrap one more string in <span> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:09:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:09:10 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-MroJhakhcb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136179|0 |1 is obsolete| | --- Comment #106 from Paul Derscheid <paul.derscheid at lmscloud.de> --- Created attachment 136193 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136193&action=edit Bug 30733: Undo <span> in an ICS calendar file Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:09:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:09:15 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-4Ke0NYpTHN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136180|0 |1 is obsolete| | --- Comment #107 from Paul Derscheid <paul.derscheid at lmscloud.de> --- Created attachment 136194 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136194&action=edit Bug 30733: Simplify some singular cases To be sure translators don't think it's wrong and translate it plurally. Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:09:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:09:20 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-GwPNB0rWWn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136181|0 |1 is obsolete| | --- Comment #108 from Paul Derscheid <paul.derscheid at lmscloud.de> --- Created attachment 136195 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136195&action=edit Bug 30733: Undo some <span> additions that don't yield good strings They need more complex solutions that would be better in a follow up ticket to not drag this one too long. Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:09:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:09:25 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-aJoPUS2NIj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136182|0 |1 is obsolete| | --- Comment #109 from Paul Derscheid <paul.derscheid at lmscloud.de> --- Created attachment 136196 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136196&action=edit Bug 30733: fix url => URL to merge with existing string Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:09:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:09:30 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-LSThXNPfEb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Paul Derscheid <paul.derscheid at lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136183|0 |1 is obsolete| | --- Comment #110 from Paul Derscheid <paul.derscheid at lmscloud.de> --- Created attachment 136197 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136197&action=edit Bug 30733: Split strings differently Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 19:25:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 17:25:57 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-71rLTwl2E0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 --- Comment #8 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136198 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136198&action=edit Continued from previous patch: Added test for correct number of items for each call of "get_items_that_fill" -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 20:25:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 18:25:06 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-EsFx1bKVfw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136184|0 |1 is obsolete| | --- Comment #9 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136199 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136199&action=edit Bug 30447: Check if transfers arrived or cancelled TO test: 1 - Find a bib with a single item 2 - Browse to Circulation->Transfer 3 - Transfer the item to another branch 4 - Check the item in at current branch and cancel the transfer on the dialog 5 - Place a hold on the biblio for a patron at current branch 6 - Browse to Circulation->Holds to pull 7 - Item does not show 8 - Apply patch, restart all 9 - Browse to Circulation->Holds to pull 10 - Item shows Test in Holds.t Added test to ensure that Koha::Holds->get_items_that_can_fill returns items with datecancelled and datearrived Also cleaned up the variables in the test by removing unblessed and using the variable base forms. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 20:36:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 18:36:00 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-mP201TQgmR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 20:36:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 18:36:03 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-IOGXMENRQq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136186|0 |1 is obsolete| | Attachment #136187|0 |1 is obsolete| | Attachment #136198|0 |1 is obsolete| | Attachment #136199|0 |1 is obsolete| | --- Comment #10 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136200 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136200&action=edit Bug 30447: Check if transfers arrived or cancelled TO test: 1 - Find a bib with a single item 2 - Browse to Circulation->Transfer 3 - Transfer the item to another branch 4 - Check the item in at current branch and cancel the transfer on the dialog 5 - Place a hold on the biblio for a patron at current branch 6 - Browse to Circulation->Holds to pull 7 - Item does not show 8 - Apply patch, restart all 9 - Browse to Circulation->Holds to pull 10 - Item shows Signed-off-by: Owen Leonard <oleonard at myacpl.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 20:36:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 18:36:06 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-hCs6hRHiFA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 --- Comment #11 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136201 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136201&action=edit Bug 30447: Unit tests Added tests to ensure that Koha::Holds->get_items_that_can_fill returns items with datecancelled and datearrived Added test for correct number of items for each call of "get_items_that_fill" -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 21:17:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 19:17:47 +0000 Subject: [Koha-bugs] [Bug 29303] Quick add form duplicates HTML ID's In-Reply-To: <bug-29303-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29303-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29303-70-RMA3KJ31Uw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29303 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |lucas at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:22:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:22:47 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-xsCiH1DLNT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |fridolin.somers at biblibre.co |y.org |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:29:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:29:09 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-EU15xSoAob@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 --- Comment #111 from Fridolin Somers <fridolin.somers at biblibre.com> --- QA script is happy. Just a warning with and without patches : File not found : lib/jquery/jquery-ui-1.13.1.css at /kohadevbox/koha/Koha/Template/Plugin/Asset.pm line 107. We should look at this in another bug. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:30:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:30:14 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-kGISbYiCLV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136188|0 |1 is obsolete| | --- Comment #112 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136202 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136202&action=edit Bug 30733: Simplify translatable strings And a few minor fixes when they where causing issues for translatability. And rephrased a string about password reset to have it identical to other strings with the same meaning. Simplified via wrapping strings with <span> to split to huge concatenated strings with a lot of %s everywhere. == Test plan == This patch needs mainly proof reading. Still it's possible to do some basic testing to demonstrate that adding a <span> in an IF doesn't break anything. Pick in one of the 110 modified templates a string that you know how to display. Otherwise: 1. acquisitions => vendor => basket => add to basket => search "from existing record" => add order 2. Cancel the order 3. You see without issue "Bibliographic record will not be deleted" 4. administration => Patron categories 5. Try to delete a used and unused category 6. You see as expected Category XXXX is in use. Deletion not possible! and Confirm deletion of category XXXX Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:31:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:31:19 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-J0Qu2hkwfA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136189|0 |1 is obsolete| | --- Comment #113 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136203 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136203&action=edit Bug 30733: Move all semicolons inside the translatable strings In the 1st patch, sometimes they where left out Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:31:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:31:34 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-ZXDsj1vbKX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136190|0 |1 is obsolete| | --- Comment #114 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136204 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136204&action=edit Bug 30733: Fix string context lost due to being in two parts Due to conditions. Things like "Edit batch" need to be keept in one strings. Also removed some capitalization because it wasn't needed and wasn't consistend with <title> and <h1> which had now capitalization. Also fixed patron edit-batch.tt and edit-layout.tt because they were incomplete in regard to their label counterparts. They had the condition on description and batch_id but weren't displaying anything different between the two cases. Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:31:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:31:48 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-7zsDVLvLfa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136191|0 |1 is obsolete| | --- Comment #115 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136205 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136205&action=edit Bug 30733: Undo bad handling of a plural case Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:32:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:32:03 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-QwO31TwwYj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136192|0 |1 is obsolete| | --- Comment #116 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136206 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136206&action=edit Bug 30733: Wrap one more string in <span> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:32:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:32:18 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-B21ynYSt9v@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136193|0 |1 is obsolete| | --- Comment #117 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136207 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136207&action=edit Bug 30733: Undo <span> in an ICS calendar file Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:32:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:32:33 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-i7305vq4Tv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136194|0 |1 is obsolete| | --- Comment #118 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136208 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136208&action=edit Bug 30733: Simplify some singular cases To be sure translators don't think it's wrong and translate it plurally. Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:32:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:32:48 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-n9xgI1jKKO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136195|0 |1 is obsolete| | --- Comment #119 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136209 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136209&action=edit Bug 30733: Undo some <span> additions that don't yield good strings They need more complex solutions that would be better in a follow up ticket to not drag this one too long. Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:33:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:33:03 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-xPT6TjJRgs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136196|0 |1 is obsolete| | --- Comment #120 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136210 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136210&action=edit Bug 30733: fix url => URL to merge with existing string Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:34:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:34:00 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-olUtII5C1F@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136197|0 |1 is obsolete| | --- Comment #121 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136211 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136211&action=edit Bug 30733: Split strings differently Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:34:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:34:26 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-Iawux7thpc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:34:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:34:54 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-s5yDeXIbAD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 --- Comment #122 from Fridolin Somers <fridolin.somers at biblibre.com> --- Maybe add some nice text to go in the release notes -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:35:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:35:50 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-DicHlBtIes@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 --- Comment #123 from Fridolin Somers <fridolin.somers at biblibre.com> --- Careful when generating HTML release notes, <span> in commit messages must be escaped. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:42:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:42:50 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-SsaydCZoO7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |Cleanup of translatable release notes| |text done by guiding the | |string extractor to make it | |do simpler strings for | |translators instead of | |large concatenation of long | |strings in the code with a | |lot of unnecessary %s | |placeholders. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:45:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:45:09 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-1BDpWQAGJa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 --- Comment #124 from Victor Grousset/tuxayo <victor at tuxayo.net> --- > Maybe add some nice text to go in the release notes Done, is it good? > Careful when generating HTML release notes, <span> in commit messages must be escaped. Wasn't the issue only for the ticket name? Commit don't end up in release notes. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:53:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:53:49 +0000 Subject: [Koha-bugs] [Bug 30823] Recalls should use 'FILL' in action logs In-Reply-To: <bug-30823-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30823-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30823-70-Uhcm9W8NU3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30823 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 16 23:53:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 21:53:53 +0000 Subject: [Koha-bugs] [Bug 30823] Recalls should use 'FILL' in action logs In-Reply-To: <bug-30823-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30823-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30823-70-16K2xksyFV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30823 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135741|0 |1 is obsolete| | --- Comment #6 from David Nind <david at davidnind.com> --- Created attachment 136212 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136212&action=edit Bug 30823: Filling recalls uses 'FILL' action in action logs This enhancement changes recall fulfillment actions to log with the FILL action. It will also update existing recalls FULFILL actions in the database to use the FILL action. To test: 1) Enable the UseRecalls system preference and set up your recalls-related circulation rules. Confirm RecallsLog is enabled. 2) Check out an item to Patron B. 3) Log into the OPAC as Patron A and search for the item. 4) Place a recall on that item. 5) Go back to the staff client and check the item in. Confirm the recall as waiting for Patron A. 6) Check out the item for Patron A to fill the recall. 7) Go to Tools -> Log Viewer. Confirm there is a FULFILL action. Choose the following search params to browse system logs: - modules: recalls - actions: fill 8) Submit the search and confirm the recall DOES NOT show. 9) Apply the patch, update database, restart services. 10) Refresh the log viewer and repeat step 7. Submit the search and confirm the recall DOES show. Confirm there is no longer a FULFILL action as both holds and recalls will use FILL. 11) Check in the item. 12) Repeat steps 2-6. We are ensuring that future recalls are logged using the FILL action. 13) Repeat step 7. Confirm all test recalls are now showing in search results. Sponsored-by: Catalyst IT Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 00:24:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 22:24:17 +0000 Subject: [Koha-bugs] [Bug 18064] Long overdue cronjob does not follow the library's calendar and skip closed days In-Reply-To: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18064-70-CXHm8Ek5uV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #130363|0 |1 is obsolete| | --- Comment #18 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136213 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136213&action=edit Bug 18064 : Add syspref to launch longOverdue script with calendar support The problem here is that the longOverdue script does not support calendars and when libraries set their holidays, long overdues do not take this into account. For example, during the covid pandemic, some libraries were closed for days, maybe months, but longOverdue didn't care and set "lost" or other values on the items. This fix / enhancement based on taking calendars into account to test it, regardless of your rules related to longOverdue, I propose this test plan: Test plan : 1) For clearer vision on what the patch does, have at least "2" libraries 2) Go to Tools/Calendar and place holidays, on each of the libraries for example, of any kind (special, repeated, as you want) 3) Manually run the misc/cronjobs/longoverdue.pl script with the -v (verbose) argument to get as much information as possible 4) You will see a common "block", with today's date + 366 days (by default if you don't pass any arguments to the script), holidays are not taken into account in this date range 5) Apply my patch 6) Launch the updatedatabase 7) Set the new system preference "LongOverdueNoticeCalendar" to "use calendar" 8) Repeat step 3 9) You will see in output one line per library and according to the number of days off in the interval of dates, the start date of the analysis will have been postponed by as many days in order to take these holidays into account. If something is not completely clear, we can of course discuss it -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 00:24:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 22:24:21 +0000 Subject: [Koha-bugs] [Bug 18064] Long overdue cronjob does not follow the library's calendar and skip closed days In-Reply-To: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18064-70-wExBhhlCC1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135888|0 |1 is obsolete| | --- Comment #19 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136214 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136214&action=edit Bug 18064: (follow-up) Get libraries as a list Output: One line per library as expected, along with the date + 366 days for libraries without set holidays, and start dates postponed by 366 days + the amount of days corresponding to library holidays. Added random holidays to 3 different libraries, of different variety, (Holiday Repeating Yearly, Unique Holiday, etc.) and ran longoverdue.pl, getting the same start days, then ran with patch applied and returned above result as expected. Test plan : 1) For clearer vision on what the patch does, have at least "2" libraries 2) Go to Tools/Calendar and place holidays, on each of the libraries for example, of any kind (special, repeated, as you want) 3) Manually run the misc/cronjobs/longoverdue.pl script with the -v (verbose) argument to get as much information as possible 4) You will see a common "block", with today's date + 366 days (by default if you don't pass any arguments to the script), holidays are not taken into account in this date range 5) Apply my patch 6) Launch the updatedatabase 7) Set the new system preference "LongOverdueNoticeCalendar" to "use calendar" 8) Repeat step 3 9) You will see in output one line per library and according to the number of days off in the interval of dates, the start date of the analysis will have been postponed by as many days in order to take these holidays into account. Signed-off-by: Michal Urban <michalurban177 at gmail.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 00:27:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 22:27:09 +0000 Subject: [Koha-bugs] [Bug 18064] Long overdue cronjob does not follow the library's calendar and skip closed days In-Reply-To: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18064-70-NmynlxHfyc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |michalurban177 at gmail.com Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 01:44:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 16 Jun 2022 23:44:08 +0000 Subject: [Koha-bugs] [Bug 10950] Add preferred pronoun field to patron record In-Reply-To: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10950-70-SmT4bw843m@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950 --- Comment #35 from David Cook <dcook at prosentient.com.au> --- (In reply to Owen Leonard from comment #22) > As a future improvement, we might want to do something like what I > implemented for my library's internal employee directory app: A JS plugin > called Tom Select (https://tom-select.js.org/) which allows you to specify > some predefined choices but also allows the user to enter their own custom > values instead. The predefined choices could be added as authorized values. I like the sound of being able to choose between your own free text or a predefined choice -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 02:45:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 00:45:09 +0000 Subject: [Koha-bugs] [Bug 10662] Build OAI-PMH Harvesting Client In-Reply-To: <bug-10662-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10662-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10662-70-d2zdxz7njo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10662 --- Comment #313 from David Cook <dcook at prosentient.com.au> --- (In reply to Koha Team University Lyon 3 from comment #311) > Hi, > KohaLA is intersted in continuing this feature and we are probably going to > fund some devs on that. > > Sonia That's great to hear! I think the problem with bug 10662 is that I tried to create too many things in one bug report. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 03:04:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 01:04:16 +0000 Subject: [Koha-bugs] [Bug 10662] Build OAI-PMH Harvesting Client In-Reply-To: <bug-10662-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10662-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10662-70-L5U2JrP9t7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10662 --- Comment #314 from David Cook <dcook at prosentient.com.au> --- Fortunately, since we have RabbitMQ now, some of it should be a lot easier! (I was just looking at bug 27421 which asynchronously stages, imports, and reverts MARC imports. It could be helpful for this work too.) *The hard part for the OAI-PMH harvester in Koha is the task scheduling.* Koha doesn't have any way to let users define their own task schedules. (Back in 2018, Frido also mentioned Koha support companies might not want to let librarians set task schedules for OAI-PMH anyway for performance/API rate limiting reasons.) That said, if librarians controlling the scheduling doesn't matter for you, you could just create a cronjob that sends OAI-PMH tasks to RabbitMQ (or a plugin that uses the nightly plugin cronjob). Then all that's left is to create a Koha::BackgroundJob::OAIPMHHarvest class. -- The background job class could probably encapsulate the entire task. (For bug 10662, the requirement was to download records every 3 seconds, so I had to split the harvest/download and import tasks into two separate asynchronous tasks to achieve fast enough download speeds.) For bug 10662, I also had a requirement to handle very long XML streams over HTTP rather than the usual short XML responses, which technically is allowed according to the OAI-PMH specification, and that meant a custom downloader. It was high performance but it meant I had to add even more code. In theory, you might be able to have Koha::BackgroundJob::OAIPMH::Download, Koha::BackgroundJob::OAIPMH::Stage and Koha::BackgroundJob::OAIPMH::Import classes. The scheduler (e.g. cronjob) could enqueue a Koha::BackgroundJob::OAIPMH::Download task which downloads the records, that could then enqueue a Koha::BackgroundJob::OAIPMH::Stage task to stage (ie run the matcher/duplicate finder and ideally do some OAI-PMH specific checks), and that could enqueue the final Koha::BackgroundJob::OAIPMH::Import task to run the actual import. (The advantage of breaking it into 3 different tasks is that Koha by default only has 1 background job worker, so very long tasks could prevent other tasks from running in a timely way.) (However, if we had more than 1 background job worker, I'd be a little concerned about race conditions where Worker B tries to import Record 1-A after Worker A has imported Record 1-B where Record 1-A is older than Record 1-B. There needs to be a sanity check to make sure that records only overwrite older records.) Depending on how bug 27421 works, Koha::BackgroundJob::OAIPMH::Stage and Koha::BackgroundJob::OAIPMH::Import could potentially be subclasses of Koha::BackgroundJob::StageMARCForImport and Koha::BackgroundJob::StageMARCForImport. Although I don't really like Koha's built-in MARC import classes for OAI-PMH, because once records are staged they're imported without any sanity checks. Also record matching rules are user-controllable and solely MARC based so they're unreliable and not great for matching incoming OAI-PMH records to past harvested records. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 03:17:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 01:17:35 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-47IRbPiSo6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #17 from David Cook <dcook at prosentient.com.au> --- (In reply to Jonathan Druart from comment #15) > With those 3 patches I think most of the work is done. > > To continue I need people to commit to an involvement on these patches. > To start I would like someone familiar with the import process to test the > workflow and see if they are happy. > > Then we will need to add test coverage and certainly provide some bug fixes. > > Who's onboard? I'm keen. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 03:47:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 01:47:09 +0000 Subject: [Koha-bugs] [Bug 30912] Database update fails for 21.12.00.016 Bug 30060 In-Reply-To: <bug-30912-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30912-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30912-70-pmAUcRT3jC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30912 Mohd Hafiz Yusoff <mhby87 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mhby87 at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 04:31:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 02:31:00 +0000 Subject: [Koha-bugs] [Bug 30962] REST API: Add endpoint /patrons/:patron_id/check_password In-Reply-To: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30962-70-TkcPEEJ3B5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30962 --- Comment #6 from David Cook <dcook at prosentient.com.au> --- (In reply to Katrin Fischer from comment #5) > (In reply to David Cook from comment #4) > > (In reply to David Cook from comment #3) > > > (In reply to Tomás Cohen Arazi from comment #2) > > > > How will we prevent abuse for this password-guessing service? Hehe > > > > > > It's not a public/anonymous endpoint. Only an authenticated and authorized > > > user could use it. > > > > But happy to add more security to lock accounts on too many bad password > > checks. > > I think it would make sense to use the existing lock feature here, also > consistent. > > ILS-DI locks too. Done! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:08:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:08:41 +0000 Subject: [Koha-bugs] [Bug 30405] Style of address in patron search result are 110% In-Reply-To: <bug-30405-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30405-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30405-70-4fPItjKrRH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30405 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #7 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:09:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:09:16 +0000 Subject: [Koha-bugs] [Bug 30534] borrowers.guarantorid not present on database In-Reply-To: <bug-30534-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30534-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30534-70-JS6B9hShTI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30534 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to stable |RESOLVED --- Comment #9 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:10:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:10:00 +0000 Subject: [Koha-bugs] [Bug 30191] Authority search result list in the OPAC should use 'record' instead of 'biblios' In-Reply-To: <bug-30191-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30191-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30191-70-yp1EuxI78T@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30191 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Resolution|--- |FIXED Status|Pushed to stable |RESOLVED --- Comment #11 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:11:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:11:47 +0000 Subject: [Koha-bugs] [Bug 30587] Incorrect translations in some templates In-Reply-To: <bug-30587-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30587-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30587-70-IL5WMckoQe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30587 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.05.00 |22.05.00,v21.11.06 released in| | Status|Pushed to master |Pushed to stable CC| |victor at tuxayo.net --- Comment #9 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Note: this have been backported to 21.11.x for v21.11.06 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:16:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:16:40 +0000 Subject: [Koha-bugs] [Bug 30587] Incorrect translations in some templates In-Reply-To: <bug-30587-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30587-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30587-70-G8qcyFzjxA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30587 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED --- Comment #10 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:17:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:17:47 +0000 Subject: [Koha-bugs] [Bug 30482] Potential for bad string concatenation in cataloging validation error message In-Reply-To: <bug-30482-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30482-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30482-70-MS7lf5Rs0c@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30482 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED CC| |victor at tuxayo.net Resolution|--- |FIXED --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:18:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:18:49 +0000 Subject: [Koha-bugs] [Bug 30224] Wrong important field shown in cataloguing validation In-Reply-To: <bug-30224-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30224-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30224-70-9AigmQRghn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30224 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED CC| |victor at tuxayo.net Resolution|--- |FIXED --- Comment #6 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:19:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:19:20 +0000 Subject: [Koha-bugs] [Bug 29077] Warns when searching blank index In-Reply-To: <bug-29077-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29077-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29077-70-a0Oox5ZAGr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29077 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED CC| |victor at tuxayo.net --- Comment #10 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:20:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:20:38 +0000 Subject: [Koha-bugs] [Bug 29092] Table settings for account_fines table is missing Updated on column and hides the wrong things In-Reply-To: <bug-29092-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29092-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29092-70-l8uVzKPTJc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29092 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to master |Pushed to stable Version(s)|22.05.00 |22.05.00,v21.11.06 released in| | --- Comment #5 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Note: Backported: Pushed to 21.11.x branch for 21.11.06 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:21:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:21:12 +0000 Subject: [Koha-bugs] [Bug 29092] Table settings for account_fines table is missing Updated on column and hides the wrong things In-Reply-To: <bug-29092-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29092-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29092-70-DAMNZVTdLi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29092 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to stable |RESOLVED --- Comment #6 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:21:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:21:36 +0000 Subject: [Koha-bugs] [Bug 29092] Table settings for account_fines table is missing Updated on column and hides the wrong things In-Reply-To: <bug-29092-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29092-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29092-70-BheK1uCgbB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29092 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.05.00,v21.11.06 |22.05.00,21.11.06 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 05:25:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 03:25:41 +0000 Subject: [Koha-bugs] [Bug 24001] Cannot edit card template In-Reply-To: <bug-24001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24001-70-78LVDiaHG6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24001 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.05.00,21.11.06 |22.05.00,21.11.06,21.05.16 released in| | Status|Pushed to stable |Pushed to oldstable CC| |victor at tuxayo.net --- Comment #62 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Backported: Pushed to 21.05.x branch for 21.05.16 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 06:55:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 04:55:53 +0000 Subject: [Koha-bugs] [Bug 30962] REST API: Add endpoint /patrons/:patron_id/check_password In-Reply-To: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30962-70-vvoqR51TGN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30962 David Cook <dcook at prosentient.com.au> 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. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 06:55:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 04:55:57 +0000 Subject: [Koha-bugs] [Bug 30962] REST API: Add endpoint /patrons/:patron_id/check_password In-Reply-To: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30962-70-MrXpGaCgHs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30962 --- Comment #7 from David Cook <dcook at prosentient.com.au> --- Created attachment 136215 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136215&action=edit Bug 30962: REST API: Add endpoint /patrons/:patron_id/check_password This patch adds an endpoint for /patrons/:patron_id/check_password This allows a third-party, using an authenticated and authorized Koha API user, to check if the username and password given by a user is correct in Koha. For example, a Keycloak extension can be created using its User Storage SPI to use Koha as the user database for Keycloak. This API allows us to authenticate the user as a particular Koha user - without creating a Koha user session for them. Test plan: 0. Apply patch and koha-plack --restart kohadev 1. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=RESTBasicAuth 2. Enable "RESTBasicAuth" 3. Run the following commands while substituting correct values for <koha_user> and <koha_password> 3. curl -XPOST -H "Content-Type: application/json" -u <koha_user>:<koha_password> http://localhost:8081/api/v1/patrons/51/check_password -d '{ "password": "<koha_password>" }' -v 4. Note "200 OK" response 5. curl -XPOST -H "Content-Type: application/json" -u <koha_user>:<koha_password> http://localhost:8081/api/v1/patrons/51/check_password -d '{ "password": "this is definitely not the password" }' -v 6. Note "400 Bad Request" response and error message {"error":"Invalid password"} -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 07:14:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 05:14:04 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-wt8otNIVdp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Patch doesn't apply --- Comment #11 from David Cook <dcook at prosentient.com.au> --- Went to apply it as a dependency of bug 27421 and noticed patches don't apply anymore: Bug 30822 - BatchCommit does not deal with indexation correctly 135963 - Bug 30822: Make BatchCommitRecords update the index in one request 135964 - Bug 30822: Clarify that BatchCommitItems is a private function Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 30822: Make BatchCommitRecords update the index in one request Using index info to reconstruct a base tree... M C4/ImportBatch.pm Falling back to patching base and 3-way merge... Auto-merging C4/ImportBatch.pm CONFLICT (content): Merge conflict in C4/ImportBatch.pm error: Failed to merge in the changes. Patch failed at 0001 Bug 30822: Make BatchCommitRecords update the index in one request -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 07:22:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 05:22:18 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-0KciQ6xapK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #18 from David Cook <dcook at prosentient.com.au> --- (In reply to David Cook from comment #17) > (In reply to Jonathan Druart from comment #15) > > Who's onboard? > > I'm keen. It looks like bug 30822 doesn't apply to master anymore. But 27421 cleanly applies without it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 07:23:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 05:23:26 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-7fYt8CzgS5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Failed QA --- Comment #19 from David Cook <dcook at prosentient.com.au> --- My test plan: 0. Apply patches 1. Comment out the following lines in /etc/koha/apache-shared-intranet-plack.conf: ProxyPass "/cgi-bin/koha/tools/manage-marc-import.pl" "!" ProxyPass "/cgi-bin/koha/tools/stage-marc-import.pl" "!" 2. service apache2 reload 3. koha-plack --restart kohadev 4. Go to http://localhost:8081/cgi-bin/koha/catalogue/export.pl?format=marcxml&op=export&bib=29 5. Go to http://localhost:8081/cgi-bin/koha/tools/stage-marc-import.pl 6. Upload bib-29.marcxml file 7. Change "How to process items" to "Ignore items" 8. Click "Stage for import" 9. Click "View detail of the enqueued job" 10. Note that a job has been created in Koha at http://localhost:8081/cgi-bin/koha/admin/background_jobs.pl?op=view&id=1 However, the job isn't getting processed. Note the following in /var/log/koha/kohadev/worker-output.log: Exception 'Koha::Exception' thrown 'stage_marc_for_import is not a valid job_type' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 07:28:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 05:28:48 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-1wEaznM5ia@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |In Discussion --- Comment #20 from David Cook <dcook at prosentient.com.au> --- (In reply to David Cook from comment #19) > However, the job isn't getting processed. Note the following in > /var/log/koha/kohadev/worker-output.log: > > Exception 'Koha::Exception' thrown 'stage_marc_for_import is not a valid > job_type' I imagine that's because I need to restart the workers actually... I'll change my test plan... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 07:36:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 05:36:17 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-Am6br8m0PD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 07:36:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 05:36:21 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-qX8ZvMIuwC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136127|0 |1 is obsolete| | --- Comment #21 from David Cook <dcook at prosentient.com.au> --- Created attachment 136216 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136216&action=edit Bug 27421: Use Background job for staging MARC records for import Signed-off-by: David Cook <dcook at prosentient.com.au> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 07:36:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 05:36:25 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-KH1oNxs60a@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136128|0 |1 is obsolete| | --- Comment #22 from David Cook <dcook at prosentient.com.au> --- Created attachment 136217 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136217&action=edit Bug 27421: Commit and revert Signed-off-by: David Cook <dcook at prosentient.com.au> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 07:36:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 05:36:41 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-4a6Hx7os8g@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #23 from David Cook <dcook at prosentient.com.au> --- My test plan: 0. Apply patches 1. Comment out the following lines in /etc/koha/apache-shared-intranet-plack.conf: ProxyPass "/cgi-bin/koha/tools/manage-marc-import.pl" "!" ProxyPass "/cgi-bin/koha/tools/stage-marc-import.pl" "!" 2. service apache2 reload 3. service koha-common restart #NOTE: We need to restart starman/Plack and the koha workers 4. Go to http://localhost:8081/cgi-bin/koha/catalogue/export.pl?format=marcxml&op=export&bib=29 5. Go to http://localhost:8081/cgi-bin/koha/tools/stage-marc-import.pl 6. Upload bib-29.marcxml file 7. Change "How to process items" to "Ignore items" 8. Click "Stage for import" 9. Click "View detail of the enqueued job" 10. Click "View batch" (or go to "Staged MARC management" and find the batch you were interested in) 11. Change "Matching rule applied" to "KohaBiblio (999$c)" 12. Change "Action if matching record found" to "Replace existing record with incoming record" 13. Change "Item processing" to "Ignore items"[1] 14. Click "Apply different matching rules" 15. Click "Import this batch into the catalog" 16. Click "View detail of the enqueued job"[2] 17. Note "Number of records updated" is "1" [1] not sure if this is a bug in these patches or if this is pre-existing. It sounds pre-existing iirc... [2] The text in this window isn't very user friendly. I think we could use more job-specific text. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 07:38:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 05:38:43 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-cbsC6Y4jPw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #24 from David Cook <dcook at prosentient.com.au> --- (In reply to Jonathan Druart from comment #15) > To continue I need people to commit to an involvement on these patches. > To start I would like someone familiar with the import process to test the > workflow and see if they are happy. I'm happy enough from a user perspective I think. It could probably use a bit more polishing but it looks like the guts are there. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 07:42:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 05:42:28 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-EPevRrYqjk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #25 from David Cook <dcook at prosentient.com.au> --- >From a dev perspective, I've been wanting to do clean asynchronous MARC importing as part of OAI-PMH harvesting, but I don't think I'd be able to use these background jobs. That's OK though. I think those will need to be customized anyway, and any reusable code will need to be refactored later... I wondered if ./misc/migration_tools/bulkmarcimport.pl would be able to use this, but unfortunately that script seems to have its own approach entirely to importing MARC records. So technically... I think this is good enough too. I reckon let's get this into the codebase, and optimizations can happen later. It gets the job done! -- Note that I only tested with 1 MARC record. QA will probably want to test using a larger number of MARC records. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 08:43:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 06:43:11 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-l8NdKB9fcW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 08:43:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 06:43:16 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-NujBNp0ROP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135963|0 |1 is obsolete| | Attachment #135964|0 |1 is obsolete| | --- Comment #12 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136218 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136218&action=edit Bug 30822: Make BatchCommitRecords update the index in one request When committing staged marc imports to the catalogue we will often be importing a batch of records. We don't want to send one index request per biblio affected, we want to index them all after the records have been modified otherwise we will end up with multiple tasks per record (when items are also affected). Test plan: 1) Use the stage marc record tool to stage and commit a set of records and confirm the behaviour remains correct. 2) If using Elastic, check that only one indexing job is queued to take place resulting from the committed import. Signed-off-by: Joonas Kylmälä <joonas.kylmala at iki.fi> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 08:43:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 06:43:20 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-Q0X8RE4Cy9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 --- Comment #13 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136219 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136219&action=edit Bug 30822: Clarify that BatchCommitItems is a private function BatchCommitItems is only being used within this module and isn't mentioned in EXPORT_OK. This patch simply renames it to _batchCommitItems to take the _ standard for private functions and also adds a little hint to the POD of the function to clarify that the caller must trigger a re-index. JK: Amended patch to rename also the function in t/db_dependent/ImportBatch.t and fix typo "commiting" => "commiting" Signed-off-by: Joonas Kylmälä <joonas.kylmala at iki.fi> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 08:48:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 06:48:27 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-9vprpsPTZH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 --- Comment #12 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Shouldn't we want both using the same code (a filter_by method in Koha::Item::Transfers)? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 08:51:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 06:51:43 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25498-70-w6aAvyZU5i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 --- Comment #50 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Katrin Fischer from comment #49) > > > > or 'Sharer' and 'Sharee'.. those feel funky but might actually be the > > clearest two quasi-terms.? > > I like those best from the suggested. user I guess is too general in context > here? Thx. Lets go with Sharee here, since this patron received the share and is not the owner who shared (which would be the sharer). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 08:54:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 06:54:52 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25498-70-uz1U2YvM0K@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 --- Comment #51 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Altough I must admit that $share->sharee is a bit funky indeed :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:02:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:02:17 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25498-70-i2KhA88Ivi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 --- Comment #52 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136220 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136220&action=edit Bug 25498: (QA follow-up) Rename virtualshelf->patron This patron is a 'sharee' (not the sharer). Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:03:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:03:40 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25498-70-u8bxbMoKKG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:04:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:04:17 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-6OMbo3EbMF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha at gmail. | |com --- Comment #18 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Tests are failing for me (second patch) # Failed test at t/db_dependent/Koha/Biblio.t line 547. # found warning: Use of uninitialized value in concatenation (.) or string at /kohadevbox/koha/Koha/Biblio.pm line 568. # found warning: Use of uninitialized value in concatenation (.) or string at /kohadevbox/koha/Koha/Biblio.pm line 568. # found warning: Use of uninitialized value $limit in concatenation (.) or string at /kohadevbox/koha/C4/Search.pm line 1331. # found warning: Warning from search_compat: 'Exception 'Koha::Exception' thrown 'error searching analytics' # expected to find warning: (?^u:Warning from search_compat: .* 'error searching analytics') # Looks like you failed 1 test of 5. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:04:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:04:24 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-4JhZka37Cg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:05:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:05:09 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-jUml1qWASK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #19 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Johanna, are you happy with Nick's patch? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:05:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:05:23 +0000 Subject: [Koha-bugs] [Bug 25498] Allow to change owner of public or shared list In-Reply-To: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25498-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25498-70-DUPgJ2c6Zn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25498 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136220|0 |1 is obsolete| | --- Comment #53 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136221 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136221&action=edit Bug 25498: (QA follow-up) Rename virtualshelfshare->patron This patron is a 'sharee' (not the sharer). Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:07:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:07:30 +0000 Subject: [Koha-bugs] [Bug 30678] Add OCLC_NO as option to OPACSearchForTitleIn In-Reply-To: <bug-30678-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30678-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30678-70-3iTrhpHPAo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30678 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Signed Off --- Comment #13 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Patch does not apply, Kyle ?? Applying: Bug 30678: Add OCLC_NO as option to OPACSearchForTitleIn Applying: Bug 30678: Adjust pref description Applying: Bug 30678: (follow-up) Add oclc_number routine and friends Applying: Bug 30678: (follow-up) Change call in opac scripts Using index info to reconstruct a base tree... M opac/opac-ISBDdetail.pl M opac/opac-MARCdetail.pl M opac/opac-detail.pl Falling back to patching base and 3-way merge... Auto-merging opac/opac-detail.pl Auto-merging opac/opac-MARCdetail.pl Auto-merging opac/opac-ISBDdetail.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:08:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:08:14 +0000 Subject: [Koha-bugs] [Bug 30980] Make patron selection more consistent In-Reply-To: <bug-30980-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30980-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30980-70-B5nmY6ZDvb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30980 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha at gmail. | |com --- Comment #1 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- But then we will lose the ability to use the different filters? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:08:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:08:33 +0000 Subject: [Koha-bugs] [Bug 30678] Add OCLC_NO as option to OPACSearchForTitleIn In-Reply-To: <bug-30678-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30678-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30678-70-ArwzMYZMez@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30678 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134844|0 |1 is obsolete| | --- Comment #14 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136222 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136222&action=edit Bug 30678: Add OCLC_NO as option to OPACSearchForTitleIn We need to pass OCLC_NO as key to C4::Output::parametrized_url. We get it from MARC21 035$a and strip the organizational code. Test plan: Add e.g. 62385712 in 035$a in a record. Add e.g. following link to pref OPACSearchForTitleIn: <a href="https://worldcat.org/search?q={OCLC_NO}" target="_blank">WorldCat (via OCLC number)</a> Open that record on detail page. Click More searches. Follow that link. Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:08:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:08:37 +0000 Subject: [Koha-bugs] [Bug 30678] Add OCLC_NO as option to OPACSearchForTitleIn In-Reply-To: <bug-30678-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30678-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30678-70-jD9pSrLqzf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30678 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134845|0 |1 is obsolete| | --- Comment #15 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136223 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136223&action=edit Bug 30678: Adjust pref description Test plan: Look up pref OPACSearchForTitleIn. Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:08:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:08:40 +0000 Subject: [Koha-bugs] [Bug 30678] Add OCLC_NO as option to OPACSearchForTitleIn In-Reply-To: <bug-30678-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30678-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30678-70-Pd5a8ZyWkB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30678 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134846|0 |1 is obsolete| | --- Comment #16 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136224 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136224&action=edit Bug 30678: (follow-up) Add oclc_number routine and friends As requested by QA, we should match the orgcode. Adding a few small routines in a Util module. Test plan: Run t/Koha/Util/MARC.t Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:08:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:08:44 +0000 Subject: [Koha-bugs] [Bug 30678] Add OCLC_NO as option to OPACSearchForTitleIn In-Reply-To: <bug-30678-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30678-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30678-70-DLzEjgsxc2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30678 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134847|0 |1 is obsolete| | --- Comment #17 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136225 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136225&action=edit Bug 30678: (follow-up) Change call in opac scripts Test plan: See first patch. Add orgcode OCoLC. Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:11:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:11:37 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-DmjK7cb018@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #20 from Johanna Räisä <johanna.raisa at koha-suomi.fi> --- I will test it today(In reply to Jonathan Druart from comment #19) > Johanna, are you happy with Nick's patch? I will test it today. I like that it is configurable but didn't check yet if there is an option to get it in biblionumber order which is the best option for us. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:18:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:18:54 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-QTi2rbfgqe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl Status|Signed Off |BLOCKED --- Comment #14 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- QA: Looking here -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:26:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:26:10 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-UAACDHQG4i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 Michal Denar <black23 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |black23 at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 09:47:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 07:47:45 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-pH0PqxxHKt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 --- Comment #15 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Martin Renvoize from comment #6) > (In reply to Joonas Kylmälä from comment #5) > > Good improvement! Just a small nit: as BatchCommitItems is a public function > > it should take either skip_record_index as a parameter or document clearly > > that it doesn't do indexing and it is left to the caller. > > Good Catch.. > > I'm wondering if the third option is to rename the function to be > 'private'.. it appears to only be called inside this module and isn't > exported either. Certainly some POD around it would also be sensible though. Just a thought. Not sure if we should invest time in renaming C4 functions private rather than getting them out of C4 ;) There will be a bunch more. Wouldnt rename them all. This is done, no problem. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:25:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:25:15 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-DhpTo1rxdc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 --- Comment #16 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- There is something funny going on here. Might be a config issue, but while the worker is running, I dont see any import finished but constantly a new process is spinning up for the background-job-progress ? Testing with Zebra only. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:40:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:40:56 +0000 Subject: [Koha-bugs] [Bug 30981] New: Add option to configure preferred pronouns as a pull down Message-ID: <bug-30981-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30981 Bug ID: 30981 Summary: Add option to configure preferred pronouns as a pull down Change sponsored?: --- Product: Koha Version: 20.11 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com This could work just like bsort1 and bsort2 for the statistic fields. We add a AV category that is emtpy, but once it is filled in, the pronouns field will show up as a pull down. While it's empty, it's a free text field. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:41:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:41:06 +0000 Subject: [Koha-bugs] [Bug 30981] Add option to configure preferred pronouns as a pull down In-Reply-To: <bug-30981-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30981-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30981-70-bvRUmpk3Tv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30981 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |10950 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950 [Bug 10950] Add preferred pronoun field to patron record -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:41:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:41:06 +0000 Subject: [Koha-bugs] [Bug 10950] Add preferred pronoun field to patron record In-Reply-To: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10950-70-M1uRXWu9Ay@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30981 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30981 [Bug 30981] Add option to configure preferred pronouns as a pull down -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:41:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:41:39 +0000 Subject: [Koha-bugs] [Bug 10950] Add preferred pronoun field to patron record In-Reply-To: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10950-70-yKjExaFSQn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950 --- Comment #36 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I've filed a new bug to not hold this up: Bug 30981 - Add option to configure preferred pronouns as a pull down -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:46:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:46:03 +0000 Subject: [Koha-bugs] [Bug 30982] New: Use the REST API for background job list view Message-ID: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 Bug ID: 30982 Summary: Use the REST API for background job list view Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: jonathan.druart+koha at gmail.com Reporter: jonathan.druart+koha at gmail.com QA Contact: testopia at bugs.koha-community.org We should implement and use a REST API route to retrieve the background job list. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:46:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:46:10 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-LTmN6rg34c@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30462 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30462 [Bug 30462] Should the background job list view hide index tasks by default? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:46:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:46:10 +0000 Subject: [Koha-bugs] [Bug 30462] Should the background job list view hide index tasks by default? In-Reply-To: <bug-30462-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30462-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30462-70-wuQwVmAJLj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30462 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30982 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 [Bug 30982] Use the REST API for background job list view -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:46:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:46:32 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-6ZnPiTrB34@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135019|0 |1 is obsolete| | --- Comment #135 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136226 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136226&action=edit Bug 28854: Database update -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:46:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:46:37 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-rlWATPavAF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135020|0 |1 is obsolete| | --- Comment #136 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136227 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136227&action=edit Bug 28854: DBIC Schema Updates -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:46:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:46:43 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-KRyqhJrde4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135021|0 |1 is obsolete| | --- Comment #137 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136228 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136228&action=edit Bug 28854: Expose functionality to attach items to bundles This patch adds methods the the Koha::Item object for managing item bundling operations and then exposes those methods via the REST API. We include the new `BundleNotLoanValue` preference for setting not for loan values when an item is added to a bundle. Finally, we expose bundle management via the catalogue details page. Test plan: 0) Apply patches up to this point and run the database update 1) Configuration: `BundleNotLoanValue` should have been set by the database update and point to a newly added AV value. 2) Creating a new bundle * Add a new bib record * Mark the bib record as a 'collection' type by setting leader position 7 to 'c' * Add a new item to this bib record * You should see a new 'Manage bundle' button available in the 'Actions' column of the Holdings table. * Clicking 'Manage bundle' should expand the table to include a new row directly beneath this one. * Use the new 'Add to bundle' button that appears in this row to trigger a modal that allows entering the barcode of items you wish to add to the bundle * Upon closing the modal, the bundle content table should reload and contain your newly associated items. * You can subsequently remove an item from a bundle using the new 'Remove' button. 3) Not for loan * Items that have been added into a bundle should now appear as 'Not for loan' from their original biblio record and note which bundle they belong to. 4) Error cases * Try adding an item that already belongs to a bundle to another bundle: Note an error is displayed in the modal form. 5) The bundles feature can be disabled by unsetting the `BundleNotLoanValue` system preference. TODO: Add Object Tests + API Tests -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:46:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:46:50 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-wtiHOx755u@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135022|0 |1 is obsolete| | --- Comment #138 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136229 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136229&action=edit Bug 28854: Update circulation functionality for bundles This patch updates the circulation system to account for bundle checkins. We add a content verification step to ensure bundle content is all present at checkin and we use this comparison to mark missing items as lost. Test plan 0) Apply patches up to this point 1) Checkin an item that belongs to a bundle * An alert should be triggered noting that the item belongs to a bundle * The option to remove the item from the bundle should be clear * Click remove should result in the alert dissapearing and the item having been removed from the bundle. 2) Checkin an item bundle * A modal confirmation dialog should appear requesting each item barcode be scanned * As items are scanned they should be highlighted in yellow in the bundle content table * Upon submission; * The user will be alerted to any unexpected items that were scanned and told to put them to one side. * The user will be alerted that any missing items in the validation will have been marked as lost. * The bundle item will be marked as checked in. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:46:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:46:55 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-mvoQO5SPzw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135023|0 |1 is obsolete| | --- Comment #139 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136230 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136230&action=edit Bug 28854: Highlight bundle rows to clarify UI -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:47:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:47:01 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-ZV2t82LUjf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135024|0 |1 is obsolete| | --- Comment #140 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136231 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136231&action=edit Bug 28854: Drop unique index on issue_id in return claims With the introduction of circulating items within a bundle set, we can now loose multiple items from the bundle from the same issue. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:47:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:47:07 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-UO8WS1GT73@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135025|0 |1 is obsolete| | --- Comment #141 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136232 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136232&action=edit Bug 28854: DBIC Update ReturnClaim Schema -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:47:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:47:14 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-PeA5IXnJLl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135026|0 |1 is obsolete| | --- Comment #142 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136233 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136233&action=edit Bug 28854: Record and display who lost the item This patch records the bundle issue from which an item is marked as lost so that we may use that to infer who lost the item (for later charges and display). Test plan 0) Apply all patches up to this point 1) Checkout a bundle to a user 2) Checkin the bundle and do not scan one of the barcodes at confirmation * Note that the item not scanned is marked as lost 3) Navigate to the biblio for the lost item and note that it is marked as lost. 4) Navigate to the biblio for the collection and expand the collection item that contains the lost item. Note the item is marked as lost and checkout details are listed. 5) Checkin the lost item * The item should be marked as found and the return_claims line should be marked as resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:47:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:47:24 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-YnqxLKqx1s@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135027|0 |1 is obsolete| | --- Comment #143 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136234 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136234&action=edit Bug 28854: Simplified status handling for bundle inventory check -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:47:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:47:30 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-1TjpBEKafQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135028|0 |1 is obsolete| | --- Comment #144 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136235 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136235&action=edit Bug 28854: Add option to print content list after verification We already allowed the user to view and print an updated content list after a varification showed that items were missing from the bundle. This patch adds the option to view and print the list even if the content has been varified to have not changed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:47:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:47:36 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-syG6jcgxDx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135029|0 |1 is obsolete| | --- Comment #145 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136236 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136236&action=edit Bug 28854: Add ordering to checkin validation modal This enhancement adds simple dataTable ordering to the verification modal table at bundle checkin time. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:47:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:47:42 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-xnbQ0Q022a@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135030|0 |1 is obsolete| | --- Comment #146 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136237 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136237&action=edit Bug 28854: Improve lost details display for bundle items This patch adds the return claim details to the bundle item status display on the catalogue details page. Test plan -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:47:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:47:48 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-w7RA8zRavL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135031|0 |1 is obsolete| | --- Comment #147 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136238 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136238&action=edit Bug 28854: Enable claims return view when BundleLostValue is set This patch adds the alternation of BundleLostValue to enable the return claims functionality when Bundles are enbled. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:47:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:47:54 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-2qcr4PBNf9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135032|0 |1 is obsolete| | --- Comment #148 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136239 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136239&action=edit Bug 28854: Highlight when a scanned item is unexpected -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:48:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:48:00 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Vljul9zeEi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135033|0 |1 is obsolete| | --- Comment #149 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136240 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136240&action=edit Bug 28854: Add count of scanned items to verification modal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:48:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:48:06 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-I8Q9gsoOFL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135034|0 |1 is obsolete| | --- Comment #150 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136241 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136241&action=edit Bug 28854: Add 'Remove from bundle' dialogue to details display This patch adds the counterpart of the 'Add to bundle' modal prompt for adding items to bundles from the catalogue details display. It allows for scanning barcodes to remove them from a bundle. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:48:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:48:12 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-qO5u7yAIgQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135035|0 |1 is obsolete| | --- Comment #151 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136242 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136242&action=edit Bug 28854: Add modal after checkin to print missing items list This patch adds a further modal to the post checkin alert to allow the user to print a view and print a list of items that went missing at this checkin to allow for replacements to be picked. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:48:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:48:18 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-9Gf1Yy014Z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135036|0 |1 is obsolete| | --- Comment #152 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136243 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136243&action=edit Bug 28854: (follow-up) Only count rows in the body This patch fixes the count to only include table rows in the body, i.e. skip the header row. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:48:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:48:24 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-PuyPNXdO33@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135037|0 |1 is obsolete| | --- Comment #153 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136244 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136244&action=edit Bug 28854: Make barcode comparison case insensative -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 10:53:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 08:53:29 +0000 Subject: [Koha-bugs] [Bug 30962] REST API: Add endpoint /patrons/:patron_id/check_password In-Reply-To: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30962-70-xXRNyHjDeR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30962 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ulrich.kleiber at bsz-bw.de -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:15:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:15:08 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-24VK4AuArx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 --- Comment #1 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136245 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136245&action=edit Bug 30982: REST API specs -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:15:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:15:12 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-w1cQCwNPLS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 --- Comment #2 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136246 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136246&action=edit Bug 30982: Use the REST API for background job list view -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:15:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:15:35 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-MXbL1r3Rzw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Status|ASSIGNED |In Discussion --- Comment #3 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Would that work for you, Martin? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:18:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:18:02 +0000 Subject: [Koha-bugs] [Bug 10950] Add preferred pronoun field to patron record In-Reply-To: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10950-70-Vk4eB57cxU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950 --- Comment #37 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- (In reply to Katrin Fischer from comment #36) > I've filed a new bug to not hold this up: > Bug 30981 - Add option to configure preferred pronouns as a pull down The problem I see is, if we start with free text and want a AV list by default next, the upgrade process will be harder. Not blocking, just noting. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:24:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:24:54 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-W3haixa9Ez@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 --- Comment #17 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Jonathan Druart from comment #10) > But maybe we need that part, for biblio deletions, what do you think? > > + if ( $record_type eq 'biblio' && ( @updated_biblionumbers || > @deleted_biblionumbers ) ) { > + my $indexer = Koha::SearchEngine::Indexer->new({ index => > $Koha::SearchEngine::BIBLIOS_INDEX }); > + if ( @deleted_biblionumbers ) { > + $indexer->index_records( \@deleted_biblionumbers, > "recordDelete", "biblioserver" ); > + } else { > + $indexer->index_records( \@updated_biblionumbers, > "specialUpdate", "biblioserver" ); > + } > + } I agree that for consistency, we should address that too. But we could say that this can be done on a new report. The title of this report is scoped to BatchCommitRecords. And we are talking BatchRevert here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:26:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:26:31 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-rswOkvZPRA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 --- Comment #18 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Marcel de Rooy from comment #16) > There is something funny going on here. Might be a config issue, but while > the worker is running, I dont see any import finished but constantly a new > process is spinning up for the background-job-progress ? Testing with Zebra > only. The worker is not yet relevant here. But what needs attention (somewhere), is that if BatchCommit silently fails, the js on the manage import page keeps polling for the status of something that crashed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:27:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:27:31 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-ICEDjFCtUK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch Status|BLOCKED |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:27:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:27:35 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-nBqUtWR3kG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136218|0 |1 is obsolete| | --- Comment #19 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136247 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136247&action=edit Bug 30822: Make BatchCommitRecords update the index in one request When committing staged marc imports to the catalogue we will often be importing a batch of records. We don't want to send one index request per biblio affected, we want to index them all after the records have been modified otherwise we will end up with multiple tasks per record (when items are also affected). Test plan: 1) Use the stage marc record tool to stage and commit a set of records and confirm the behaviour remains correct. 2) If using Elastic, check that only one indexing job is queued to take place resulting from the committed import. Signed-off-by: Joonas Kylmälä <joonas.kylmala at iki.fi> Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:27:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:27:39 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-2mVlSQcHjg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136219|0 |1 is obsolete| | --- Comment #20 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136248 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136248&action=edit Bug 30822: Clarify that BatchCommitItems is a private function BatchCommitItems is only being used within this module and isn't mentioned in EXPORT_OK. This patch simply renames it to _batchCommitItems to take the _ standard for private functions and also adds a little hint to the POD of the function to clarify that the caller must trigger a re-index. JK: Amended patch to rename also the function in t/db_dependent/ImportBatch.t and fix typo "commiting" => "commiting" Signed-off-by: Joonas Kylmälä <joonas.kylmala at iki.fi> Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:28:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:28:01 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-WnIJf7gUnp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl QA Contact|testopia at bugs.koha-communit |m.de.rooy at rijksmuseum.nl |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:28:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:28:10 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-gR5Aw382mK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:28:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:28:42 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-lLyyufakRE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Signed Off --- Comment #26 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Oops -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:28:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:28:49 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-QAaccQTtCi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|m.de.rooy at rijksmuseum.nl |testopia at bugs.koha-communit | |y.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:29:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:29:11 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-isP2ok5i6d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |m.de.rooy at rijksmuseum.nl |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:31:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:31:13 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-QALC6tRm3l@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #27 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Still applies. Might have a look rightaway.. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:31:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:31:39 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-pjZIo9MQ7L@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #21 from Johanna Räisä <johanna.raisa at koha-suomi.fi> --- I tested this and there are some problems. Component parts don't have items so sorting with item related fields is quite useless. The items are in the host record and component parts are additional information about the host record. Date of publication is problematic also since in most cases component parts have the same value. Author and title are quite messy also. The author field usually has the same value or is added only to the host record. The component parts are wanted to be always in the same order and same order the album or note has it. As Martin mentioned the sorting order could be in 773$g but it is rarely used. So if there would be an option to sort by biblionumber it would be the most "correct" way to get what catalogers want. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:34:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:34:00 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-kNBmwCyTNV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #154 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136249 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136249&action=edit Bug 28854: (QA follow-up) Fix QA tool complaints * Typo in code comment * Permissions on atomicupdate * Missing TT filter in template -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:34:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:34:20 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-TUYtSH5xAJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #28 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to David Cook from comment #25) > I reckon let's get this into the codebase, and optimizations can happen > later. It gets the job done! Without referring to this code specifically, but we did that before and what happened? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:37:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:37:48 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-mHS5O8oCdO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #29 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to David Cook from comment #25) > Note that I only tested with 1 MARC record. QA will probably want to test > using a larger number of MARC records. Hmm. Lets defer testing to the QA phase? :) I would say: back to NSO, and add another signoff? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:42:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:42:44 +0000 Subject: [Koha-bugs] [Bug 30983] New: Uneeded use of C4::Auth in Koha::REST::V1::Checkouts Message-ID: <bug-30983-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30983 Bug ID: 30983 Summary: Uneeded use of C4::Auth in Koha::REST::V1::Checkouts Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: jonathan.druart+koha at gmail.com QA Contact: testopia at bugs.koha-community.org Depends on: 17003 Koha::REST::V1::Checkouts use C4::Auth but don't need it Since commit 0404ecec4b619ebe14ac262332870004bb88878c Bug 17003: Adapt to OpenAPI Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17003 [Bug 17003] Add API route to get checkout's renewability -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:42:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:42:44 +0000 Subject: [Koha-bugs] [Bug 17003] Add API route to get checkout's renewability In-Reply-To: <bug-17003-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-17003-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-17003-70-a8edABNk4e@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17003 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30983 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30983 [Bug 30983] Uneeded use of C4::Auth in Koha::REST::V1::Checkouts -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:47:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:47:41 +0000 Subject: [Koha-bugs] [Bug 30926] Remove unnecessary use statements In-Reply-To: <bug-30926-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30926-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30926-70-aihgBoEvpX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30926 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135805|0 |1 is obsolete| | Attachment #135806|0 |1 is obsolete| | --- Comment #5 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136250 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136250&action=edit Bug 30926: Remove unnecessary use statements This is the result of (using a zsh shell): perl remove_unused_import.pl **/*.pl **/*.pm svc/* svc/**/* -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:47:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:47:46 +0000 Subject: [Koha-bugs] [Bug 30926] Remove unnecessary use statements In-Reply-To: <bug-30926-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30926-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30926-70-aqCZIZ5Ntx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30926 --- Comment #6 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136251 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136251&action=edit Bug 30926: Manual fixes Wrong occurrences caught by the script -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 11:51:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 09:51:15 +0000 Subject: [Koha-bugs] [Bug 30926] Remove unnecessary use statements In-Reply-To: <bug-30926-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30926-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30926-70-bOeWytwNwm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30926 --- Comment #7 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Tomas: Is this something that you would be willing to push quickly? In that case I might have a look soon,, -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 12:02:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 10:02:43 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-uwUAPAOme0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #30 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Jonathan Druart from comment #15) > With those 3 patches I think most of the work is done. > > To continue I need people to commit to an involvement on these patches. > To start I would like someone familiar with the import process to test the > workflow and see if they are happy. > > Then we will need to add test coverage and certainly provide some bug fixes. > > Who's onboard? Well, I was. No problem. Seeing no test plan from the author and no unit tests. But a signed off status :) Did you find some experienced user to get user feedback btw ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 12:03:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 10:03:34 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-vSBVL7kTbf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #155 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Working on this one :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 12:04:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 10:04:21 +0000 Subject: [Koha-bugs] [Bug 10950] Add preferred pronoun field to patron record In-Reply-To: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10950-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10950-70-t3cSqe5YpJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10950 --- Comment #38 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Jonathan Druart from comment #37) > (In reply to Katrin Fischer from comment #36) > > I've filed a new bug to not hold this up: > > Bug 30981 - Add option to configure preferred pronouns as a pull down > > The problem I see is, if we start with free text and want a AV list by > default next, the upgrade process will be harder. Not blocking, just noting. I agree, but I think as this is a new feature, we have some time prior release to figure it out. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 12:57:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 10:57:19 +0000 Subject: [Koha-bugs] [Bug 30984] New: Action logs should log the cronjob script name that generated the given log Message-ID: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30984 Bug ID: 30984 Summary: Action logs should log the cronjob script name that generated the given log Change sponsored?: --- Product: Koha Version: 21.05 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: kyle at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org When something is changed by a cronjob, and that entity is logged via action logs, we can know what changed, and that it was via a cronjob, but we cannot necessarily know which cronjob made that change. The closest we can come is to find the action logs for the cronjob module which ran before the change which is by no means reliable assuming the CronLog is even enabled. We should add a new column to action logs to store the name of the script ran for any action logs where the interface is "cron". -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 12:57:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 10:57:26 +0000 Subject: [Koha-bugs] [Bug 30984] Action logs should log the cronjob script name that generated the given log In-Reply-To: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30984-70-wBK2lWO4Np@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30984 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |kyle at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 12:57:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 10:57:35 +0000 Subject: [Koha-bugs] [Bug 30984] Action logs should log the cronjob script name that generated the given log In-Reply-To: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30984-70-uxgy5m14Kw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30984 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:05:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:05:24 +0000 Subject: [Koha-bugs] [Bug 30984] Action logs should log the cronjob script name that generated the given log In-Reply-To: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30984-70-vCrcF8GnNm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30984 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:05:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:05:27 +0000 Subject: [Koha-bugs] [Bug 30984] Action logs should log the cronjob script name that generated the given log In-Reply-To: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30984-70-bquHV9OMz3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30984 --- Comment #1 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136252 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136252&action=edit Bug 30984 - Action logs should log the cronjob script name that generated the given log When something is changed by a cronjob, and that entity is logged via action logs, we can know what changed, and that it was via a cronjob, but we cannot necessarily know which cronjob made that change. The closest we can come is to find the action logs for the cronjob module which ran before the change which is by no means reliable assuming the CronLog is even enabled. We should add a new column to action logs to store the name of the script ran for any action logs where the interface is "cron". Test plan: 1) Apply this patch 2) Run updatedatabase.pl 3) Enable all the Log/Logging sysprefs 4) Run some cronjobs that will generate action logs 5) Note the new action_logs column "script" contains the filename of the cronjob that caused the change. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:06:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:06:50 +0000 Subject: [Koha-bugs] [Bug 30984] Action logs should log the cronjob script name that generated the given log In-Reply-To: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30984-70-WGYGTBjh4q@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30984 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:08:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:08:17 +0000 Subject: [Koha-bugs] [Bug 30984] Action logs should log the cronjob script name that generated the given log In-Reply-To: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30984-70-Uodcoxqij9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30984 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:20:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:20:43 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-v93K00GG0i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136249|0 |1 is obsolete| | --- Comment #156 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136253 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136253&action=edit Bug 28854: (QA follow-up) Fix QA tool complaints * Typo in code comment * Permissions on atomicupdate * Missing TT filter in template * Spelling in template Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:25:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:25:23 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-6vJp7HaxoL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #157 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136254 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136254&action=edit Bug 28854: (follow-up) Use Koha::Item->itemtype introduced with bug 20469 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:32:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:32:45 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort by local-number in zebra In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-GOWYrUOFep@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #2 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136255 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136255&action=edit Bug 30879: Add option to sort components by biblionumber WIP This works for ES, but zebra sorts the biblionumber as a string, s=109 was my attempt based on https://software.indexdata.com/yaz/doc/tools.html#ccl.syntax which I don't fully understand -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:33:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:33:11 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-lMTNYoVLFR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add option to sort by |Add option to sort |local-number in zebra |components by biblionumber -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:34:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:34:02 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-w1hTkUvW7Q@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:34:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:34:06 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-tcufGFFOdP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #22 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136256 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136256&action=edit Bug 30327: Fix tests Corrected variable name on update to match everywhere else Added a default value for limit in buildQuery and only append limit if it has content -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:34:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:34:59 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-Ry4cGkjyhv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #23 from Nick Clemens <nick at bywatersolutions.com> --- (In reply to Jonathan Druart from comment #18) > Tests are failing for me (second patch) > Fixed, mismatch in update pref name and an undef value causing extra warnings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:38:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:38:43 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-Umiae7hEA9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #24 from Nick Clemens <nick at bywatersolutions.com> --- (In reply to Johanna Räisä from comment #21) > I tested this and there are some problems. Component parts don't have items > so sorting with item related fields is quite useless. The items are in the > host record and component parts are additional information about the host > record. > > Date of publication is problematic also since in most cases component parts > have the same value. Author and title are quite messy also. The author field > usually has the same value or is added only to the host record. The > component parts are wanted to be always in the same order and same order the > album or note has it. > > As Martin mentioned the sorting order could be in 773$g but it is rarely > used. So if there would be an option to sort by biblionumber it would be the > most "correct" way to get what catalogers want. Hi Johanna, We often see analytics for 'bound' volumes of serials, which can have differing copy dates. We also have libraries with individual articles in serials cataloged, so the title and author can vary and these values are how they have requested sorting. Biblionumber is a great addition, I simply cannot make it work in zebra other than the default ascending search. I do think we want to handle the sorting in the search engine, rather than our code, so I have moved the addition of biblionumber sorting to bug 30879. I think we can move this one forward, and then continue the work there? -Nick -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:41:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:41:36 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets to place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-TRVQjV2eYo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Peter Vashchuk <stalkernoid at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:41:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:41:40 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets to place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-bvSETWUxVB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Peter Vashchuk <stalkernoid at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136066|0 |1 is obsolete| | --- Comment #4 from Peter Vashchuk <stalkernoid at gmail.com> --- Created attachment 136257 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136257&action=edit Bug 30960: Don't allow user to place the hold without a pick-up place It's possible to place item-level hold without selecting a pick-up location, which causes problems: if the item is then returned, Koha tells about a hold, but gives error 500. At customer's hold tab you see the number of holds, but cannot see the actual holds there. However, if you go to the title in question, then modify the hold so that it has a pick-up place, then the hold will work normally again. This patch fixes already existing but not working js error message and ensures that hold cannot be made while pickup location is undefined. To reproduce: 1. Go to admin page, to the libraries configurations, and disable pickup location for one of them. 2. Pick any biblio that has items that have that same library as a default pickup location. 3. When placing the item-level hold, notice that the pickup location dropdown box is empty by default. Keep it empty, place the hold. 4. Go to the patron's page of the patron who you placed that hold for, check that it doesn't show the new hold. 5. Apply patch. 6. Repeat steps 2 and 3, it shouldn't let you make the item-level hold until you select a specific pickup location. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 13:51:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 11:51:30 +0000 Subject: [Koha-bugs] [Bug 30447] pendingreserves.pl is checking too many transfers In-Reply-To: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30447-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30447-70-IekhyCn0OE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30447 --- Comment #13 from Nick Clemens <nick at bywatersolutions.com> --- (In reply to Jonathan Druart from comment #12) > Shouldn't we want both using the same code (a filter_by method in > Koha::Item::Transfers)? Yes, that would be a good goal. I will move that patch forward when you write it ;-) This one fixes the bug and backports nicely for now, can it move forward? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 14:00:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 12:00:53 +0000 Subject: [Koha-bugs] [Bug 28355] Deprecate / remove Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-706Jgx1Drv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 14:00:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 12:00:57 +0000 Subject: [Koha-bugs] [Bug 28355] Deprecate / remove Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-oC9ouZ7zor@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 --- Comment #3 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136258 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136258&action=edit Bug 28355: Add a note that SMS to email via mobile provider is not recommended -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 14:09:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 12:09:17 +0000 Subject: [Koha-bugs] [Bug 30985] New: Refine search doesn't work when item types contain same string (eg BK & BK-E) Message-ID: <bug-30985-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30985 Bug ID: 30985 Summary: Refine search doesn't work when item types contain same string (eg BK & BK-E) Change sponsored?: --- Product: Koha Version: 21.11 Hardware: All OS: Linux Status: NEW Severity: normal Priority: P5 - low Component: Searching Assignee: koha-bugs at lists.koha-community.org Reporter: mcilwain at berlin-international.de QA Contact: testopia at bugs.koha-community.org When trying to a refine search for books only (no ebooks), I noticed nothing was happening; I was still geting all books AND ebooks. Upon further inspection I realized that the authorized values for books was BK and eBooks was BK-E. I realized that Koha was probably simply not being very strict when narrowing results by item type and was returning BK and BK-E because they both contained the string 'BK'. I tested whether this was the case with other item types and didn't have an issue. I then tested by creating a new item type with authorized value EPUB and manually switched some BK-E records to the new item type (both 942$c and 952$y) and that resolved the issue. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 14:42:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 12:42:41 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-jCVnOnzAri@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA CC| |nick at bywatersolutions.com --- Comment #31 from Nick Clemens <nick at bywatersolutions.com> --- I tried testing, if I stage with matching it seems to die every time - it is also a bad experience when staging fails - the job remains at 'Started' and the report is present but empty When I import: - The job says 'Started' but also shows 'Completed import of records' - When it finishes, there is no link back to the batch - If it fails it says 'Finished' "Progress 0/0" - From a completed import I can't get back to the background job (maybe not needed?) Lack of error feedback was problematic before, and is worse here because the user is moved to a different section of Koha and the progress is less visible - before you had a stuck bar, now just a not updating screen I like this alot but do think we need to fix these other problems while we do this work - it can be a second bug while we address functionality here, but I would like to see them pushed together in that case -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:12:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:12:30 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-yT3eLnUxrG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:12:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:12:34 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-WdaQB4wlQW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136025|0 |1 is obsolete| | Attachment #136026|0 |1 is obsolete| | Attachment #136027|0 |1 is obsolete| | --- Comment #45 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136259 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136259&action=edit Bug 30848: Add an ExpandCodedFields RecordProcessor filter This patch introduces a RecordProcessor filter for MARC::Record objects that replaces Koha codes with descriptions in the MARC::Record passed to the processor. Target usage: my $biblio = Koha::Biblios->find( $biblio_id, { prefetch => [ metadata ] } ); my $record = $biblio->metadata->record; my $processor = Koha::RecordProcessor->new( { filters => ('ExpandCodedFields'), options => { interface => 'opac', frameworkcode => $biblio->frameworkcode } } ); $processor->process( $record ); Test plan * Read the included unit test and confirm it makes sense and passes Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:12:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:12:37 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-El2LaddO9S@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 --- Comment #46 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136260 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136260&action=edit Bug 30848: Expand unit tests Add to the unit tests to test Library and Itemtype expansions as well as linking multiple subfields of the same marc field to such expansions. Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:12:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:12:41 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-FQPyG18HWh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 --- Comment #47 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136261 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136261&action=edit Bug 30848: Fix issue exposed by unit tests This patch changes the 'map' to a simple for loop so that we can easily map multiple subfields to a field without overwriting the first previous subfields in the structure. Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:12:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:12:45 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-aNV1Lbjwb2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 --- Comment #48 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136262 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136262&action=edit Bug 30848: Add exec flag to test Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:18:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:18:38 +0000 Subject: [Koha-bugs] [Bug 30985] Refine search doesn't work when item types contain same string (eg BK & BK-E) In-Reply-To: <bug-30985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30985-70-FWUJk2N143@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30985 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- That's because - is treated as a space. So the search for BK is ALSO a search for BK E. This has been reported often, but is actually more of a configuration issue. It's recommended to not use spaces or hyphens in your itemtype, collection and location codes. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:28:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:28:04 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-Vv1SeHKsr1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #25 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I think we can only push this if the biblionumber sorting still works or we would break the existing behaviour. Could "relevance" sorting not work here? As you noted in an earlier comment, the relevance in this case is always the same, the fallback for Zebra at least, is sorting by biblionumber for same relevance. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:29:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:29:00 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-u07LjsfGOd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #26 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Katrin Fischer from comment #25) > I think we can only push this if the biblionumber sorting still works or we > would break the existing behaviour. Ok, was too fast - I realized later it was random now. > Could "relevance" sorting not work here? As you noted in an earlier comment, > the relevance in this case is always the same, the fallback for Zebra at > least, is sorting by biblionumber for same relevance. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:29:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:29:51 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-ArvBs7LMnR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:29:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:29:54 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-LPHqoWXF7W@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 --- Comment #125 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:29:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:29:58 +0000 Subject: [Koha-bugs] [Bug 30938] Fix column configuration to the acquisitions home page In-Reply-To: <bug-30938-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30938-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30938-70-SIwx7i8Mix@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30938 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:30:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:30:03 +0000 Subject: [Koha-bugs] [Bug 30938] Fix column configuration to the acquisitions home page In-Reply-To: <bug-30938-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30938-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30938-70-idXp3LKogc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30938 --- Comment #5 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:32:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:32:57 +0000 Subject: [Koha-bugs] [Bug 18064] Long overdue cronjob does not follow the library's calendar and skip closed days In-Reply-To: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18064-70-ytisJ0fxNj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064 --- Comment #20 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136263 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136263&action=edit Bug 18064: (QA follow-up) Clean up code -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:34:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:34:26 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-msGGAn1oas@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Koha lets to place |Koha lets you place |item-level holds without a |item-level holds without a |pick-up place |pick-up place -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:35:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:35:16 +0000 Subject: [Koha-bugs] [Bug 18064] Long overdue cronjob does not follow the library's calendar and skip closed days In-Reply-To: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18064-70-6ihN9qCP8Z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064 --- Comment #21 from Kyle M Hall <kyle at bywatersolutions.com> --- Comment on attachment 136213 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136213 Bug 18064 : Add syspref to launch longOverdue script with calendar support Review of attachment 136213: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=18064&attachment=136213) ----------------------------------------------------------------- ::: misc/cronjobs/longoverdue.pl @@ +492,4 @@ > } > } > > +if (!( C4::Context->preference( 'LongOverdueNoticeCalendar' ) )) { Why is this here? I don't understand the utility of suppressing the summary if using the calendar. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:36:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:36:28 +0000 Subject: [Koha-bugs] [Bug 29963] Date accessioned plugin should not automatically fill today's date on cataloguing screens In-Reply-To: <bug-29963-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29963-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29963-70-qPkmxYobPt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29963 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:36:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:36:31 +0000 Subject: [Koha-bugs] [Bug 29963] Date accessioned plugin should not automatically fill today's date on cataloguing screens In-Reply-To: <bug-29963-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29963-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29963-70-DX7riZRxu2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29963 --- Comment #37 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:39:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:39:57 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-hvfkrRKmUT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136226|0 |1 is obsolete| | --- Comment #158 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136264 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136264&action=edit Bug 28854: Database update -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:40:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:40:05 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-l8UTfWvjDG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136227|0 |1 is obsolete| | --- Comment #159 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136265 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136265&action=edit Bug 28854: DBIC Schema Updates -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:40:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:40:12 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-8Ei0JiPIUM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136228|0 |1 is obsolete| | --- Comment #160 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136266 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136266&action=edit Bug 28854: Expose functionality to attach items to bundles This patch adds methods the the Koha::Item object for managing item bundling operations and then exposes those methods via the REST API. We include the new `BundleNotLoanValue` preference for setting not for loan values when an item is added to a bundle. Finally, we expose bundle management via the catalogue details page. Test plan: 0) Apply patches up to this point and run the database update 1) Configuration: `BundleNotLoanValue` should have been set by the database update and point to a newly added AV value. 2) Creating a new bundle * Add a new bib record * Mark the bib record as a 'collection' type by setting leader position 7 to 'c' * Add a new item to this bib record * You should see a new 'Manage bundle' button available in the 'Actions' column of the Holdings table. * Clicking 'Manage bundle' should expand the table to include a new row directly beneath this one. * Use the new 'Add to bundle' button that appears in this row to trigger a modal that allows entering the barcode of items you wish to add to the bundle * Upon closing the modal, the bundle content table should reload and contain your newly associated items. * You can subsequently remove an item from a bundle using the new 'Remove' button. 3) Not for loan * Items that have been added into a bundle should now appear as 'Not for loan' from their original biblio record and note which bundle they belong to. 4) Error cases * Try adding an item that already belongs to a bundle to another bundle: Note an error is displayed in the modal form. 5) The bundles feature can be disabled by unsetting the `BundleNotLoanValue` system preference. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:40:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:40:19 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-xhqckagiLU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136229|0 |1 is obsolete| | --- Comment #161 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136267 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136267&action=edit Bug 28854: Update circulation functionality for bundles This patch updates the circulation system to account for bundle checkins. We add a content verification step to ensure bundle content is all present at checkin and we use this comparison to mark missing items as lost. Test plan 0) Apply patches up to this point 1) Checkin an item that belongs to a bundle * An alert should be triggered noting that the item belongs to a bundle * The option to remove the item from the bundle should be clear * Click remove should result in the alert dissapearing and the item having been removed from the bundle. 2) Checkin an item bundle * A modal confirmation dialog should appear requesting each item barcode be scanned * As items are scanned they should be highlighted in yellow in the bundle content table * Upon submission; * The user will be alerted to any unexpected items that were scanned and told to put them to one side. * The user will be alerted that any missing items in the validation will have been marked as lost. * The bundle item will be marked as checked in. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:40:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:40:26 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-qoP0JFrJPw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136230|0 |1 is obsolete| | --- Comment #162 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136268 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136268&action=edit Bug 28854: Highlight bundle rows to clarify UI -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:40:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:40:32 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-3PqqHlspnA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136231|0 |1 is obsolete| | --- Comment #163 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136269 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136269&action=edit Bug 28854: Drop unique index on issue_id in return claims With the introduction of circulating items within a bundle set, we can now loose multiple items from the bundle from the same issue. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:40:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:40:39 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-xDoSBUXeAU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136232|0 |1 is obsolete| | --- Comment #164 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136270 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136270&action=edit Bug 28854: DBIC Update ReturnClaim Schema -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:40:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:40:45 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-zqRUGD33F5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136233|0 |1 is obsolete| | --- Comment #165 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136271 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136271&action=edit Bug 28854: Record and display who lost the item This patch records the bundle issue from which an item is marked as lost so that we may use that to infer who lost the item (for later charges and display). Test plan 0) Apply all patches up to this point 1) Checkout a bundle to a user 2) Checkin the bundle and do not scan one of the barcodes at confirmation * Note that the item not scanned is marked as lost 3) Navigate to the biblio for the lost item and note that it is marked as lost. 4) Navigate to the biblio for the collection and expand the collection item that contains the lost item. Note the item is marked as lost and checkout details are listed. 5) Checkin the lost item * The item should be marked as found and the return_claims line should be marked as resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:40:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:40:52 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-I6G3BStf9N@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136234|0 |1 is obsolete| | --- Comment #166 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136272 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136272&action=edit Bug 28854: Simplified status handling for bundle inventory check -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:40:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:40:58 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-hlRsdCau6M@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136235|0 |1 is obsolete| | --- Comment #167 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136273 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136273&action=edit Bug 28854: Add option to print content list after verification We already allowed the user to view and print an updated content list after a varification showed that items were missing from the bundle. This patch adds the option to view and print the list even if the content has been varified to have not changed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:41:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:41:05 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-un3ryzMNaK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136236|0 |1 is obsolete| | --- Comment #168 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136274 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136274&action=edit Bug 28854: Add ordering to checkin validation modal This enhancement adds simple dataTable ordering to the verification modal table at bundle checkin time. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:41:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:41:11 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-vzsezlaE7Y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136237|0 |1 is obsolete| | --- Comment #169 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136275 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136275&action=edit Bug 28854: Improve lost details display for bundle items This patch adds the return claim details to the bundle item status display on the catalogue details page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:41:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:41:18 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-sgTLiqXUu7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136238|0 |1 is obsolete| | --- Comment #170 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136276 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136276&action=edit Bug 28854: Enable claims return view when BundleLostValue is set This patch adds the alternation of BundleLostValue to enable the return claims functionality when Bundles are enbled. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:41:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:41:24 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-x4XGlLV2fZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136239|0 |1 is obsolete| | --- Comment #171 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136277 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136277&action=edit Bug 28854: Highlight when a scanned item is unexpected -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:41:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:41:31 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-LSKUTbwSxU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136240|0 |1 is obsolete| | --- Comment #172 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136278 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136278&action=edit Bug 28854: Add count of scanned items to verification modal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:41:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:41:37 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-k8LgziUc1S@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136241|0 |1 is obsolete| | --- Comment #173 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136279 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136279&action=edit Bug 28854: Add 'Remove from bundle' dialogue to details display This patch adds the counterpart of the 'Add to bundle' modal prompt for adding items to bundles from the catalogue details display. It allows for scanning barcodes to remove them from a bundle. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:41:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:41:44 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Vcm4RTi0xl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136242|0 |1 is obsolete| | --- Comment #174 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136280 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136280&action=edit Bug 28854: Add modal after checkin to print missing items list This patch adds a further modal to the post checkin alert to allow the user to print a view and print a list of items that went missing at this checkin to allow for replacements to be picked. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:41:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:41:50 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-NwBTWieJrM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136243|0 |1 is obsolete| | --- Comment #175 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136281 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136281&action=edit Bug 28854: (follow-up) Only count rows in the body This patch fixes the count to only include table rows in the body, i.e. skip the header row. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:41:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:41:57 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-7XXSio46lm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136244|0 |1 is obsolete| | --- Comment #176 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136282 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136282&action=edit Bug 28854: Make barcode comparison case insensative -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:42:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:42:04 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-7Cf5z7U95g@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136253|0 |1 is obsolete| | --- Comment #177 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136283 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136283&action=edit Bug 28854: (QA follow-up) Fix QA tool complaints * Typo in code comment * Permissions on atomicupdate * Missing TT filter in template * Spelling in template Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:42:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:42:10 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-mCmRXNKTd5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136254|0 |1 is obsolete| | --- Comment #178 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136284 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136284&action=edit Bug 28854: (follow-up) Use Koha::Item->itemtype introduced with bug 20469 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:42:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:42:17 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-9tCmdE5pEi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #179 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136285 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136285&action=edit Bug 28854: Unit test for Koha::Item additions This patch adds unit tests for the new methods added to Koha::Item including: * return_claim * return_claims * is_bundle * in_bundle * bundle_host * bundle_items * add_to_bundle * remove_from_bundle Test plan 1) Run t/db_dependent/Koha/Item.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 15:50:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 13:50:23 +0000 Subject: [Koha-bugs] [Bug 30876] recalls/recalls_to_pull.pl introduces an incorrect use of ->search in list context In-Reply-To: <bug-30876-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30876-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30876-70-PrJySwUaa3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30876 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|rel_22_05_candidate, | |RM_priority | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 16:03:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 14:03:33 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-9rhOpiZ99G@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 --- Comment #126 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136286 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136286&action=edit Bug 30733: [22.05] Simplify translatable strings And a few minor fixes when they where causing issues for translatability. And rephrased a string about password reset to have it identical to other strings with the same meaning. Simplified via wrapping strings with <span> to split to huge concatenated strings with a lot of %s everywhere. == Test plan == This patch needs mainly proof reading. Still it's possible to do some basic testing to demonstrate that adding a <span> in an IF doesn't break anything. Pick in one of the 110 modified templates a string that you know how to display. Otherwise: 1. acquisitions => vendor => basket => add to basket => search "from existing record" => add order 2. Cancel the order 3. You see without issue "Bibliographic record will not be deleted" 4. administration => Patron categories 5. Try to delete a used and unused category 6. You see as expected Category XXXX is in use. Deletion not possible! and Confirm deletion of category XXXX Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Paul Derscheid <paul.derscheid at lmscloud.de> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 16:05:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 14:05:17 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-mb9pU76Euv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #180 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136287 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136287&action=edit Bug 28854: Unit test for AddReturn addition This patch adds tests for the AddReturn change that adds an 'InBundle' message to the return. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 16:10:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 14:10:01 +0000 Subject: [Koha-bugs] [Bug 30984] Action logs should log the cronjob script name that generated the given log In-Reply-To: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30984-70-xQFatu9eP5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30984 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136252|0 |1 is obsolete| | --- Comment #2 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136288 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136288&action=edit Bug 30984 - Action logs should log the cronjob script name that generated the given log When something is changed by a cronjob, and that entity is logged via action logs, we can know what changed, and that it was via a cronjob, but we cannot necessarily know which cronjob made that change. The closest we can come is to find the action logs for the cronjob module which ran before the change which is by no means reliable assuming the CronLog is even enabled. We should add a new column to action logs to store the name of the script ran for any action logs where the interface is "cron". Test plan: 1) Apply this patch 2) Run updatedatabase.pl 3) Enable all the Log/Logging sysprefs 4) Run some cronjobs that will generate action logs 5) Note the new action_logs column "script" contains the filename of the cronjob that caused the change. Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 16:12:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 14:12:31 +0000 Subject: [Koha-bugs] [Bug 30984] Action logs should log the cronjob script name that generated the given log In-Reply-To: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30984-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30984-70-BPCp8T8Ogd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30984 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Status|Needs Signoff |Signed Off --- Comment #3 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Nice improvement in logging.. I initially thought we'd see it passed in and part of Koha::Script rather than being populated from within C4::Log.. but I'm ambivalent as to where it should live. I wonder about background tasks, whether we'd want to record those as 'scripts' too somewhere along the line.. Signing off anyway as it works as described. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 16:33:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 14:33:20 +0000 Subject: [Koha-bugs] [Bug 30986] New: Improve responsiveness of DataTable toolbar Message-ID: <bug-30986-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30986 Bug ID: 30986 Summary: Improve responsiveness of DataTable toolbar Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: ASSIGNED Severity: enhancement Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: oleonard at myacpl.org QA Contact: testopia at bugs.koha-community.org A few tweaks to CSS will make the components of a DataTables toolbar work better at narrower browser widths. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 17:36:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 15:36:11 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-0GUYZhIGz2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #181 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- 0) Documentation Read the documentation, really helpful! (comment :) ) 1) Unit tests (question) Unit tests pass. Changes marked with . have new unit tests added, but we might be missing some for the changes to checkout and holds? Hope I didn't miss them: Koha/Item checkout . return_claims (new) . return_claim (new) holds . bundle_items (new) . is_bundle (new) . bundle_host (new) . in_bundle (new) . add_to_bundle (new) . remove_from_bundle (new) C4/Circulation . AddReturn 2) Database update, installer a) The new table has the columns host and item, I was wondering if they should not have _id added to match conventions on the API etc. (question) b) I like the 'trick' on adding the LOST and NOT_LOAN values. (comment) c) installer/data/mysql/en/optional/auth_val.yml requires updating for the new system preference values (blocker) d) Changes to sysprefs.sql are missing. We can use the values from d) to pre-set the preferences for new installations correctly. (blocker) 3) Translatability, spelling, terminology a) detail.pl - buttons and other text in js (blocker) bundle_toolbar.append('<a class="btn btn-default" data-toggle="modal" data-target="#addToBundleModal" data-item="' + itemnumber + '"><i class="fa fa-plus"></i> Add to bundle</a>'); bundle_toolbar.append('<a class="btn btn-default" data-toggle="modal" data-target="#removeFromBundleModal" data-item="' + itemnumber + '"><i class="fa fa-minus"></i> Remove from bundle</a>'); $('#addResult').replaceWith('<div id="addResult" class="alert alert-success">Success: Added '+barcode+'</div>'); $('#addResult').replaceWith('<div id="addResult" class="alert alert-warning">Warning: Item '+barcode+' already attached</div>'); } else { $('#addResult').replaceWith('<div id="addResult" class="alert alert-danger">Failure: Item '+barcode+' belongs to another bundle</div>'); } } else { $('#addResult').replaceWith('<div id="addResult" class="alert alert-danger">Failure: Check the logs for details</div>'); b) detail.pl - JSON titles, this and following (blocker): { "data": "biblio.author", "title": "Author", "searchable": true, "orderable": true, }, c) detail.pl - Capitalization (blocker) "title": "Item Type", d) detail.pl - Terminology (blocker) "title": "Collection code", should be just Collection e) circ/returns.tt: Why the use of i18n here? (question) <th>[% t('Title') | html %]</th> Isn't it the same as: <th>Title</th> ? Same here, .tt file with text inside a div element, should have been parsed the same without using t(). [% t('Scan all barcodes of items found in the items bundle. If any items are missing, they will be marked as lost') | html %] And here: <button type="submit" class="btn btn-default"><i class="fa fa-check"></i> [% t('Confirm checkin and mark missing items as lost') | html %]</button> 4) GUI - Configuration a) In table configuration, there is one option named external_id - while this makes sense to the API, I think it's hard on users. Why not update to barcode instead? (normal) b) The system preferences are currently spread on 2 different tabs (circulation and cataloguing). I think we should add a new sub heading 'Item bundles' to group them on the circulation tab instead. It will make setup smoother and I can imagine the section might grow in the future. (normal) 5) Permissions a) Who should be able to create item bundles? At the moment anyone with catalogue permission should be able to. (question) 5) GUI - Functionality a) As barcodes are unique, how could this happen? Should the message maybe be adjusted? (question) $('#removeResult').replaceWith('<div id="removeResult" class="alert alert-danger">'+_("Failed: Barcode matched more than one item ")+barcode+'</div>'); More functionality testing to come. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 17:37:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 15:37:00 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-8E2qAkATr2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 17:44:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 15:44:12 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-BghYlzLYyA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #182 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- 1) Unit tests Update: we are only missing chargelostitem! (blocker) Koha/Item . return_claims (new) . return_claim (new) . holds (only a comment change) . bundle_items (new) . is_bundle (new) . bundle_host (new) . in_bundle (new) . add_to_bundle (new) . remove_from_bundle (new) C4/Circulation . AddReturn C4/Accounts chargelostitem -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 17:49:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 15:49:06 +0000 Subject: [Koha-bugs] [Bug 30986] Improve responsiveness of DataTable toolbar In-Reply-To: <bug-30986-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30986-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30986-70-B6aM4UtCZw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30986 --- Comment #1 from Owen Leonard <oleonard at myacpl.org> --- Created attachment 136291 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136291&action=edit A proposal for a modified layout of table controls In this screen shot the new version is above, with the "info" broken out into a separate line. Compare that to the current layout in the lower half. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 17:56:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 15:56:02 +0000 Subject: [Koha-bugs] [Bug 30920] Add caching to C4::Biblio::GetAuthorisedValueDesc In-Reply-To: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30920-70-eY54zwIX8a@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30920 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 17:56:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 15:56:05 +0000 Subject: [Koha-bugs] [Bug 30920] Add caching to C4::Biblio::GetAuthorisedValueDesc In-Reply-To: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30920-70-Dny3dsx2EO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30920 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135771|0 |1 is obsolete| | --- Comment #13 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136292 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136292&action=edit Bug 30920: Add caching to GetAuthorizedValueDesc This patch adds caching to C4::Biblio::GetAuthorisedValueDesc for performance. We cache each hash involved in the method use for description lookup and we're careful to clear said caches appropraitely on changes. Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 17:56:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 15:56:09 +0000 Subject: [Koha-bugs] [Bug 30920] Add caching to C4::Biblio::GetAuthorisedValueDesc In-Reply-To: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30920-70-PRMfjM1uCZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30920 --- Comment #14 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136293 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136293&action=edit Bug 30920: (follow-up) Add missing use Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 17:59:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 15:59:33 +0000 Subject: [Koha-bugs] [Bug 30920] Add caching to C4::Biblio::GetAuthorisedValueDesc In-Reply-To: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30920-70-0kts7Nc62o@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30920 --- Comment #15 from Nick Clemens <nick at bywatersolutions.com> --- (In reply to Jonathan Druart from comment #7) > (In reply to Martin Renvoize from comment #0) > > In benchmarking I found that enabling the caching in the way here gave me > > very significant performance improvements as compared to bug 28371. > > Do you have the numbers? > > Did you identify where we are using this subroutine expansively? searchResults calls this a fair amount of times, the time spent in this sub is reduced by 50% and seems to be more dramatic under ES than Zebra - I saw a 2 second improvement in NYTProf after the patches I think this does also set a good policy, and the caches here can be used elsewhere too -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 18:02:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 16:02:56 +0000 Subject: [Koha-bugs] [Bug 30987] New: Adding relationship to PatronQuickAddFields causes it to be added 2x Message-ID: <bug-30987-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30987 Bug ID: 30987 Summary: Adding relationship to PatronQuickAddFields causes it to be added 2x Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: lucas at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com While working on Bug 29303 I noticed a small problem. If you add relationship to the PatronQuickAddFields system preference it will be added to the quick form two times. It looks like it is due to some JS that is no longer needed: if ( $("#memberentry_guarantor").length ) { $("#memberentry_guarantor").appendTo("#quick_add_form"); } -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 18:11:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 16:11:19 +0000 Subject: [Koha-bugs] [Bug 30987] Adding relationship to PatronQuickAddFields causes it to be added 2x In-Reply-To: <bug-30987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30987-70-oo9KFq7bgl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30987 --- Comment #1 from Lucas Gass <lucas at bywatersolutions.com> --- This is still a bug but I am completely wrong about the JS I mentioned. It is not the cause. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 18:13:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 16:13:00 +0000 Subject: [Koha-bugs] [Bug 30920] Add caching to C4::Biblio::GetAuthorisedValueDesc In-Reply-To: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30920-70-l4XIRC3rXr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30920 --- Comment #16 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Fridolin Somers from comment #12) > Just to be sure. > > The is already a L1 cache for authorized values in > get_description(s)_by_koha_field() > See Bug 17642 > It says L2 cache is unsafe : > https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17642#c35 > > If L2 cache is fine and flush managed in store(). > Could we cache directly in find() ? > That would increase performance everywhere using ORM. Caching a find doesn't make much sense.. simple key lookup is super fast in SQL. What's worth caching is complex searches or complex structures built from multiple searches.. especially when we're running them inside loops. This change makes sense because we call the function inside the search result loop a lot and it's a fairly complex structure so having it immediately there to lookup from is good. As for 'not safe'.. I have no idea where that comment comes from. So long as we catch flushing correctly I don't see how any L2 is unsafe as such... Sometimes it's not worthwhile, but not unsafe if it's done correctly. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 18:13:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 16:13:41 +0000 Subject: [Koha-bugs] [Bug 30920] Add caching to C4::Biblio::GetAuthorisedValueDesc In-Reply-To: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30920-70-sOfLgpOSTj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30920 --- Comment #17 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Fridolin Somers from comment #12) > Just to be sure. > > The is already a L1 cache for authorized values in > get_description(s)_by_koha_field() > See Bug 17642 > It says L2 cache is unsafe : > https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17642#c35 > > If L2 cache is fine and flush managed in store(). > Could we cache directly in find() ? > That would increase performance everywhere using ORM. Caching a find doesn't make much sense.. simple key lookup is super fast in SQL. What's worth caching is complex searches or complex structures built from multiple searches.. especially when we're running them inside loops. This change makes sense because we call the function inside the search result loop a lot and it's a fairly complex structure so having it immediately there to lookup from is good. As for 'not safe'.. I have no idea where that comment comes from. So long as we catch flushing correctly I don't see how any L2 is unsafe as such... Sometimes it's not worthwhile, but not unsafe if it's done correctly. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 18:20:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 16:20:18 +0000 Subject: [Koha-bugs] [Bug 30987] Adding relationship to PatronQuickAddFields causes it to be added 2x In-Reply-To: <bug-30987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30987-70-6dDoz0XGYD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30987 --- Comment #2 from Lucas Gass <lucas at bywatersolutions.com> --- If you add relationship to the QuickAddFields, go to the quick add form, and press "+ Add guarantor" the relationship field will appear 3 times. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 20:03:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 18:03:31 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-i1P2aDIJdl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 20:03:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 18:03:35 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-sSHVsGRu4y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135932|0 |1 is obsolete| | Attachment #135933|0 |1 is obsolete| | Attachment #135934|0 |1 is obsolete| | Attachment #135935|0 |1 is obsolete| | Attachment #135936|0 |1 is obsolete| | --- Comment #23 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136294 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136294&action=edit Bug 30889: Set userenv for background jobs We need to set the userenv when we process the jobs. It is useful for stats (at least) Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 20:03:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 18:03:45 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-ljlx3rJV9I@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #24 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136295 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136295&action=edit Bug 30889: Set interface to 'intranet' Is that correct? Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 20:03:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 18:03:49 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-ee7MPfPnEo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #25 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136296 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136296&action=edit Bug 30889: (follow-up) Add context field to background_jobs This patch adds a new 'context' field to the background_jobs table to record the context in which the job was queued. Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 20:03:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 18:03:52 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-eQsZyWw6bi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #26 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136297 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136297&action=edit Bug 30889: (follow-up) Record and use context in background_jobs This patch records the current context to the background_jobs table at enqueue time and then uses that record to set the context at process time. Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 20:03:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 18:03:55 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-5J01HlPtvD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #27 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136298 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136298&action=edit Bug 30889: DBIC Schema Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 20:03:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 18:03:58 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-0o3xh0tNHw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #28 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136299 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136299&action=edit Bug 30889: Fix atomic update permissions Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:09:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:09:29 +0000 Subject: [Koha-bugs] [Bug 30962] REST API: Add endpoint /patrons/:patron_id/check_password In-Reply-To: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30962-70-DHgT4HF49W@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30962 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:09:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:09:33 +0000 Subject: [Koha-bugs] [Bug 30962] REST API: Add endpoint /patrons/:patron_id/check_password In-Reply-To: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30962-70-smh9tiQJPG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30962 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136215|0 |1 is obsolete| | --- Comment #8 from David Nind <david at davidnind.com> --- Created attachment 136300 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136300&action=edit Bug 30962: REST API: Add endpoint /patrons/:patron_id/check_password This patch adds an endpoint for /patrons/:patron_id/check_password This allows a third-party, using an authenticated and authorized Koha API user, to check if the username and password given by a user is correct in Koha. For example, a Keycloak extension can be created using its User Storage SPI to use Koha as the user database for Keycloak. This API allows us to authenticate the user as a particular Koha user - without creating a Koha user session for them. Test plan: 0. Apply patch and koha-plack --restart kohadev 1. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=RESTBasicAuth 2. Enable "RESTBasicAuth" 3. Run the following commands while substituting correct values for <koha_user> and <koha_password> 3. curl -XPOST -H "Content-Type: application/json" -u <koha_user>:<koha_password> http://localhost:8081/api/v1/patrons/51/check_password -d '{ "password": "<koha_password>" }' -v 4. Note "200 OK" response 5. curl -XPOST -H "Content-Type: application/json" -u <koha_user>:<koha_password> http://localhost:8081/api/v1/patrons/51/check_password -d '{ "password": "this is definitely not the password" }' -v 6. Note "400 Bad Request" response and error message {"error":"Invalid password"} Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:16:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:16:48 +0000 Subject: [Koha-bugs] [Bug 30988] New: Adding a more generic version of googleopenidconnect Message-ID: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Bug ID: 30988 Summary: Adding a more generic version of googleopenidconnect Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Authentication Assignee: koha-bugs at lists.koha-community.org Reporter: shi-yao.wang at inLibro.com QA Contact: testopia at bugs.koha-community.org CC: dpavlin at rot13.org Using any OpenID provider's discovery document, we could allow openid connections from more providers. There is Bug 21586 that already has a patch for generic OpenID implementation, but it uses a different approach from my proposed patch. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:18:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:18:32 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-bqg5Ca029s@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #1 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136301 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136301&action=edit Bug 30988: Adding a more generic version of googleopenidconnect More generic OpenID Connect based off of googleopenidconnect Test plan: 1- Set up an OAuth2 provider that has a discovery doc (e.g. for google it's https://accounts.google.com/.well-known/openid-configuration) and note down the client id and client secret. Docs to help setup: google: https://developers.google.com/identity/protocols/oauth2/openid-connect https://koha-community.org/manual/20.11/en/html/administrationpreferences.html gitlab: https://docs.gitlab.com/ee/integration/oauth_provider.html 2- Apply the patch 3- Run atomicupdate to update database 4- Configure system preferences: a- Set OpenIDConnect to Yes b- Enter the url to the discovery doc of your OAuth2 provider c- Fill OpenIDOAuth2ClientID with noted client id d- Fill OpenIDOAuth2ClientSecret with noted client secret e- Configure the other related system preferences as you wish. They shoud work the same way as the similarly named GoogleOpenID* ones. 5- If OpenIDConnectAutoRegister is set to Don't allow, have a koha account with the same email as the one used by your OAuth2 provider. 6- In OPAC, sign in using OpenID. 7- You may have to log into your OpenID provider account and accept conditions. It should finally log you into the koha account. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:19:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:19:32 +0000 Subject: [Koha-bugs] [Bug 30989] New: Tags with some special characters are not encoded right Message-ID: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 Bug ID: 30989 Summary: Tags with some special characters are not encoded right Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: lucas at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org To recreate: 1. Turn on: TagsEnabled. 2. Log in to the OPAC and create a tag like "LGBTQ+" 3. Add that record to a list 3. Now try clicking on that tag from detail, results, and lists page. 4. If you click on the link for the "LGBTQ+" you will get a 'no results found page'. 5. The '+' needs to be encoded. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:22:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:22:40 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-FUffHG8lIt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #2 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- I tested this with google and gitlab. If this works, it theoretically offers the same functionality as googleopenidconnect, but with the possibility of using other OAuth2 providers. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:23:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:23:25 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-LdHHr6zpKa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:23:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:23:36 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-r7VID0D2Sc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |shi-yao.wang at inLibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:42:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:42:07 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-W2rU0ucwlm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136301|0 |1 is obsolete| | --- Comment #3 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136302 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136302&action=edit Bug 30988: Adding a more generic version of googleopenidconnect More generic OpenID Connect based off of googleopenidconnect Test plan: 1- Set up an OAuth2 provider that has a discovery doc (e.g. for google it's https://accounts.google.com/.well-known/openid-configuration) and note down the client id and client secret. Docs to help setup: google: https://developers.google.com/identity/protocols/oauth2/openid-connect https://koha-community.org/manual/20.11/en/html/administrationpreferences.html gitlab: https://docs.gitlab.com/ee/integration/oauth_provider.html 2- Apply the patch 3- Run atomicupdate to update database 4- Configure system preferences: a- Set OpenIDConnect to Yes b- Enter the url to the discovery doc of your OAuth2 provider c- Fill OpenIDOAuth2ClientID with noted client id d- Fill OpenIDOAuth2ClientSecret with noted client secret e- Configure the other related system preferences as you wish. They shoud work the same way as the similarly named GoogleOpenID* ones. 5- If OpenIDConnectAutoRegister is set to Don't allow, have a koha account with the same email as the one used by your OAuth2 provider. 6- In OPAC, sign in using OpenID. 7- You may have to log into your OpenID provider account and accept conditions. It should finally log you into the koha account. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:45:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:45:10 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-Fa9CtU0ifp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:45:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:45:22 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-5kFW6gV9WU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:45:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:45:42 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-tJeGdyuJLO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |shi-yao.wang at inLibro.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:47:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:47:10 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-4RQPxcMveI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:47:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:47:12 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-GYQZKm2qkc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 --- Comment #1 from Lucas Gass <lucas at bywatersolutions.com> --- Created attachment 136303 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136303&action=edit Bug 30989: Use uri filter where tag links are displayed TO test: 1. Turn on: TagsEnabled. 2. Log in to the OPAC and create a tag like "LGBTQ+" 3. Add that record to a list 3. Now try clicking on that tag from detail, results, and lists page. 4. If you click on the link for the "LGBTQ+" you will get a 'no results found page'. 5. Apply patch 6. Try clicking on each of the tags in detail, results, and lists. They should work now. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:47:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:47:37 +0000 Subject: [Koha-bugs] [Bug 30986] Improve responsiveness of DataTable toolbar In-Reply-To: <bug-30986-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30986-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30986-70-elgNpQUHYL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30986 --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Comment on attachment 136291 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136291 A proposal for a modified layout of table controls I like it! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:49:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:49:22 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-yGydQ2JKGs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:49:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:49:27 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-sIrXxgCUl8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136257|0 |1 is obsolete| | --- Comment #5 from David Nind <david at davidnind.com> --- Created attachment 136304 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136304&action=edit Bug 30960: Don't allow user to place the hold without a pick-up place It's possible to place item-level hold without selecting a pick-up location, which causes problems: if the item is then returned, Koha tells about a hold, but gives error 500. At customer's hold tab you see the number of holds, but cannot see the actual holds there. However, if you go to the title in question, then modify the hold so that it has a pick-up place, then the hold will work normally again. This patch fixes already existing but not working js error message and ensures that hold cannot be made while pickup location is undefined. To reproduce: 1. Go to admin page, to the libraries configurations, and disable pickup location for one of them. 2. Pick any biblio that has items that have that same library as a default pickup location. 3. When placing the item-level hold, notice that the pickup location dropdown box is empty by default. Keep it empty, place the hold. 4. Go to the patron's page of the patron who you placed that hold for, check that it doesn't show the new hold. 5. Apply patch. 6. Repeat steps 2 and 3, it shouldn't let you make the item-level hold until you select a specific pickup location. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:51:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:51:44 +0000 Subject: [Koha-bugs] [Bug 30978] Potential data loss when using Quick add new patron In-Reply-To: <bug-30978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30978-70-OpqwcVZEFp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30978 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |major --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Confirmed on master, updating severity. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 21:56:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 19:56:43 +0000 Subject: [Koha-bugs] [Bug 30961] Table Settings Reports table_reports Group and Subgroup does not work In-Reply-To: <bug-30961-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30961-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30961-70-WwSwEoeHQS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30961 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|minor |normal Version|21.05 |master --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- What I see is that it's off by one column on the other tabs: * Hide sub group in the table configuration * All tab: Sub groub is correctly hidden * All other tabs: Group is hidden instead The number of columns appears the same, but I think there must be some difference between the tables? Group is before sub group in the list of columns. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:02:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:02:07 +0000 Subject: [Koha-bugs] [Bug 28355] Deprecate / remove Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-FS9aORnYUp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:02:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:02:11 +0000 Subject: [Koha-bugs] [Bug 28355] Deprecate / remove Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-blKRTvNkGz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136258|0 |1 is obsolete| | --- Comment #4 from David Nind <david at davidnind.com> --- Created attachment 136305 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136305&action=edit Bug 28355: Add a note that SMS to email via mobile provider is not recommended Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:03:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:03:58 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-GJYWV55527@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mark.jaroski at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:05:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:05:25 +0000 Subject: [Koha-bugs] [Bug 28355] Add warning note about Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-vH4HcxK04E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Deprecate / remove Email |Add warning note about |SMS driver option for |Email SMS driver option for |SMSSendDriver |SMSSendDriver -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:07:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:07:25 +0000 Subject: [Koha-bugs] [Bug 30990] New: Terminology: DefaultHoldPickupLocation Message-ID: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30990 Bug ID: 30990 Summary: Terminology: DefaultHoldPickupLocation Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org The description of the DefaultHoldPickupLocation uses some false terminology: staff client should be staff interface branch should be library -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:10:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:10:06 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-1olrsOFnMz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #4 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- The main goal of the patch is to allow our clients to use OpenID connect with more flexibility. For example, some schools that use Office 365 would want OpenID connection to their libraries for their students. What do you think? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:12:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:12:38 +0000 Subject: [Koha-bugs] [Bug 30746] JS error on 'your personal details' in OPAC In-Reply-To: <bug-30746-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30746-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30746-70-yI9PQoVYuJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30746 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | --- Comment #10 from Lucas Gass <lucas at bywatersolutions.com> --- Pushed to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:13:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:13:54 +0000 Subject: [Koha-bugs] [Bug 28355] Add warning note about Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-ewZwRU6oSG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA Patch complexity|--- |String patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:13:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:13:59 +0000 Subject: [Koha-bugs] [Bug 28355] Add warning note about Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-F7iq9maVtb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136305|0 |1 is obsolete| | --- Comment #5 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136306 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136306&action=edit Bug 28355: Add a note that SMS to email via mobile provider is not recommended Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:14:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:14:03 +0000 Subject: [Koha-bugs] [Bug 28355] Add warning note about Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-fXIA1JwpZA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 --- Comment #6 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136307 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136307&action=edit Bug 28355: (QA follow-up) Move Note to new line There is an existing pattern for the 'Note:' in pref descriptions, where it's always added on a new line. This changes the formatting to match that pattern. Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:14:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:14:09 +0000 Subject: [Koha-bugs] [Bug 28355] Add warning note about Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-PWSeFv4Cet@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |katrin.fischer at bsz-bw.de |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:14:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:14:23 +0000 Subject: [Koha-bugs] [Bug 30990] Terminology: DefaultHoldPickupLocation In-Reply-To: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30990-70-5SD52MPSzp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30990 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|oleonard at myacpl.org |katrin.fischer at bsz-bw.de -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:15:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:15:19 +0000 Subject: [Koha-bugs] [Bug 30726] Flatpickr's "yesterday" shortcut doesn't work if entry is limited to past dates In-Reply-To: <bug-30726-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30726-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30726-70-tgwEO7EY0j@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30726 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | --- Comment #6 from Lucas Gass <lucas at bywatersolutions.com> --- Pushed to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:17:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:17:41 +0000 Subject: [Koha-bugs] [Bug 28355] Add warning note about Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-56mJN1QAzg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This updates the text for release notes| |the SMSSendDriver system | |preference. The Email SMS | |driver option is no longer | |recommended unless you use | |a dedicated SMS to Email | |gateway. Many mobile | |providers offer | |inconsistent support for | |the email to SMS gateway | |(sometimes it works, and | |sometimes it doesn't), | |which can cause frustration | |for patrons. CC| |david at davidnind.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:19:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:19:15 +0000 Subject: [Koha-bugs] [Bug 30844] The OPAC detail page's browser is limited to the current page of results when using Elasticsearch In-Reply-To: <bug-30844-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30844-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30844-70-RnNcW9BNGV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30844 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | Status|Pushed to master |Pushed to stable --- Comment #16 from Lucas Gass <lucas at bywatersolutions.com> --- Pushed to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:21:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:21:36 +0000 Subject: [Koha-bugs] [Bug 30990] Terminology: DefaultHoldPickupLocation In-Reply-To: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30990-70-t09AuFv7Re@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30990 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136308 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136308&action=edit Bug 30990: Fix DefaultHoldPickupLocation system preference description Changes: * branch to library * staff client to staff interface * adds an ending . To test: - Compare system preference descrpition before and after the patch was applied. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:21:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:21:54 +0000 Subject: [Koha-bugs] [Bug 30990] Terminology: DefaultHoldPickupLocation In-Reply-To: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30990-70-Td4CH3v2Ji@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30990 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|unspecified |master Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:25:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:25:15 +0000 Subject: [Koha-bugs] [Bug 30718] Use flatpickr's altInput option everywhere In-Reply-To: <bug-30718-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30718-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30718-70-pVB0vSlPfT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30718 --- Comment #4 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I'm happy to help testing, but it would be nice it could be broken up a bit so templates can be tested in smaller 'chunks'. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:26:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:26:19 +0000 Subject: [Koha-bugs] [Bug 28884] ElasticSearch: Question mark in title search returns no results In-Reply-To: <bug-28884-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28884-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28884-70-AoU94kR1aW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28884 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=28316 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:26:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:26:19 +0000 Subject: [Koha-bugs] [Bug 28316] Fix ES crashes related to various punctuation characters In-Reply-To: <bug-28316-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28316-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28316-70-oLsxNo3PpT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28316 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=28884 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:29:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:29:52 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-IuXDHTygJg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |lucas at bywatersolutions.com --- Comment #127 from Lucas Gass <lucas at bywatersolutions.com> --- backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:40:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:40:24 +0000 Subject: [Koha-bugs] [Bug 28884] ElasticSearch: Question mark in title search returns no results In-Reply-To: <bug-28884-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28884-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28884-70-Eww0ioS00i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28884 --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I found this explanation about the question mark: The question mark is a special character in es query strings. For example, if you search "me?t", this means that the results we seek must contain a word that contain "At Most" one character between "me" and "t". So the words "meet", "meat" or "met" will match the query. So maybe a fix is not so easy, as we either make it ignore ? or keep the feature? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:45:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:45:04 +0000 Subject: [Koha-bugs] [Bug 28884] ElasticSearch: Question mark in title search returns no results In-Reply-To: <bug-28884-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28884-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28884-70-j4F13t5TEK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28884 --- Comment #4 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Just verified: Pe?l finds Perl books and Per? does as well. Perl? won't. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:47:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:47:44 +0000 Subject: [Koha-bugs] [Bug 30990] Terminology: DefaultHoldPickupLocation In-Reply-To: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30990-70-tHtYcceqzz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30990 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:47:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:47:47 +0000 Subject: [Koha-bugs] [Bug 30990] Terminology: DefaultHoldPickupLocation In-Reply-To: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30990-70-XWreCR1n1Q@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30990 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136308|0 |1 is obsolete| | --- Comment #2 from Lucas Gass <lucas at bywatersolutions.com> --- Created attachment 136309 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136309&action=edit Bug 30990: Fix DefaultHoldPickupLocation system preference description Changes: * branch to library * staff client to staff interface * adds an ending . To test: - Compare system preference descrpition before and after the patch was applied. Signed-off-by: Lucas Gass <lucas at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:49:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:49:04 +0000 Subject: [Koha-bugs] [Bug 30991] New: [% ELSE %]0[% END %] will break translations if used for assigning variables Message-ID: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 Bug ID: 30991 Summary: [% ELSE %]0[% END %] will break translations if used for assigning variables Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: I18N/L10N Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org CC: frederic at tamil.fr See bug 30958 and bug 23713: The construct with the 0 will break on translation as it's removed in the translated templates: > The problematic line (below) in the English template is: > var OD_password_required = [% IF > Koha.Preference('OverDrivePasswordRequired') %]1[% ELSE %]0[% END %]; > > Which is translated to the following in the en-NZ (and other languages) > template: > var OD_password_required = [% IF > Koha.Preference('OverDrivePasswordRequired') %]1[% ELSE %][% END %]; We should verify that there are not more occurences of the bad pattern or improve our translation scripts: (In reply to Owen Leonard from comment #3) > There are a couple of other instances that I saw which should also be > addressed. I searched the NZ templates for "1[% ELSE %][% END %]" -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:49:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:49:25 +0000 Subject: [Koha-bugs] [Bug 30849] Make pending patron modification notices on staff main page number of modifications at logged in branch In-Reply-To: <bug-30849-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30849-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30849-70-lQQqXUH9kC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30849 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |lucas at bywatersolutions.com |ity.org | Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:49:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:49:35 +0000 Subject: [Koha-bugs] [Bug 30958] OPAC Overdrive search result page broken for translations In-Reply-To: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30958-70-U8Th09ZG5d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30958 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30991 --- Comment #4 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I've filed Bug 30991 - [% ELSE %]0[% END %] will break translations if used for assigning variables for fixing any other occurrences so this can move on. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:49:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:49:35 +0000 Subject: [Koha-bugs] [Bug 30991] [% ELSE %]0[% END %] will break translations if used for assigning variables In-Reply-To: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30991-70-kR58skLTb8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30958 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:50:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:50:14 +0000 Subject: [Koha-bugs] [Bug 30958] OPAC Overdrive search result page broken for translations In-Reply-To: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30958-70-3J5NRyGYlx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30958 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |katrin.fischer at bsz-bw.de |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:52:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:52:19 +0000 Subject: [Koha-bugs] [Bug 30958] OPAC Overdrive search result page broken for translations In-Reply-To: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30958-70-29V1tkY9uH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30958 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:52:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:52:24 +0000 Subject: [Koha-bugs] [Bug 30958] OPAC Overdrive search result page broken for translations In-Reply-To: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30958-70-KK0jSoneww@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30958 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136068|0 |1 is obsolete| | --- Comment #5 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136310 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136310&action=edit Bug 30958: OPAC overdrive search result page broken for translations Note: You will need a valid OverDrive subscription to test this. This patch fixes a JavaScript error thrown on the OPAC overdrive search results page for libraries using translation templates and who don't have the OverDrivePasswordRequired system preference = 'Required'. Test plan: 1. Install the en-NZ translation: https://wiki.koha-community.org/wiki/Installation_of_additional_languages_for_OPAC_and_INTRANET_staff_client 2. Enable the en-NZ language: - In the OPACLanguages system preference -> tick 'English New Zealand (en-NZ)' checkbox and untick 'English (en)' 3. Fill in the OverDrive system preferences: - Make sure you set: OverDrivePasswordRequired = "Not required" 4. Perform an OPAC search 5. Click on the Overdrive results link 6. Open the browser console and notice there is a JS error, and the OverDrive results do not load 7. Apply patch 8. Update the en_NZ translation: 9. Repeat steps 4, 5 and 6 and notice there is no JavaScript error and the OverDrive results do display Sponsored-by: Melbourne Athenaeum Library, Australia Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:56:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:56:15 +0000 Subject: [Koha-bugs] [Bug 23912] Get correct authorised values for location and collections facets In-Reply-To: <bug-23912-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23912-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23912-70-q5BjWbkjuk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23912 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |ASSIGNED Severity|enhancement |normal Keywords| |regression --- Comment #10 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I'll reclassify as bug, as we should show the intranet descriptons in the intranet and the OPAC descriptions in the OPAC. OPAC description in intranet is a bug and also sounds like a regression (comment#1 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:56:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:56:21 +0000 Subject: [Koha-bugs] [Bug 23912] Get correct authorised values for location and collections facets In-Reply-To: <bug-23912-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23912-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23912-70-GwCuK49clJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23912 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEW -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:58:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:58:47 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-UPEJU0hbiG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 22:58:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 20:58:52 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-n8RFew3KwY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136303|0 |1 is obsolete| | --- Comment #2 from David Nind <david at davidnind.com> --- Created attachment 136311 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136311&action=edit Bug 30989: Use uri filter where tag links are displayed TO test: 1. Turn on: TagsEnabled. 2. Log in to the OPAC and create a tag like "LGBTQ+" 3. Add that record to a list 3. Now try clicking on that tag from detail, results, and lists page. 4. If you click on the link for the "LGBTQ+" you will get a 'no results found page'. 5. Apply patch 6. Try clicking on each of the tags in detail, results, and lists. They should work now. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:00:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:00:48 +0000 Subject: [Koha-bugs] [Bug 19249] Date picker broken in "Quick add new patron" form In-Reply-To: <bug-19249-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19249-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19249-70-YHbMDId6DZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19249 --- Comment #6 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I can confirm this is still an issue on master. Kind of a sore spot: a quick is not as quick with a broken datepicker. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:02:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:02:13 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-nHUOjo6Ttt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #3 from David Nind <david at davidnind.com> --- Testing notes (using koha-testing-docker): - This patch is only for the OPAC, clicking on the tag in the staff interface (from the record details page) returns no results. The tag is not shown in the search results or lists in the staff interface). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:13:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:13:55 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-FVX0uXxIjb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133409|0 |1 is obsolete| | --- Comment #72 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136312 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136312&action=edit Bug 27113: ElasticSearch: Autocomplete in input search Usually the user knows only part of the title of the book or only the name of the author, etc. When he start search something Koha (ElasticSearch) predicts the rest of a word or expression which user is typing. Autocomplete predicts that thanks to index of ElasticSearch. TEST PLAN Important! In this patch we need to do reindex ElasticSearch. ElasticSearch must have all information in his index. 1. Go Intranet -> Preference -> SearchEngine -> ElasticSearch !! APPLY PATCH !! 2. Mapping is good (Intranet -> Catalog -> Search engine configuration (Elasticsearch) ). !Recommended 'Reset Mapping' -> 'Yes' 3. In your koha-conf.xml file you must have good <index_name> for <elasticsearch> and version ES 4. Update Preference: ./installer/data/mysql/updatedatabase.pl If that passe good you can look the lines: - DEV atomic update: bug_27113-elasticsearch_autocomplete_input_search.perl - Upgrade to XXX done : Bug 27113 - Autocomplete input on main page with elasticsearch 5. After that we can look two options in the preferences: - IntranetAutocompleteElasticSearch; - OPACAutocompleteElasticSearch; 4. For add information in the index we must run script for reindexing: ./misc/search_tools/rebuild_elasticsearch.pl -v -d 5. Waiting for the end of indexing 6. Go on Preference and find : - IntranetAutocompleteElasticSearch; - OPACAutocompleteElasticSearch; Value "Show" turn on autocomplete. 7. Now we have Autocomplete for Intranet/OPAC search input (advanced search also). Signed-off-by: David Nind <david at davidnind.com> Bug 27113: (follow-up) Move new CSS to main SCSS files This patch removes the separate CSS files added for the autocomplete feature and puts them into the "main" SCSS files. I think a separate file isn't necessary because the amount of CSS it adds is so small. I've also tweaked the style of the autocomplete menu shown when you use the arrow keys to navigate through the autocomplete choices. I think the previous white-on-light-green didn't have enough contrast. To test you must rebuild the OPAC and staff client CSS: https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client Follow the previous test plan, being careful to observe how it works when the autocomplete menu has been triggered and you use the arrow keys to navigate through the results. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:14:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:14:14 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-e8ZcDcXd0H@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133410|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:15:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:15:35 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-4MnLwcoy7X@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 --- Comment #73 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Squashed the two patches at the request of Blou. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:27:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:27:13 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-tv6pJzTvGK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |katrin.fischer at bsz-bw.de |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:30:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:30:00 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-yreM3fP70r@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:30:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:30:04 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-aWig5TkSUK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136311|0 |1 is obsolete| | --- Comment #4 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136313 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136313&action=edit Bug 30989: Use uri filter where tag links are displayed TO test: 1. Turn on: TagsEnabled. 2. Log in to the OPAC and create a tag like "LGBTQ+" 3. Add that record to a list 3. Now try clicking on that tag from detail, results, and lists page. 4. If you click on the link for the "LGBTQ+" you will get a 'no results found page'. 5. Apply patch 6. Try clicking on each of the tags in detail, results, and lists. They should work now. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:30:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:30:09 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-VLQpfdj1x5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 --- Comment #5 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136314 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136314&action=edit Bug 30989: (QA follow-up) Use uri filter on staff detail page This applies the same fix as the first patch but to the staff interface detail page. With this fix, a tag like +++ can be clicked and the tagged records will show. To test: - Tag some records in the staff interface with something like +++ - Go to the detail page of one of those recods - Click on the tag - Verify nothing is found - Apply patch - Repeat - all tagged records will show Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:41:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:41:39 +0000 Subject: [Koha-bugs] [Bug 29872] Article requests: Include information on host record in article requests table In-Reply-To: <bug-29872-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29872-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29872-70-5sU9cLscz5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29872 --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Yes, I am, but a little worried because I think it won't copy the pages information that we need, if I understood the bug correctly? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:42:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:42:44 +0000 Subject: [Koha-bugs] [Bug 29870] Notice not delivered by default SMTP server In-Reply-To: <bug-29870-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29870-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29870-70-KZUuYyFzGC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29870 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Notice not delivered by |Notice not delivered by |default smtp server |default SMTP server Severity|enhancement |normal -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:44:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:44:38 +0000 Subject: [Koha-bugs] [Bug 29880] Item cataloguing should be split into add and edit permissions In-Reply-To: <bug-29880-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29880-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29880-70-S1RNlmqPST@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29880 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add_items permission needed |Item cataloguing should be |for patrons |split into add and edit | |permissions --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I believe, we might also need a separate permission for delete then? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:46:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:46:52 +0000 Subject: [Koha-bugs] [Bug 29864] Cannot create fund from the Funds page unless at least one fund already exists In-Reply-To: <bug-29864-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29864-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29864-70-KzTzPk6kYc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29864 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Still valid on current master. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:48:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:48:05 +0000 Subject: [Koha-bugs] [Bug 29864] Cannot create fund from the Funds page unless at least one fund already exists In-Reply-To: <bug-29864-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29864-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29864-70-z7b4uEoot1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29864 --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- The button is only missing if the filter is set to 'All budgets'. If you select a specific budget in the filter on the left, the button will show even if no first fund was created. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 17 23:50:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 21:50:52 +0000 Subject: [Koha-bugs] [Bug 29851] Prevent cancellation by patron of certain holds In-Reply-To: <bug-29851-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29851-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29851-70-ST9BkAwJZc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29851 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Maybe something similar to ItemsDeniedRenewal? Thinking of a YAML style preference, maybe called HoldsDeniedCancellation. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:01:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:01:12 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-Iy2J97Xv2Y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes tags with release notes| |special characters (such as | |+) so that the searching | |returns results when the | |tag is selected (from the | |record detail view in the | |OPAC and staff interface, | |and from the search results | |page and lists in the | |OPAC). --- Comment #6 from David Nind <david at davidnind.com> --- Thanks Katrin for the follow-up so that this works in the staff interface! I think this also needs to work from the tag cloud page in the OPAC. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:14:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:14:15 +0000 Subject: [Koha-bugs] [Bug 30936] Reindent authority detail template In-Reply-To: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30936-70-OhawCn5BVp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30936 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:14:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:14:19 +0000 Subject: [Koha-bugs] [Bug 30936] Reindent authority detail template In-Reply-To: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30936-70-Rx4zsNxRYm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30936 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135911|0 |1 is obsolete| | --- Comment #3 from David Nind <david at davidnind.com> --- Created attachment 136315 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136315&action=edit Bug 30936: Reindent authority detail template This patch updates the authority detail template so that indentation is consistent. To test, apply the patch and go to Authorities. - Locate an authority record and view the detail page. - Everything should look correct, with working numbered tabs. - If the AuthDisplayHierarchy preference is enabled, you should see a collapsible tree of elements in the authority hierarchy. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:14:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:14:23 +0000 Subject: [Koha-bugs] [Bug 30936] Reindent authority detail template In-Reply-To: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30936-70-FLxbHyjU0f@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30936 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135912|0 |1 is obsolete| | --- Comment #4 from David Nind <david at davidnind.com> --- Created attachment 136316 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136316&action=edit Bug 30936: (follow-up) Add markup comments This patch adds comments to the template to highlight the markup structure. This patch should have no effect on the page's appearance or functionality. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:20:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:20:12 +0000 Subject: [Koha-bugs] [Bug 29850] Identical values to choose from in preference "todaysIssuesDefaultSortOrder" In-Reply-To: <bug-29850-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29850-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29850-70-bSF8d9fP1G@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29850 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|NEW |RESOLVED --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Michael, if you find something like this, you can add the fix as a suggestion to the translate.koha-community.org site, this will get it fixed much faster. I have done my best to fix the translations now in all the different versions. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:25:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:25:37 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-vXMr5aovIM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 --- Comment #7 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136317 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136317&action=edit Bug 30989:(QA follow-up) Use uri filter on OPAC tag cloud page This fixes 2 links on the page: * The tag within the 'all tags' cloud * The tag shown in the 'your tags' table Test plan as before: Test with a tag like +++ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:27:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:27:16 +0000 Subject: [Koha-bugs] [Bug 30936] Reindent authority detail template in staff interface In-Reply-To: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30936-70-rqkdi0NONt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30936 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Reindent authority detail |Reindent authority detail |template |template in staff interface -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:27:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:27:37 +0000 Subject: [Koha-bugs] [Bug 30936] Reindent authority detail template in staff interface In-Reply-To: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30936-70-LF4O75osd8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30936 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |katrin.fischer at bsz-bw.de |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:30:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:30:27 +0000 Subject: [Koha-bugs] [Bug 30936] Reindent authority detail template in staff interface In-Reply-To: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30936-70-vdKMjHtb3w@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30936 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:30:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:30:31 +0000 Subject: [Koha-bugs] [Bug 30936] Reindent authority detail template in staff interface In-Reply-To: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30936-70-Q2Fn1So5AO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30936 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136315|0 |1 is obsolete| | --- Comment #5 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136318 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136318&action=edit Bug 30936: Reindent authority detail template This patch updates the authority detail template so that indentation is consistent. To test, apply the patch and go to Authorities. - Locate an authority record and view the detail page. - Everything should look correct, with working numbered tabs. - If the AuthDisplayHierarchy preference is enabled, you should see a collapsible tree of elements in the authority hierarchy. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:30:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:30:35 +0000 Subject: [Koha-bugs] [Bug 30936] Reindent authority detail template in staff interface In-Reply-To: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30936-70-ij5VNUYlOR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30936 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136316|0 |1 is obsolete| | --- Comment #6 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136319 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136319&action=edit Bug 30936: (follow-up) Add markup comments This patch adds comments to the template to highlight the markup structure. This patch should have no effect on the page's appearance or functionality. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:32:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:32:56 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-JnO0sA1Ru8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|remove_unused_authorities.p |remove_unused_authorities.p |l |l is broken Severity|enhancement |major Version|22.05 |master --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Confirmed on maser with the sample database: authid=172 type=CORPO_NAME : used 2 time(s) authid=173 type=PERSO_NAMEUndefined subroutine &main::DelAuthority called at ./misc/migration_tools/remove_unused_authorities.pl line 98. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:34:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:34:06 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-vnsZySwCUM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |katrin.fischer at bsz-bw.de |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:41:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:41:24 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-vOBo0UhazA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:41:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:41:28 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-qgHiqJMYtm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136320 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136320&action=edit Bug 30939: Fix use statement for DelAuthority Without this patch, the script won't delete any unused authorities, but gives an error instead and dies: Undefined subroutine &main::DelAuthority called at ./misc/migration_tools/remove_unused_authorities.pl line 98. To test: - Run from koha-shell: ./misc/migration_tools/remove_unused_authorities.pl -t - Verify several authorities are reported as unused - ./misc/migration_tools/remove_unused_authorities.pl -c - Verify the error message is shown when the first unused authority is found and the script stops - Apply patch and rerun: ./misc/migration_tools/remove_unused_authorities.pl -t - Verify the error is gone, the script finishes and auhorities are deleted https://bugs.koha-community.org/show_bug.cgi?id=30936 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:43:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:43:18 +0000 Subject: [Koha-bugs] [Bug 30935] Holds to pull shows wrong first patron In-Reply-To: <bug-30935-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30935-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30935-70-buqaySIX7p@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30935 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:50:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:50:38 +0000 Subject: [Koha-bugs] [Bug 30970] holdst columns don't match actual columns in 'Holds waiting' In-Reply-To: <bug-30970-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30970-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30970-70-Wg2wMQTXgo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30970 --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Same for me, I think the issue is not in master. Maybe only in 21.11 and other older versions? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 00:59:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 22:59:23 +0000 Subject: [Koha-bugs] [Bug 20747] Allow LocalHoldsPriority to fill by hierarchical groups system rather than individual library In-Reply-To: <bug-20747-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20747-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20747-70-wdZgog5FUW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20747 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |NEW -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 01:04:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 23:04:13 +0000 Subject: [Koha-bugs] [Bug 16791] Explanation of callnumber.pl plugin In-Reply-To: <bug-16791-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-16791-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-16791-70-LLyxEpPBDm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16791 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Manual -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 01:04:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 23:04:42 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-K0lcWfPx1n@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This fixes tags with |This fixes tags with release notes|special characters (such as |special characters (such as |+) so that the searching |+) so that the searching |returns results when the |returns results when the |tag is selected (from the |tag is selected (from the |record detail view in the |record detail view in the |OPAC and staff interface, |OPAC and staff interface, |and from the search results |and from the search |page and lists in the |results, tag cloud, and |OPAC). |list pages in the OPAC). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 01:06:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 23:06:09 +0000 Subject: [Koha-bugs] [Bug 30657] Make patron attributes available via Template Toolkit in overdues In-Reply-To: <bug-30657-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30657-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30657-70-tTOjgLccUS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- +1 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 01:23:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 23:23:12 +0000 Subject: [Koha-bugs] [Bug 30517] Translation breaks editing parent type circulation rule In-Reply-To: <bug-30517-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30517-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30517-70-27n3uhIT21@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30517 --- Comment #4 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi, should this be Needs Signoff? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 01:35:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 17 Jun 2022 23:35:41 +0000 Subject: [Koha-bugs] [Bug 29745] Due dates via SIP2 wrong for unique holidays In-Reply-To: <bug-29745-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29745-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29745-70-fGB9ldafNI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29745 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Magnus, could this have been Bug 26871 - L1 cache still too long in SIP Server ? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 03:28:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 01:28:05 +0000 Subject: [Koha-bugs] [Bug 27735] Upload/Manage files that are not associated with items or patrons In-Reply-To: <bug-27735-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27735-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27735-70-pbquZQ0CKE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27735 Eugene Espinoza <eugenegf at yahoo.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |eugenegf at yahoo.com --- Comment #3 from Eugene Espinoza <eugenegf at yahoo.com> --- Addendum to this is to be able to upload via the GUI editor of HTML customization and/or News. Like when adding image, the only option is to reference an image url (img src). I hope there's a way to directly upload a file instead of going via Tools > Upload and get the hash no. Thereafter. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 03:29:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 01:29:16 +0000 Subject: [Koha-bugs] [Bug 20256] Add ability to limit editing of items to home library or library group In-Reply-To: <bug-20256-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20256-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20256-70-ifno3kGIDj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20256 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Large patch CC| |victor at tuxayo.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 03:30:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 01:30:32 +0000 Subject: [Koha-bugs] [Bug 20511] Seasonal prediction just in the staff language In-Reply-To: <bug-20511-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20511-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20511-70-SJNnybtu8c@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20511 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 03:31:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 01:31:24 +0000 Subject: [Koha-bugs] [Bug 24860] Add ability to place item group level holds In-Reply-To: <bug-24860-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24860-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24860-70-dcDrXkFNwk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24860 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Medium patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 03:33:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 01:33:19 +0000 Subject: [Koha-bugs] [Bug 30941] Add value builders for UNIMARC 146 ($b, $c, $d, $e and $f) In-Reply-To: <bug-30941-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30941-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30941-70-14hhyDupW4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30941 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Large patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 03:37:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 01:37:24 +0000 Subject: [Koha-bugs] [Bug 30950] timepicker.inc is no longer used and should be removed In-Reply-To: <bug-30950-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30950-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30950-70-Xmck3jmiGz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30950 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136005|0 |1 is obsolete| | --- Comment #3 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136321 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136321&action=edit Bug 30950: Remove timepicker.inc No longer used since commit de2d8ba3e4f611aadc29165a7748cc1797d87ce3 Bug 30011: Update links to jQueryUI assets, remove datepicker references, etc. We must remove it from our codebase. Test plan: git grep timepicker.inc Should not return occurrences outside of PO's Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Victor Grousset/tuxayo <victor at tuxayo.net> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 03:37:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 01:37:58 +0000 Subject: [Koha-bugs] [Bug 30950] timepicker.inc is no longer used and should be removed In-Reply-To: <bug-30950-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30950-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30950-70-qGeosmS0Z2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30950 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Signed Off |Passed QA --- Comment #4 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Looks good, passing QA :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 03:40:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 01:40:25 +0000 Subject: [Koha-bugs] [Bug 30901] Add template method to be able to look up renewal data in Koha slips and notices In-Reply-To: <bug-30901-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30901-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30901-70-fs7whA2cYM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30901 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 09:43:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 07:43:19 +0000 Subject: [Koha-bugs] [Bug 28884] ElasticSearch: Question mark in title search returns no results In-Reply-To: <bug-28884-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28884-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28884-70-tvela9ZhcU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28884 Emmanuel Bétemps <e.betemps at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |e.betemps at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 11:35:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 09:35:20 +0000 Subject: [Koha-bugs] [Bug 27470] Improve link text for logging in In-Reply-To: <bug-27470-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27470-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27470-70-deuDzwXWNT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27470 --- Comment #11 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Strings are available on Pootle now, just from this patch: Critical 91 Unfinished 1,539 It's ok, just to show the effect. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 11:35:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 09:35:49 +0000 Subject: [Koha-bugs] [Bug 27470] Improve link text for logging in In-Reply-To: <bug-27470-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27470-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27470-70-JZwU5coKbO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27470 --- Comment #12 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Wrong bug, sorry! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 11:36:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 09:36:17 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-Yp9hV6pcnw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 --- Comment #128 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Strings are available on Pootle now, just from this patch: Critical 91 Unfinished 1,539 It's ok, just to show the effect. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 11:39:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 09:39:22 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. In-Reply-To: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30972-70-YezJNwCvZf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 --- Comment #4 from Manos PETRIDIS <egpetridis at yahoo.com> --- (In reply to Jonathan Druart from comment #1) > Are talking about cover images you attached to an *item* (vs bibliographic > record)? > This feature has been added by bug 26145 and is not in Koha "for years" ;) Well, if left unresolved, it could very well ruin many a years' work in the future ;) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 12:39:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 10:39:20 +0000 Subject: [Koha-bugs] [Bug 30992] New: Hard to translate single word strings Message-ID: <bug-30992-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30992 Bug ID: 30992 Summary: Hard to translate single word strings Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: I18N/L10N Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org CC: frederic at tamil.fr There are a few single word strings that are hard to translate without context. Maybe we could use i18n with context hint to make this a little easier: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt:124 for koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt:448 at Actually the latter highlights a case, where the spans might have a negative effect as they break the sentence apart into small bits: https://git.koha-community.org/Koha-community/Koha/src/branch/22.05.x/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt#L440 It's something like: [Waiting|On hold] for patron X [at|expected at] X [since X] The main problem here is, that these small bits can translate differently (at least in German) depending on context. In general it's quite bad to build up sentences like this as you don't know if the English grammar will fit any other languages. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 13:17:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 11:17:37 +0000 Subject: [Koha-bugs] [Bug 30993] New: Translation: Unbreak sentence in upload.tt Message-ID: <bug-30993-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30993 Bug ID: 30993 Summary: Translation: Unbreak sentence in upload.tt Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: I18N/L10N Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org CC: frederic at tamil.fr In translation, the sentence below is broken into 2 parts by the link. This makes it hard to translate as you can't move around words easily before and after the link for good grammar and are missing context: <span>Add values to the <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=UPLOAD">UPLOAD authorized value category</a> otherwise all uploads will be marked as temporary.</span> -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 22:21:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 20:21:53 +0000 Subject: [Koha-bugs] [Bug 30994] New: Typo: item was on loan. couldn't be returned. Message-ID: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 Bug ID: 30994 Summary: Typo: item was on loan. couldn't be returned. Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org There is a typo here: koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt:63 item was on loan. couldn't be returned. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 22:40:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 20:40:34 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. In-Reply-To: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30972-70-5f4zkS1mU9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 22:40:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 20:40:38 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox in upload-cover-image.pl now replaces ALL covers for a biblio, not only the specific item's covers. In-Reply-To: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30972-70-FxoFMGdicj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136160|0 |1 is obsolete| | --- Comment #5 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136322 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136322&action=edit Bug 30972: Don't replace biblio's local cover images when uploading an image's image When attaching a new cover image to an item we should not replace cover images attached to the bibliographic record if "Replace existing covers" is ticked. Test plan: Attach 1+ image to a bibliographic record Attach 1 image to an item of this biblio Attach another image to the item and seect "replace existing covers" => Without this patch the images attached to the biblio are removed => With this patch applied only the images attached to the image are removed Same if you tick the checkbox when attaching an image to the biblio Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 22:41:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 20:41:22 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox replaces ALL local covers for a biblio, not only the specific item's covers In-Reply-To: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30972-70-fJy71n1rXq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|"Replace existing covers" |"Replace existing covers" |checkbox in |checkbox replaces ALL local |upload-cover-image.pl now |covers for a biblio, not |replaces ALL covers for a |only the specific item's |biblio, not only the |covers |specific item's covers. | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:07:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:07:21 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-xy4UK9EkFz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:07:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:07:25 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-kMkcb3dg6u@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136320|0 |1 is obsolete| | --- Comment #3 from David Nind <david at davidnind.com> --- Created attachment 136323 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136323&action=edit Bug 30939: Fix use statement for DelAuthority Without this patch, the script won't delete any unused authorities, but gives an error instead and dies: Undefined subroutine &main::DelAuthority called at ./misc/migration_tools/remove_unused_authorities.pl line 98. To test: - Run from koha-shell: ./misc/migration_tools/remove_unused_authorities.pl -t - Verify several authorities are reported as unused - ./misc/migration_tools/remove_unused_authorities.pl -c - Verify the error message is shown when the first unused authority is found and the script stops - Apply patch and rerun: ./misc/migration_tools/remove_unused_authorities.pl -t - Verify the error is gone, the script finishes and auhorities are deleted https://bugs.koha-community.org/show_bug.cgi?id=30936 Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:13:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:13:03 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-JhETM2RsdA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Text to go in the| |This fixes the release notes| |./misc/migration_tools/remo | |ve_unused_authorities.pl | |script so that it now works | |and deletes unused | |authority records. Before | |this, it generated an error | |message at the first unused | |authority record and | |stopped (without deleting | |any unused authority | |records). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:13:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:13:12 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers don't appear in the staff interface for other libraries with SeparateHoldings In-Reply-To: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30234-70-DppRx4JdCU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Serial local covers do not |Serial local covers don't |appear in the |appear in the staff |administrative interface, |interface for other |unless their home library |libraries with |is the same as the one |SeparateHoldings |selected by the user upon | |entry. | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:14:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:14:53 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers don't appear in the staff interface for other libraries with SeparateHoldings In-Reply-To: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30234-70-RimKAYGtlz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:14:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:14:57 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers don't appear in the staff interface for other libraries with SeparateHoldings In-Reply-To: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30234-70-rQqICtCP9t@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136154|0 |1 is obsolete| | --- Comment #24 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136324 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136324&action=edit Bug 30234: Fix local cover image display for other holdings Bug 26145 added the ability to add local cover images to items. If SeparateHoldings is set, items from other libraries are displayed in a separate tab, and not considered as visible. We have a JS test to assume that images not shown are not present, this only apply for the images for the bibliographic record, as they can come from different sources. Test plan: Turn on LocalCoverImages and SeparateHoldings Create a record with different items coming from different libraries Attach images to items and to the biblio Notice that with this patch you can see the images from the "Other holdings" tab Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:21:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:21:52 +0000 Subject: [Koha-bugs] [Bug 21981] Specify due date, remember for session and alert In-Reply-To: <bug-21981-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21981-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21981-70-NjGKXJwMCn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21981 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |katrin.fischer at bsz-bw.de |y.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:22:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:22:01 +0000 Subject: [Koha-bugs] [Bug 21981] Specify due date, remember for session and alert In-Reply-To: <bug-21981-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21981-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21981-70-nv3VvcatZM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21981 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|katrin.fischer at bsz-bw.de |testopia at bugs.koha-communit | |y.org -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:22:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:22:11 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-wwbsquvFLr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |katrin.fischer at bsz-bw.de |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:25:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:25:22 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-cSbUlfOxFk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:25:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:25:26 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-SvAO3aG0U0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136304|0 |1 is obsolete| | --- Comment #6 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136325 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136325&action=edit Bug 30960: Don't allow user to place the hold without a pick-up place It's possible to place item-level hold without selecting a pick-up location, which causes problems: if the item is then returned, Koha tells about a hold, but gives error 500. At customer's hold tab you see the number of holds, but cannot see the actual holds there. However, if you go to the title in question, then modify the hold so that it has a pick-up place, then the hold will work normally again. This patch fixes already existing but not working js error message and ensures that hold cannot be made while pickup location is undefined. To reproduce: 1. Go to admin page, to the libraries configurations, and disable pickup location for one of them. 2. Pick any biblio that has items that have that same library as a default pickup location. 3. When placing the item-level hold, notice that the pickup location dropdown box is empty by default. Keep it empty, place the hold. 4. Go to the patron's page of the patron who you placed that hold for, check that it doesn't show the new hold. 5. Apply patch. 6. Repeat steps 2 and 3, it shouldn't let you make the item-level hold until you select a specific pickup location. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:27:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:27:24 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-kFe9bFA1Oc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136325|0 |1 is obsolete| | --- Comment #7 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136326 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136326&action=edit Bug 30960: Fix JS error message when no pick-up location is selected when placing a hold It's possible to place item-level hold without selecting a pick-up location, which causes problems: if the item is then returned, Koha tells about a hold, but gives error 500. At patron's hold tab you see the number of holds, but cannot see the actual holds there. However, if you go to the title in question, then modify the hold so that it has a pick-up location, then the hold will work normally again. This patch fixes already existing but not working JS error message and ensures that hold cannot be made while pickup location is undefined. To reproduce: 1. Go to admin page, to the libraries configurations, and disable pickup location for one of them. 2. Pick any biblio that has items that have that same library as a default pickup location. 3. When placing the item-level hold, notice that the pickup location dropdown box is empty by default. Keep it empty, place the hold. 4. Go to the patron's page of the patron who you placed that hold for, check that it doesn't show the new hold. 5. Apply patch. 6. Repeat steps 2 and 3, it shouldn't let you make the item-level hold until you select a specific pickup location. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:36:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:36:39 +0000 Subject: [Koha-bugs] [Bug 14784] Missing checkin message for debarred patrons when issuing rules 'fine days = 0' In-Reply-To: <bug-14784-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-14784-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-14784-70-npsIuVpYKg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14784 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:40:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:40:46 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-lz8iTXytvn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 --- Comment #7 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- No patch? :( -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:44:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:44:31 +0000 Subject: [Koha-bugs] [Bug 30799] Add REST API route to update biblio metadata In-Reply-To: <bug-30799-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30799-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30799-70-3gge4skfqu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30799 --- Comment #9 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I think a 'full' overwrite if described as such would be a good first step. If we could make it follow overlay rules, maybe by adding a new filter 'REST API' that would be great. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:49:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:49:56 +0000 Subject: [Koha-bugs] [Bug 28201] Add API routes to create biblio record In-Reply-To: <bug-28201-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28201-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28201-70-oxqjv03SZd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28201 --- Comment #16 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- What's missing here to move it out of discussion? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 18 23:58:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 21:58:00 +0000 Subject: [Koha-bugs] [Bug 30723] Allow for notices to have custom header/footer includes In-Reply-To: <bug-30723-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30723-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30723-70-c7F2fBQaXD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30723 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- +1 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 00:13:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 22:13:59 +0000 Subject: [Koha-bugs] [Bug 30909] Regression, Permanent shelving location is always updated when editing location if both are mapped to MARC fields In-Reply-To: <bug-30909-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30909-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30909-70-RtlqgpFXgx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30909 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #4 from David Nind <david at davidnind.com> --- I would like to test this, but I'm not familiar enough with locations and MARC to do step 1 and 2 in the bug test plan. Could you advise on how to do steps 1(c) and 2(c) in my revised test plan (based on bug 27837)? Apologies for such a basic question! Also, does this bug address editing using batch item modification, or is an updated patch required? Thanks! Revised test plan: 1. Map permanent_location to a marc field: a. go to Administration > Catalog > Koha to MARC mapping b. locate items.permanent_location then select Add c. QUESTION - which field code and subfield code do I map it to? 2. Expose that field in the item editor: a. go to Administration > Catalog > MARC bibliographic framework b. select the MARC framework for BKS c. QUESTION - which MARC field do I use for permanent_location to get this to show in the item editor? 3. Edit an item, changing location to X and permanent location to Y, save. 4. Confirm record shows location=X, permanent_location=Y. 5. Edit item again, change location to Z, do not change permanent location, save. 6. Confirm location and permanent_location both equal Z. 7. Run through steps 3-6 using batch item modification for a record with multiple items (record details page > Select all the items under the holdings tab > Modify selected items). 8. Apply patch, flush_memcached, restart_all. 9. Repeat steps 3-7. 10. Confirm location=Z, permanent location=Y. 11. Run the tests: prove t/db_dependent/Items.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 00:18:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 22:18:38 +0000 Subject: [Koha-bugs] [Bug 30909] Regression, Permanent shelving location is always updated when editing location if both are mapped to MARC fields In-Reply-To: <bug-30909-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30909-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30909-70-u4xYd5Geod@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30909 --- Comment #5 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I believe you need to map to a free 952. An option could be a new subfield L you create and make visible in the BKS framework. It needs to be on tab 10 (items). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 00:37:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 22:37:29 +0000 Subject: [Koha-bugs] [Bug 14784] Missing checkin message for debarred patrons when issuing rules 'fine days = 0' In-Reply-To: <bug-14784-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-14784-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-14784-70-6NAvt5CvgT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14784 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 00:37:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 22:37:34 +0000 Subject: [Koha-bugs] [Bug 14784] Missing checkin message for debarred patrons when issuing rules 'fine days = 0' In-Reply-To: <bug-14784-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-14784-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-14784-70-TFiE3sBgnx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14784 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136040|0 |1 is obsolete| | --- Comment #66 from David Nind <david at davidnind.com> --- Created attachment 136327 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136327&action=edit Bug 14784: Fix checkin message for restricted patrons Test plan: Before 1) Select a user with active indefinite or definite restrictions (manual restriction works) 2) Make sure finesday=0 for the user category. See [1] 3) Checkout and return an item (not overdue) A previous restriction reminder will appear 4) Checkout and return an overdue item (change the date at cehckout) No previous restriction reminder will appear After applying patch: Same steps, but a reminder should appear for step 4) [1] The "finesday" setting is called "Suspension in days" in the web interface, if you're searching for it like I did... Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 00:39:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 22:39:47 +0000 Subject: [Koha-bugs] [Bug 14784] Missing checkin message for debarred patrons when issuing rules 'fine days = 0' In-Reply-To: <bug-14784-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-14784-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-14784-70-5W740gE8dq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14784 --- Comment #67 from David Nind <david at davidnind.com> --- My testing notes (using koha-testing-docker) Step 1: To add a restriction: . Select and edit a patron . Scroll down to the 'Patron restrictions' section . Add a manual restriction Step 2: In KTD "Suspension in days" is already set to 0 for the current default rules. Steps 3 and 4: Use the "Override restriction temporarily" when checking out an item. Tests should continue to pass: prove -v t/db_dependent/Circulation.t See also comment #21. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 00:45:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 22:45:12 +0000 Subject: [Koha-bugs] [Bug 29094] Placing holds via SIP2 does not check if a patron can hold the given item In-Reply-To: <bug-29094-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29094-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29094-70-UzWPscPkse@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29094 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Status|Needs Signoff |Patch doesn't apply --- Comment #2 from David Nind <david at davidnind.com> --- The patch no longer applies 8-(.. Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 29094: Adding hold via SIP should check if patron can hold item first Using index info to reconstruct a base tree... M t/db_dependent/SIP/ILS.t M t/db_dependent/SIP/Transaction.t Falling back to patching base and 3-way merge... Auto-merging t/db_dependent/SIP/Transaction.t CONFLICT (content): Merge conflict in t/db_dependent/SIP/Transaction.t Auto-merging t/db_dependent/SIP/ILS.t error: Failed to merge in the changes. Patch failed at 0001 Bug 29094: Adding hold via SIP should check if patron can hold item first -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 00:59:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 18 Jun 2022 22:59:07 +0000 Subject: [Koha-bugs] [Bug 30909] Regression, Permanent shelving location is always updated when editing location if both are mapped to MARC fields In-Reply-To: <bug-30909-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30909-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30909-70-0lhHvMn7J4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30909 --- Comment #6 from David Nind <david at davidnind.com> --- (In reply to Katrin Fischer from comment #5) > I believe you need to map to a free 952. An option could be a new subfield L > you create and make visible in the BKS framework. It needs to be on tab 10 > (items). Thanks Katrin! I will that. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 09:10:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 07:10:30 +0000 Subject: [Koha-bugs] [Bug 30909] Regression, Permanent shelving location is always updated when editing location if both are mapped to MARC fields In-Reply-To: <bug-30909-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30909-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30909-70-Mjx2t42VL0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30909 --- Comment #7 from David Nind <david at davidnind.com> --- I couldn't get steps 1 and 2 of the bug test plan to work correctly - will leave for someone who knows what they should be doing here. I'm sure it is something relatively simple that I'm not getting! For step 2c below, after I press OK the page reloads but there is nothing shown for permanent_location. When I test the frameworks, I get this error: items.permanent_location mapped: The following mappings exist for items.permanent_location, and they shouldn't. Framework code Framework description Tag Subfield BKS Books, Booklets, Workbooks 952 L This is what I did/intended to do: 1. Create and expose a new 952 subfield in the item editor: a. Administration > Catalog > MARC bibliographic framework b. Select the BKS MARC framework c. Add a new subfield for 952 - L, use the same settings as 952$c, except name as Permanent shelving location 2. Map permanent_location to a marc field: a. Administration > Catalog > Koha to MARC mapping b. Locate items.permanent_location then select Add c. Map to a new 952 field, for example 952,L d. Rebuild the marc mappings: remove the duplicate 010 for record 72, then misc/batchRebuildBiblioTables.pl -c will run without errors 3. Edit an item, changing location to X and permanent location to Y, save (for example: location = New materials shelf, Permanent shelving location = General stacks). 4. Confirm record shows location=X, permanent_location=Y (for example: location = New materials shelf, Permanent shelving location = General stacks). 5. Edit item again, change location to Z, do not change permanent location, save (for example: Children's area). 6. Run through steps 3-6 using batch item modification for a record with multiple items (record details page > Select all the items under the holdings tab > Modify selected items). ==> Not: new 952 subfield is not shown, so you can't use the batch item modification 8. Apply patch, flush_memcached, restart_all. 9. Repeat steps 3-6. 10. Confirm location=Z, permanent location=Y. 11. Run the tests: prove t/db_dependent/Items.t Notes: - When you add a mapping: the instructions say: "Adding a mapping for: items.permanent_location. Please enter field tag and subfield code, separated by a comma. (For control fields: add '@' as subfield code.) The change will be applied immediately." - However, at the top of the page it says: "If you make any change to the mappings, you must ask your administrator to run misc/batchRebuildBiblioTables.pl." - Not sure which is right here and hwteher this shouldbe logged as a new bug. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 10:06:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 08:06:22 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-IikRgloBA9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |david at davidnind.com --- Comment #41 from David Nind <david at davidnind.com> --- Patch no longer applies 8-(.. Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 28327: Add unit tests Applying: Bug 28327: Unify CSV delimiter special behavior for tabulation Using index info to reconstruct a base tree... M C4/Context.pm M koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.csv.inc M koha-tmpl/intranet-tmpl/prog/en/includes/csv_headers/catalogue/itemsearch.tt M reports/cash_register_stats.pl M reports/guided_reports.pl Falling back to patching base and 3-way merge... Auto-merging reports/guided_reports.pl Auto-merging reports/cash_register_stats.pl Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/csv_headers/catalogue/itemsearch.tt Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.csv.inc Auto-merging C4/Context.pm CONFLICT (content): Merge conflict in C4/Context.pm error: Failed to merge in the changes. Patch failed at 0001 Bug 28327: Unify CSV delimiter special behavior for tabulation -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 10:24:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 08:24:36 +0000 Subject: [Koha-bugs] [Bug 30437] Add an SVG loader to Koha pendingreserves.pl In-Reply-To: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30437-70-9p2r1kf3Bt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30437 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 10:24:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 08:24:40 +0000 Subject: [Koha-bugs] [Bug 30437] Add an SVG loader to Koha pendingreserves.pl In-Reply-To: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30437-70-CR3CSsGYqe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30437 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #132871|0 |1 is obsolete| | --- Comment #2 from David Nind <david at davidnind.com> --- Created attachment 136328 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136328&action=edit Bug 30437: Add SVG loader to pendingreserves.pl To test: 1. Try to have a bunch of holds in your test system so pendingreserves.pl takes several seconds to load 2. Apply patch 3. Regenerate the staff CSS: https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_interface 4. Go to Home > Circulation 5. Click on "Holds to Pull" 6. As the page is loading you should notice some 'Loading page...' text with a spinning SVG loader. 7. Nothing else should change with the functionality of the "Holds to Pull" report This uses a very nice free to use SVG loader from Sam Herbert. https://samherbert.net/svg-loaders/ Credit and link are included in the SVG file Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 10:27:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 08:27:25 +0000 Subject: [Koha-bugs] [Bug 30437] Add an SVG loader to Koha pendingreserves.pl In-Reply-To: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30437-70-TEku4d15U1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30437 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #3 from David Nind <david at davidnind.com> --- Testing notes (using koha-testing-docker): - Placed about 100 holds by searching for either a and cat, then selecting all and placing about 20 holds at a time for different patrons. - Rebuilding CSS is now a lot easier with KTD: yarn install then yarn build -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 12:29:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 10:29:42 +0000 Subject: [Koha-bugs] [Bug 30947] Simplify date handling in CanbookBeIssued In-Reply-To: <bug-30947-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30947-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30947-70-htgFECoxBn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30947 --- Comment #8 from Joonas Kylmälä <joonas.kylmala at iki.fi> --- Created attachment 136329 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136329&action=edit Bug 30947: (follow-up) Remove unnecessary object cloning CalcDateDue() works on its own copy of the $startdate parameter so the cloning in the calling end is not necessary. Signed-off-by: Joonas Kylmälä <joonas.kylmala at iki.fi> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 12:31:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 10:31:05 +0000 Subject: [Koha-bugs] [Bug 30947] Simplify date handling in CanbookBeIssued In-Reply-To: <bug-30947-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30947-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30947-70-BAxyhyKA0T@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30947 --- Comment #9 from Joonas Kylmälä <joonas.kylmala at iki.fi> --- We were doing a copy of the $now DateTime object unnecessarily so added a trivial follow-up for that. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 13:44:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 11:44:22 +0000 Subject: [Koha-bugs] [Bug 30717] Dates displayed in ISO format when editing items In-Reply-To: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30717-70-5yjEGCM0NC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30717 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com, | |victor at tuxayo.net --- Comment #12 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi, I think this still needs backporting as it was reported against 21.11.04? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 13:46:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 11:46:14 +0000 Subject: [Koha-bugs] [Bug 30361] If bug 29369 is applied or an update to 21.11.03 occurs no item saving is permitted if the framework marks this field as mandatory. In-Reply-To: <bug-30361-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30361-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30361-70-zfZ2XH8LD6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30361 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Courtenay, I believe this is bug 30717, I've tried to alert our RMaints that it still needs backporting to 21.11. *** This bug has been marked as a duplicate of bug 30717 *** -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 13:46:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 11:46:14 +0000 Subject: [Koha-bugs] [Bug 30717] Dates displayed in ISO format when editing items In-Reply-To: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30717-70-4FrbHYoeez@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30717 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |courtenay.johnson at gmail.com --- Comment #13 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- *** Bug 30361 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 13:47:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 11:47:58 +0000 Subject: [Koha-bugs] [Bug 30383] Column suggestion is too wide when displaying more than 20 suggestions (suggestion.pl) In-Reply-To: <bug-30383-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30383-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30383-70-xQz5SwfKp6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30383 --- Comment #5 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Owen, do you think we should close this or is this something we could catch better? (maybe shortening contents after a certain length like we can do for the facets?) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 13:48:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 11:48:43 +0000 Subject: [Koha-bugs] [Bug 7826] Standardize link for triggering plugins and auto-entry In-Reply-To: <bug-7826-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-7826-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-7826-70-psQ8vYZucz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7826 --- Comment #6 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Still keen on this one :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 14:48:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 12:48:10 +0000 Subject: [Koha-bugs] [Bug 29504] Confirm item parts requires force_checkout permission In-Reply-To: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29504-70-ufeMplIArZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30995 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30995 [Bug 30995] Bug 29504 - Confirm item parts requires force_checkout permission (batch checkout) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 14:48:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 12:48:10 +0000 Subject: [Koha-bugs] [Bug 30995] New: Bug 29504 - Confirm item parts requires force_checkout permission (batch checkout) Message-ID: <bug-30995-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30995 Bug ID: 30995 Summary: Bug 29504 - Confirm item parts requires force_checkout permission (batch checkout) Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Circulation Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com Depends on: 29504 We still see the issue or a similar one as from bug 29504 on the batch checkout of items with $3 and CircConfirmItemParts: Test plan: 1. Set a staff member with circ permissions, but not FORCE_CHECKOUT 2. Turn on: CircConfirmItemParts, BatchCheckouts, BatchCheckoutsValidCategories (all) 3. Log in as staff member in step 1 4. Attempt to checkout an item with a 952$3 from the batch checkout tab 5. The button to process/confirm the checkouts is missing. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 [Bug 29504] Confirm item parts requires force_checkout permission -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 14:49:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 12:49:33 +0000 Subject: [Koha-bugs] [Bug 30995] Bug 29504 - Confirm item parts requires force_checkout permission (batch checkout) In-Reply-To: <bug-30995-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30995-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30995-70-yMK5BhvqIG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30995 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 14:50:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 12:50:05 +0000 Subject: [Koha-bugs] [Bug 29504] Confirm item parts requires force_checkout permission (checkouts tab) In-Reply-To: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29504-70-lBgT3Y8KDf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Confirm item parts requires |Confirm item parts requires |force_checkout permission |force_checkout permission | |(checkouts tab) --- Comment #21 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I've tested the batch checkout and Joubu is right, it doesn't work. The button to perform the checkouts is missing, but it's there when testing with a superlibrarian. My suggestion would be to still have this fix and report/fix the batch checkout feature separately to get this moving again: Bug 30995 - Bug 29504 - Confirm item parts requires force_checkout permission (batch checkout) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 14:51:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 12:51:33 +0000 Subject: [Koha-bugs] [Bug 29504] Confirm item parts requires force_checkout permission (checkouts tab) In-Reply-To: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29504-70-rNqnf4Ud0n@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 14:51:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 12:51:38 +0000 Subject: [Koha-bugs] [Bug 29504] Confirm item parts requires force_checkout permission (checkouts tab) In-Reply-To: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29504-70-Mh78S5Ml15@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #130187|0 |1 is obsolete| | --- Comment #22 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136330 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136330&action=edit Bug 29504: Allow 'ADDITIONAL_MATERIALS' check to be confirmed The additional materials check when CircConfirmParts is enabled was errantly relying upon the 'FORCE_CHECKOUT' permission. This patch updates the template to allow confirmation as well as cancellation of chekout. Test plan 1. Set a staff member with circ permissions, but not FORCE_CHECKOUT 2. Turn on CircConfirmItemParts 3. Log in as staff member in step 1 4. Attempt to checkout an item with a 952$3 5. The only option given is the Continue button (with a red X) and when clicked, the item does not get checked out. 6. Apply patch 7. Repeat step 4. 8. You should now have the option to 'Yes, check out (Y)' or 'No, don't check out (N)' Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 14:51:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 12:51:44 +0000 Subject: [Koha-bugs] [Bug 29504] Confirm item parts requires force_checkout permission (checkouts tab) In-Reply-To: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29504-70-7dOGzCwMEz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #130188|0 |1 is obsolete| | --- Comment #23 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136331 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136331&action=edit Bug 29504: (follow-up) Account for other blockers Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 14:52:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 12:52:20 +0000 Subject: [Koha-bugs] [Bug 29504] Confirm item parts requires force_checkout permission (checkouts tab) In-Reply-To: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29504-70-4zHc3WVi5D@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 14:52:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 12:52:26 +0000 Subject: [Koha-bugs] [Bug 29504] Confirm item parts requires force_checkout permission (checkouts tab) In-Reply-To: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29504-70-THsoBcj4Li@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 16:13:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 14:13:04 +0000 Subject: [Koha-bugs] [Bug 30658] (Bug 29496 follow-up) CheckMandatorySubfields don't work properly with select field in serials-edit.tt for Supplemental issue In-Reply-To: <bug-30658-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30658-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30658-70-tgaJlKJurH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30658 --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I am tempted to make this major as it's a major issue in workflow if you can't add supplemental items. As the default framework is used removing all mandatory fields might be a workaround but not a good solution. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 16:17:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 14:17:12 +0000 Subject: [Koha-bugs] [Bug 30658] (Bug 29496 follow-up) CheckMandatorySubfields don't work properly with select field in serials-edit.tt for Supplemental issue In-Reply-To: <bug-30658-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30658-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30658-70-2Ejd5T02pp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30658 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 16:17:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 14:17:16 +0000 Subject: [Koha-bugs] [Bug 30658] (Bug 29496 follow-up) CheckMandatorySubfields don't work properly with select field in serials-edit.tt for Supplemental issue In-Reply-To: <bug-30658-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30658-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30658-70-UYpvtld2oc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30658 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134446|0 |1 is obsolete| | --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136332 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136332&action=edit Bug 30658: (bug 29496 follow-up) CheckMandatorySubfields don't work properly with select field in serials-edit.tt for Supplemental issue CheckMandatorySubfields use the class "input_marceditor" but in file serials-edit.tt this class is not set for select input in Supplemental issue form. In consequence if a select field is set as mandatory, it is detected as missing even if it is filed and so you can't submit the form and receive the new supplemantal issue. Test plan: 1- Create (or find) a subscription for a biblio record and select the option "Create an item record when receiving this serial" 2- Be sure to have at least one mandatory subfield that is filed with a select input in the framework used by the biblio record. (ex: 952$a, 952$b or 952$c). 3- From the subscription-detail page click on "Receive" 4- In the lower part--Supplemental issue--fill the suppelemant details, change the status to "Arrived" and fill the item form that appears. 5- Click on "Save" 6- Check that an error box appear with the message " Form not submitted because of the following problem(s) 1 mandatory fields empty (highlighted)" (the number can be different according to the number of concerned subfields) 7- Apply the patch 8- Repeat step 3 to 5 9- Check that no error appear and that your item has been created Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 16:29:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 14:29:50 +0000 Subject: [Koha-bugs] [Bug 30878] Canceling holds from 'Holds awaiting pickup' should not reset the selected tab In-Reply-To: <bug-30878-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30878-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30878-70-rzMWKX1MsT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30878 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 16:29:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 14:29:54 +0000 Subject: [Koha-bugs] [Bug 30878] Canceling holds from 'Holds awaiting pickup' should not reset the selected tab In-Reply-To: <bug-30878-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30878-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30878-70-w5vdE6G50A@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30878 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135553|0 |1 is obsolete| | --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136333 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136333&action=edit Bug 30878: Avoid resetting waiting reserves tab When canceling holds waiting over X days in "Holds awaiting pickup" view, form submission resets the selected tab to "Holds waiting". This tab reset may cause confusion for the user and lead to unwanted actions. Instead, the user should be returned to the same tab that they began with. To test: 1. Apply patch 2. Navigate to /cgi-bin/koha/circ/waitingreserves.pl 3. Select "Holds waiting over X days" tab 4. Refresh page 5. Observe "Holds waiting over X days" is still selected 6. Have some holds waiting over X days 7. Select one of them and press "Cancel selected (1)" and confirm 8. Observe "Holds waiting over X days" is still selected after form submission Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 17:01:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 15:01:29 +0000 Subject: [Koha-bugs] [Bug 30352] "Not for loan" in result list doesn't translate in OPAC In-Reply-To: <bug-30352-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30352-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30352-70-HbZnAUn2EW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30352 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |frederic at tamil.fr Component|OPAC |I18N/L10N Version|20.11 |master Assignee|oleonard at myacpl.org |koha-bugs at lists.koha-commun | |ity.org --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- The problem is somewhere around here: https://git.koha-community.org/Koha-community/Koha/src/branch/master/C4/XSLT.pm#L396 I think it was assumed that you'd usually have a description stemming from the authorised value, but this is not the case when the itemtype determines that the item is Not for loan. We need to have this string translatable. I am currently out of ideas on how to fix this :( -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 21:47:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 19:47:33 +0000 Subject: [Koha-bugs] [Bug 21330] Add XSLT for authority normal view in OPAC In-Reply-To: <bug-21330-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21330-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21330-70-C9N3zgm18v@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21330 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Status|Needs Signoff |Patch doesn't apply --- Comment #8 from David Nind <david at davidnind.com> --- Patch no longer applies + whitespace errors 8-(.. git bz apply 21330 Bug 21330 - Add XSLT for authority normal view in OPAC 130276 - Bug 21330: Add xslt for authority normal view in OPAC Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 21330: Add xslt for authority normal view in OPAC .git/rebase-apply/patch:76: trailing whitespace. [% ELSE %] .git/rebase-apply/patch:287: trailing whitespace. .git/rebase-apply/patch:289: trailing whitespace. .git/rebase-apply/patch:299: trailing whitespace. warning: 4 lines add whitespace errors. Using index info to reconstruct a base tree... M installer/data/mysql/mandatory/sysprefs.sql M koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref M koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt .git/rebase-apply/patch:76: trailing whitespace. [% ELSE %] .git/rebase-apply/patch:287: trailing whitespace. .git/rebase-apply/patch:289: trailing whitespace. .git/rebase-apply/patch:299: trailing whitespace. warning: 4 lines applied after fixing whitespace errors. Falling back to patching base and 3-way merge... Auto-merging koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref Auto-merging installer/data/mysql/mandatory/sysprefs.sql CONFLICT (content): Merge conflict in installer/data/mysql/mandatory/sysprefs.sql error: Failed to merge in the changes. Patch failed at 0001 Bug 21330: Add xslt for authority normal view in OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 21:52:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 19:52:37 +0000 Subject: [Koha-bugs] [Bug 30036] Add xslt for authority results normal view in OPAC In-Reply-To: <bug-30036-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30036-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30036-70-WcCkE9gPCJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30036 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |david at davidnind.com --- Comment #3 from David Nind <david at davidnind.com> --- Patch no longer applies + whitespace errors 8-(.. git bz apply 30036 Bug 30036 - Add xslt for authority results normal view in OPAC 130232 - Bug 30036: Add xslt for authority results normal view in OPAC Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 30036: Add xslt for authority results normal view in OPAC .git/rebase-apply/patch:107: trailing whitespace. warning: 1 line adds whitespace errors. Using index info to reconstruct a base tree... M installer/data/mysql/mandatory/sysprefs.sql M koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref M koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-authoritiessearchresultlist.tt .git/rebase-apply/patch:107: trailing whitespace. warning: 1 line applied after fixing whitespace errors. Falling back to patching base and 3-way merge... Auto-merging koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-authoritiessearchresultlist.tt Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref Auto-merging installer/data/mysql/mandatory/sysprefs.sql CONFLICT (content): Merge conflict in installer/data/mysql/mandatory/sysprefs.sql error: Failed to merge in the changes. Patch failed at 0001 Bug 30036: Add xslt for authority results normal view in OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 22:43:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 20:43:39 +0000 Subject: [Koha-bugs] [Bug 29983] Display the pretend claim column in overdue.tt In-Reply-To: <bug-29983-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29983-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29983-70-QQilAdVllD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29983 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 22:43:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 20:43:44 +0000 Subject: [Koha-bugs] [Bug 29983] Display the pretend claim column in overdue.tt In-Reply-To: <bug-29983-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29983-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29983-70-Fl7zdDKQ0D@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29983 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134223|0 |1 is obsolete| | --- Comment #12 from David Nind <david at davidnind.com> --- Created attachment 136334 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136334&action=edit Bug 29983: Display the pretend claim column in overdue.tt This patch displays the column "Return claims" from the page "moremember.pl" to the page "overdues.pl". Rebase on master. Test plan: 1) Use a patron with at least 1 item who should be checked out soon 2) Home > Patron > Patron details for [name] 3) Click on the 'Checkout' button down the page to show the full table and notice the "Return Claims" column 4) Now go to Home > Circulation > Overdues 5) Find the patron who has to check out and have a look at the table 6) Apply patch and repeat 4) and 5) -> the "Return Claim" column is now displayed on the table Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 22:54:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 20:54:05 +0000 Subject: [Koha-bugs] [Bug 29983] Display the pretend claim column in overdue.tt In-Reply-To: <bug-29983-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29983-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29983-70-gtnvlldXDl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29983 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Text to go in the| |This enhancement adds the release notes| |"Return claims" column to | |the circulation overdues | |page, like it is on a | |patron's check out and | |details pages. Display or | |hide the column using the | |column settings options. It | |can also be configured | |using the table settings | |options in the | |administration area - it is | |hidden by default. --- Comment #13 from David Nind <david at davidnind.com> --- Testing notes (using koha-testing-docker): 1. Add a new authorized value for LOST, for example: Authorized value = 5, Description = Claimed returned. 2. Add the authorized value (5) to the ClaimReturnedLostValue system preference. 3. Note that if ClaimReturnedLostValue is not set, then the "Return claims" column is not displayed on the patron's check out and details pages, but can be displayed or hidden using the column settings button. 4. Check out an item to a patron so that it is overdue (when checking out: expand the "Checkout settings" link under the barcode entry field, and specify the due date to an earlier date than today). 5. View the patron's details page and note that the "Return claims" column is displayed. 6. View the overdues page in the circulation module. 7. Note that there is no "Return claims" column, and it doesn't appear in the list of columns that can be displayed or hidden. 8. After the patch is applied, the "Return claims" column can now be displayed or hidden. 9. The column can also be configured using the table settings options in the administration area - the default is for it to be hidden. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 19 23:36:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 21:36:36 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-PqRVGF2HUY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Status|Needs Signoff |Patch doesn't apply --- Comment #32 from David Nind <david at davidnind.com> --- Patch no longer applies 8-(.. git bz apply 29325 Bug 29325 - commit_file.pl error 'Already in a transaction' 135556 - Bug 29325: Fix commit_file.pl 135557 - Bug 29325: (QA follow-up) Remove unexisting parameters of BatchRevertRecords 135558 - Bug 29325: Call progress callback one last time to confirm comppletion 135559 - Bug 29325: Fix import from staff client 135560 - Bug 29325: Handle the transaction in BatchCommitRecords Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 29325: Fix commit_file.pl .git/rebase-apply/patch:16: trailing whitespace. # optional callback to monitor status error: sha1 information is lacking or useless (C4/ImportBatch.pm). error: could not build fake ancestor Patch failed at 0001 Bug 29325: Fix commit_file.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 00:00:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 22:00:22 +0000 Subject: [Koha-bugs] [Bug 30567] Create manual invoice with FR currency format show the incorrect format In-Reply-To: <bug-30567-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30567-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30567-70-ihCAZ2FrpB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30567 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 00:00:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 22:00:28 +0000 Subject: [Koha-bugs] [Bug 30567] Create manual invoice with FR currency format show the incorrect format In-Reply-To: <bug-30567-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30567-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30567-70-V7sYzglD1C@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30567 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135737|0 |1 is obsolete| | --- Comment #6 from David Nind <david at davidnind.com> --- Created attachment 136335 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136335&action=edit Bug 30567: Fix price formatting when adding a manual invoice with CurrencyFormat FR In input fields we always use the decimal . while the display format uses the decimal separtor definded by CurrencyFormat. When adding a manual invoice without this patch, the amount is shown with comma, but it should be . in the input field. To test: 1- Go in Administration->Debit types 2- Click on New debit type 3- Fill the form: Code: USEDBOOK Default amount: 0.50 Description: Used book Can be manually invoiced: Yes 4- Save 5- Go to any patron account 6- Go to the "Accounting" tab 7- Click on "Create manual invoice" 8- Fill the form 9- Choose the created debit (Used book) 10- Verify that the format is incorrect (0,50 instead of 0.50) 11- Apply the patch 12- Verify the amount is now using the correct format Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 00:12:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 22:12:42 +0000 Subject: [Koha-bugs] [Bug 30567] Create manual invoice with FR currency format show the incorrect format In-Reply-To: <bug-30567-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30567-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30567-70-vgpXTo1BMX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30567 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Severity|enhancement |normal Text to go in the| |This fixes the price release notes| |formatting when | |CurrencyFormat = FR. When | |adding a manual invoice, | |the amount input field was | |shown with a comma for | |debit types with default | |amounts, but it should be a | |decimal point. (For input | |fields we always use the | |decimal point and the | |display format uses the | |decimal separator defined | |by CurrencyFormat.) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 01:33:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 23:33:25 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-gxoAwg16He@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #5 from David Cook <dcook at prosentient.com.au> --- I'm glad to see someone working on this, since bug 21586 is out of date now. I have a more up-to-date version that I run locally, but I've been thinking about updating it to use a library[1] to handle the OpenID Connect side of things. I'll make some comments using the review as well... [1] https://metacpan.org/pod/Mojolicious::Plugin::OAuth2 https://metacpan.org/pod/LWP::Authen::OAuth2 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 01:36:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 23:36:53 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-dfFjQrIwKX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #6 from David Cook <dcook at prosentient.com.au> --- (In reply to David Cook from comment #5) > https://metacpan.org/pod/LWP::Authen::OAuth2 Looks like the author/maintainer for this library is our very own Thomas Klausner (domm) so I'd be curious to hear more about how he uses this module... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 01:37:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 23:37:08 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-ehdI0Nbta0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #7 from David Cook <dcook at prosentient.com.au> --- Comment on attachment 136302 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136302 Bug 30988: Adding a more generic version of googleopenidconnect Review of attachment 136302: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=30988&attachment=136302) ----------------------------------------------------------------- I don't think system preferences are the right way to go, because they lock you into only using 1 identity provider. While some organisations only need to use 1, I've had multiple clients where they've needed to use at least 2 different identity providers. I seem to recall that Tomas was going to do some work on a web form to allow superlibrarians to define their own identity providers for Koha. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 01:58:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 19 Jun 2022 23:58:52 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-kJysO6BhCR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #8 from David Cook <dcook at prosentient.com.au> --- Comment on attachment 136302 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136302 Bug 30988: Adding a more generic version of googleopenidconnect Review of attachment 136302: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=30988&attachment=136302) ----------------------------------------------------------------- I don't think system preferences are the right way to go, because they lock you into only using 1 identity provider. While some organisations only need to use 1, I've had multiple clients where they've needed to use at least 2 different identity providers. I seem to recall that Tomas was going to do some work on a web form to allow superlibrarians to define their own identity providers for Koha. ::: opac/svc/auth/openidconnect @@ +39,5 @@ > +use HTTP::Request::Common qw{ POST }; > +use JSON; > +use MIME::Base64 qw{ decode_base64url }; > + > +my $discoveryDocURL = C4::Context->preference('OpenIDConfigURL'); I notice you often use "OpenID" but I think it would be more appropriate to use the abbreviation "OIDC" if you're not going to write out OpenIDConnect fully. @@ +54,5 @@ > +my $clientid = C4::Context->preference('OpenIDOAuth2ClientID'); > +my $clientsecret = C4::Context->preference('OpenIDOAuth2ClientSecret'); > + > +my $ua = LWP::UserAgent->new(); > +my $response = $ua->get($discoveryDocURL); I think this is great. I've been meaning to switch over to this for years... @@ +131,5 @@ > + 'Authentication failed. Incorrect token type.' ); > + } > + my $idtoken = $json->{'id_token'}; > + > + # need to validate the token here I'd suggest putting this validation code into a function, and putting your functions into a module where they can be unit tested. @@ +183,5 @@ > + else { > + my $error_feedback = > +'The email address you are trying to use is not associated with a borrower at this library.'; > + my $auto_registration = C4::Context->preference('OpenIDConnectAutoRegister') // q{0}; > + my $borrower = Koha::Patrons->find( { email => $email } ); This won't work properly for pre-existing patrons that might have their email saved into "emailpro". It would be wise to search both email and emailpro for borrowers. @@ +188,5 @@ > + if (! $borrower && $auto_registration==1) { > + my $firstname = $claims_json->{'given_name'} // q{}; > + my $surname = $claims_json->{'family_name'} // q{}; > + my $delimiter = $firstname ? q{.} : q{}; > + my $userid = $firstname . $delimiter . $surname; You'll need some error handling here in the unlikely event that there's no given_name or family_name claims. @@ +196,5 @@ > + my $library = Koha::Libraries->find( $branchcode ); > + if (defined $patron_category && defined $library) { > + my $password = undef; > + # TODO errors handling! > + my $borrower = Koha::Patron->new({ It looks like you're only using the standard claims of email, given_name, and family_name. I've noticed that it's common to have additional custom claims that you may need to map into Koha (e.g. sort1). So it would be good to have that mapping capacity here. @@ +251,5 @@ > + my $prompt = $query->param('reauthenticate') // q{}; > + if ( $authendpoint eq q{} ) { > + loginfailed( $query, 'Unable to discover authorisation endpoint.' ); > + } > + my $authorisationurl = You might want to consider using the "query_form" method in the URI module. It makes for cleaner url building. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 02:06:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 00:06:16 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-qcvyFlEnR4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #9 from David Cook <dcook at prosentient.com.au> --- (In reply to David Cook from comment #8) > @@ +183,5 @@ > > + else { > > + my $error_feedback = > > +'The email address you are trying to use is not associated with a borrower at this library.'; > > + my $auto_registration = C4::Context->preference('OpenIDConnectAutoRegister') // q{0}; > > + my $borrower = Koha::Patrons->find( { email => $email } ); > > This won't work properly for pre-existing patrons that might have their > email saved into "emailpro". It would be wise to search both email and > emailpro for borrowers. > Actually, it looks like C4::Auth::checkauth() will only look for patrons using "email" anyway, so that shortcoming already exists in Koha. C4::Auth::checkauth() should probably be patched too.. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 02:23:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 00:23:52 +0000 Subject: [Koha-bugs] [Bug 30962] REST API: Add endpoint /patrons/:patron_id/check_password In-Reply-To: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30962-70-XLhOBNKblU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30962 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |dcook at prosentient.com.au |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 02:45:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 00:45:08 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-EUIjcgBRAX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #3 from David Cook <dcook at prosentient.com.au> --- (In reply to Nick Clemens from comment #2) > Created attachment 136255 [details] [review] > Bug 30879: Add option to sort components by biblionumber > > WIP > > This works for ES, but zebra sorts the biblionumber as a string, s=109 was > my attempt based on > https://software.indexdata.com/yaz/doc/tools.html#ccl.syntax > which I don't fully understand Sorry but I think you gotten it a bit backwards 😅. First, it looks like you've updated the UNIMARC files for biblio-koha-indexdefs.xml and biblio-zebra-indexdefs.xsl instead of the MARC21 files. Second, you don't need that change to ccl.properties. -- And now that I'm looking more closely... it looks like we do already index 999$c into the following indexes/registers for MARC 21: Local-Number:n Local-Number:w Local-Number:s So I think you might be going down the wrong path... -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 03:45:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 01:45:22 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-3MLmY6PVsz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #4 from David Cook <dcook at prosentient.com.au> --- Ok I understand what you're saying now... It's not that the sort fails completely. Rather, it's doing a lexicographic sort... so it'll go 1, 10, 2 for ascending 1=12 sort. Yeah that's annoying... Btw, one way to do tests for this is to use "yaz-client". Search on something like "e" in koha-testing-docker, and then run "sort 1=4 >i" -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 05:31:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 03:31:09 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-MJS4bdwEsN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #5 from David Cook <dcook at prosentient.com.au> --- I think this is just a flaw in Zebra. I tried sorting by "itemnumber" which is just defined in the "n" and "s" registers, and it just lexically sorts as well. I've tried reading through the YAZ code which seems to be responsible for sorting, but the sort code is from 1998 and very difficult to understand. It looks like sorting updates the query... but I don't see anything that handles the actual "sorting". -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 05:51:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 03:51:54 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-kbDnVAbLNw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #6 from David Cook <dcook at prosentient.com.au> --- (In reply to David Cook from comment #5) > I've tried reading through the YAZ code which seems to be responsible for > sorting, but the sort code is from 1998 and very difficult to understand. It > looks like sorting updates the query... but I don't see anything that > handles the actual "sorting". Ah I was looking at the wrong Zebra folder which is why my grepping was failing :| According to https://software.indexdata.com/zebra/doc/features.html#features-sort-rank: "Sorting on the basis of alpha-numeric and numeric data is supported." "Sorting on the basis of combined sorts ­ e.g. combinations of ascending/descending sorts of lexicographical/numeric/date field data is supported" "All ordering operations are based on a lexicographical ordering, except when the structure attribute numeric (109) is used. In this case, ordering is numerical. See Section 2.4.3, “Structure Attributes (type 4)”." And that's why you've used that s=109 there... Their documentation sure is ambiguous... -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 06:23:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 04:23:26 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-2iG8DmYDEf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #7 from David Cook <dcook at prosentient.com.au> --- So I think that suggestion with the 4=109 probably only works when providing the 7 attribute: Ascending order: find @or @attr 1=1016 e @attr 7=1 @attr 1=Local-Number @attr 4=109 0 Descending order: find @or @attr 1=1016 e @attr 7=2 @attr 1=Local-Number @attr 4=109 0 (Highest bib is 389 in this case) -- But in this case we're using the ZOOM "sort" method to run the sort query separately from the main query, so I don't think it'll work, as the sort spec can't support it currently. I tried adding 4=109 to "Local-number" in ccl.properties and just sending "Local-number" via the sort and hoping it might do something but nope... -- So ultimately I'm thinking a bug/shortcoming in Zebra. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 06:26:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 04:26:29 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-zqONYAyxyO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #8 from David Cook <dcook at prosentient.com.au> --- https://github.com/indexdata/idzebra/issues/37 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 07:19:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 05:19:43 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-zoFTW7suta@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #9 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Thanks for taking a look at this, David! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 08:13:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 06:13:17 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-KcdbE4H2zm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #8 from Fridolin Somers <fridolin.somers at biblibre.com> --- + $("#messages .import_error").text($("Something went wrong, check your CSV file.")); Sure about this code ? Looks not translatable. Is it a type with _("bla bla") ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 08:27:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 06:27:17 +0000 Subject: [Koha-bugs] [Bug 30973] Serials search wrong body id In-Reply-To: <bug-30973-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30973-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30973-70-2OKUtzwaVP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30973 --- Comment #6 from Fridolin Somers <fridolin.somers at biblibre.com> --- Whaooo thank you all, I tough this would end in the never-fixed limbo ^ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 08:32:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 06:32:38 +0000 Subject: [Koha-bugs] [Bug 30920] Add caching to C4::Biblio::GetAuthorisedValueDesc In-Reply-To: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30920-70-RoPoLFavUp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30920 --- Comment #18 from Fridolin Somers <fridolin.somers at biblibre.com> --- Great thanks for this details Martin. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 08:40:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 06:40:21 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-lOoOry6Ber@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00 |22.11.00,22.05.01 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 08:46:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 06:46:26 +0000 Subject: [Koha-bugs] [Bug 29560] Add option to create MARC links when adding items to bundles In-Reply-To: <bug-29560-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29560-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29560-70-q9sHE6jWX0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29560 --- Comment #5 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Perhaps this could/should also be tied to a preference.. 'BundleContentsFrom' or something that allows the librarian to pick from what data source content lists should be built.. MARC Field or First bundle item perhaps? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 08:53:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 06:53:31 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-bMFd29a1dH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135774|0 |1 is obsolete| | --- Comment #9 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136336 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136336&action=edit Bug 30903: Fix UI glitch on the quotes upload view -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 08:53:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 06:53:56 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-w3lEuBHGNi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 --- Comment #10 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- (In reply to Fridolin Somers from comment #8) > + $("#messages .import_error").text($("Something went > wrong, check your CSV file.")); > > Sure about this code ? Looks not translatable. > Is it a type with _("bla bla") ? Yes! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:07:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:07:42 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-Aq8tj2OUxT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:07:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:07:45 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-lWIbFaRVZa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 --- Comment #8 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136337 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136337&action=edit Bug 30925: Fix category parameter for addbybiblionumber In bug 28959 category was replaced in favor of public. But unfortunately a few places were missed. This fixes the addbybiblionumber templates. Test plan: Add a biblio to a list from the search results using the Add to or Add to list button on OPAC/intranet. Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:08:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:08:00 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-4hYPMzd5g8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |m.de.rooy at rijksmuseum.nl |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:08:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:08:20 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-FrDscjsOKg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:08:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:08:22 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-PgTJHe5t8r@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #27 from Johanna Räisä <johanna.raisa at koha-suomi.fi> --- (In reply to Nick Clemens from comment #24) > (In reply to Johanna Räisä from comment #21) > > I tested this and there are some problems. Component parts don't have items > > so sorting with item related fields is quite useless. The items are in the > > host record and component parts are additional information about the host > > record. > > > > Date of publication is problematic also since in most cases component parts > > have the same value. Author and title are quite messy also. The author field > > usually has the same value or is added only to the host record. The > > component parts are wanted to be always in the same order and same order the > > album or note has it. > > > > As Martin mentioned the sorting order could be in 773$g but it is rarely > > used. So if there would be an option to sort by biblionumber it would be the > > most "correct" way to get what catalogers want. > > Hi Johanna, > > We often see analytics for 'bound' volumes of serials, which can have > differing copy dates. We also have libraries with individual articles in > serials cataloged, so the title and author can vary and these values are how > they have requested sorting. > > Biblionumber is a great addition, I simply cannot make it work in zebra > other than the default ascending search. > > I do think we want to handle the sorting in the search engine, rather than > our code, so I have moved the addition of biblionumber sorting to bug 30879. > I think we can move this one forward, and then continue the work there? > > -Nick The new bug is fine for me. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:08:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:08:38 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-Wy5qeEVhHh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #9 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Trivial: SO -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:09:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:09:04 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-Gv25Eg1TDn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 --- Comment #10 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Katrin Fischer from comment #7) > No patch? :( Tomas would have a look.. But now I did. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:09:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:09:26 +0000 Subject: [Koha-bugs] [Bug 28959] virtualshelves.category is really a boolean In-Reply-To: <bug-28959-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28959-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28959-70-VFgOkcSSRv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28959 --- Comment #44 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Marcel de Rooy from comment #43) > Did this report create bug 30925, Tomnas ? Tomnas should be Tomas. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:43:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:43:19 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-DzUkazD9rm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136216|0 |1 is obsolete| | Attachment #136217|0 |1 is obsolete| | --- Comment #32 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136338 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136338&action=edit Bug 27421: Use Background job for staging MARC records for import -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:43:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:43:25 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-xpc3l6xE0y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #33 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136339 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136339&action=edit Bug 27421: Commit and revert -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:45:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:45:43 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-gbzH0gfBo7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |In Discussion --- Comment #34 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- (In reply to Marcel de Rooy from comment #30) > (In reply to Jonathan Druart from comment #15) > > With those 3 patches I think most of the work is done. > > > > To continue I need people to commit to an involvement on these patches. > > To start I would like someone familiar with the import process to test the > > workflow and see if they are happy. > > > > Then we will need to add test coverage and certainly provide some bug fixes. > > > > Who's onboard? > > Well, I was. No problem. Seeing no test plan from the author and no unit > tests. But a signed off status :) > Did you find some experienced user to get user feedback btw ? The status should stay 'in discussion', the patches are not ready for master. I will need help for that. (In reply to Nick Clemens from comment #31) Thanks, Nick! > I tried testing, if I stage with matching it seems to die every time - it is > also a bad experience when staging fails - the job remains at 'Started' and > the report is present but empty Fixed. > When I import: > - The job says 'Started' but also shows 'Completed import of records' Should be fixed now. > - When it finishes, there is no link back to the batch Yes, that's one problem I identified. However we don't have the batch id yet. One solution would be to have an ajax script that would get the job's detail and display the link when the job has started. But I would suggest to do it on a separate bug report, if we don't have a better solution. Note that bug 30982 is adding the REST API route for GET /background_jobs and GET /background_jobs/$id > - If it fails it says 'Finished' "Progress 0/0" Progress bugs should be fixed now. > - From a completed import I can't get back to the background job (maybe not > needed?) Hum, I don't know. If we need it it will be "tricky" (we will need a separate DB column to store that I think). > Lack of error feedback was problematic before, and is worse here because the > user is moved to a different section of Koha and the progress is less > visible - before you had a stuck bar, now just a not updating screen Yes, that's why I think we need feedback from regular users. The ajax suggestion above could work but I will be happy if we can come up with a better solution. > I like this alot but do think we need to fix these other problems while we > do this work - it can be a second bug while we address functionality here, > but I would like to see them pushed together in that case -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 09:51:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 07:51:54 +0000 Subject: [Koha-bugs] [Bug 25560] Exclude itemtypes from UpdateNotForLoanStatusOnCheckin In-Reply-To: <bug-25560-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25560-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25560-70-l5rPBRl80z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25560 --- Comment #60 from Alex Buckley <alexbuckley at catalyst.net.nz> --- Hi Katrin, Yes, I can certainly adapt this patchet. Nick and Jonathan, could you please detail how this could look? Thanks, Alex -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 10:51:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 08:51:07 +0000 Subject: [Koha-bugs] [Bug 29860] Useless warnings in regressions.t In-Reply-To: <bug-29860-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29860-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29860-70-y8qRMIuffn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29860 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable CC| |arthur.suzuki at biblibre.com --- Comment #8 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- pushed to 21.11 for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 10:53:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 08:53:00 +0000 Subject: [Koha-bugs] [Bug 30933] Add a fallback for keeping lists when deleting anonymized patrons In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-txsh6D96LR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|koha-bugs at lists.koha-commun |m.de.rooy at rijksmuseum.nl |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 10:53:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 08:53:52 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-xoVEQbYcl5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Johanna Räisä <johanna.raisa at koha-suomi.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |johanna.raisa at koha-suomi.fi --- Comment #33 from Johanna Räisä <johanna.raisa at koha-suomi.fi> --- I found out that this is quite critical since it blocks the biblio import. The batch is marked as imported but the biblios aren't imported to biblio tables. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 11:07:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 09:07:43 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-sblxRr15A8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #183 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136340 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136340&action=edit Bug 28854: Unit tests - chargelostitem This patch adds unit tests for the changes to chargelositem to ensure bundle charging works as expected setting the correct issue_id. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 11:17:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 09:17:13 +0000 Subject: [Koha-bugs] [Bug 30742] Confusion when placing hold on record with no items available because of not for loan In-Reply-To: <bug-30742-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30742-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30742-70-4lAXqAyF3H@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30742 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable --- Comment #14 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 11:20:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 09:20:00 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-9GhAm2LSl1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #184 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #182) > 1) Unit tests > > Update: we are only missing chargelostitem! (blocker) Done and attached :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 11:20:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 09:20:22 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-H3CsxmBLpl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #185 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136341 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136341&action=edit Bug 28854: Add default AV and Syspref values This patch adds the new AV and System Preferences to the installer. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 11:21:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 09:21:28 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-2HUu9i7tru@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #186 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #181) > c) installer/data/mysql/en/optional/auth_val.yml requires updating for the > new system preference values (blocker) > > d) Changes to sysprefs.sql are missing. We can use the values from d) to > pre-set the preferences for new installations correctly. (blocker) Done and attached :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 11:44:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 09:44:51 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-GTF8nVL20X@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #34 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Johanna Räisä from comment #33) > I found out that this is quite critical since it blocks the biblio import. > The batch is marked as imported but the biblios aren't imported to biblio > tables. I was assured it could be safely ignored :( How did you test Johanna? The new/unmatched records were missing? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 11:45:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 09:45:00 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-ftVLFEgRVa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |critical -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 11:47:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 09:47:01 +0000 Subject: [Koha-bugs] [Bug 30742] Confusion when placing hold on record with no items available because of not for loan In-Reply-To: <bug-30742-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30742-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30742-70-ErO4ZSCPlm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30742 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:16:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:16:12 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-bevGTWYGvE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #187 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136342 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136342&action=edit Bug 28854: (follow-up) Translations fixes This patch wraps and unwraps strings appropriately for trasnlation. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:17:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:17:36 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-evQU5YLwM9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #188 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #181) > 3) Translatability, spelling, terminology Done and attached :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:27:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:27:49 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-5g3n4J2kHT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136342|0 |1 is obsolete| | --- Comment #189 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136343 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136343&action=edit Bug 28854: (follow-up) Translations fixes This patch wraps and unwraps strings appropriately for trasnlation. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:28:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:28:12 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-9Jms82S3ZN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #35 from Johanna Räisä <johanna.raisa at koha-suomi.fi> --- (In reply to Katrin Fischer from comment #34) > (In reply to Johanna Räisä from comment #33) > > I found out that this is quite critical since it blocks the biblio import. > > The batch is marked as imported but the biblios aren't imported to biblio > > tables. > > I was assured it could be safely ignored :( > > How did you test Johanna? The new/unmatched records were missing? I ran commit_file.pl to a one new batch and the batch status change into "imported" and record statuses where "imported" but the new biblios didn't come to biblio_metadata, biblio and biblioitems. I guess the error prevents those to be saved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:32:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:32:36 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-eJpNLAojpz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136264|0 |1 is obsolete| | --- Comment #190 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136344 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136344&action=edit Bug 28854: Database update -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:32:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:32:44 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-kwi1IFDdBF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136265|0 |1 is obsolete| | --- Comment #191 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136345 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136345&action=edit Bug 28854: DBIC Schema Updates -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:32:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:32:51 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-uFItvQSPYm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136266|0 |1 is obsolete| | --- Comment #192 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136346 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136346&action=edit Bug 28854: Expose functionality to attach items to bundles This patch adds methods the the Koha::Item object for managing item bundling operations and then exposes those methods via the REST API. We include the new `BundleNotLoanValue` preference for setting not for loan values when an item is added to a bundle. Finally, we expose bundle management via the catalogue details page. Test plan: 0) Apply patches up to this point and run the database update 1) Configuration: `BundleNotLoanValue` should have been set by the database update and point to a newly added AV value. 2) Creating a new bundle * Add a new bib record * Mark the bib record as a 'collection' type by setting leader position 7 to 'c' * Add a new item to this bib record * You should see a new 'Manage bundle' button available in the 'Actions' column of the Holdings table. * Clicking 'Manage bundle' should expand the table to include a new row directly beneath this one. * Use the new 'Add to bundle' button that appears in this row to trigger a modal that allows entering the barcode of items you wish to add to the bundle * Upon closing the modal, the bundle content table should reload and contain your newly associated items. * You can subsequently remove an item from a bundle using the new 'Remove' button. 3) Not for loan * Items that have been added into a bundle should now appear as 'Not for loan' from their original biblio record and note which bundle they belong to. 4) Error cases * Try adding an item that already belongs to a bundle to another bundle: Note an error is displayed in the modal form. 5) The bundles feature can be disabled by unsetting the `BundleNotLoanValue` system preference. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:32:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:32:58 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-AmHPL34Jq9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136267|0 |1 is obsolete| | --- Comment #193 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136347 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136347&action=edit Bug 28854: Update circulation functionality for bundles This patch updates the circulation system to account for bundle checkins. We add a content verification step to ensure bundle content is all present at checkin and we use this comparison to mark missing items as lost. Test plan 0) Apply patches up to this point 1) Checkin an item that belongs to a bundle * An alert should be triggered noting that the item belongs to a bundle * The option to remove the item from the bundle should be clear * Click remove should result in the alert dissapearing and the item having been removed from the bundle. 2) Checkin an item bundle * A modal confirmation dialog should appear requesting each item barcode be scanned * As items are scanned they should be highlighted in yellow in the bundle content table * Upon submission; * The user will be alerted to any unexpected items that were scanned and told to put them to one side. * The user will be alerted that any missing items in the validation will have been marked as lost. * The bundle item will be marked as checked in. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:33:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:33:05 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-7OLzNrjC3r@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136268|0 |1 is obsolete| | --- Comment #194 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136348 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136348&action=edit Bug 28854: Highlight bundle rows to clarify UI -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:33:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:33:12 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-IOrF9ENLB8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136269|0 |1 is obsolete| | --- Comment #195 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136349 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136349&action=edit Bug 28854: Drop unique index on issue_id in return claims With the introduction of circulating items within a bundle set, we can now loose multiple items from the bundle from the same issue. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:33:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:33:18 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-k3YZJcDwcf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136270|0 |1 is obsolete| | --- Comment #196 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136350 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136350&action=edit Bug 28854: DBIC Update ReturnClaim Schema -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:33:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:33:25 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-WTLrmZNMuL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136271|0 |1 is obsolete| | --- Comment #197 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136351 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136351&action=edit Bug 28854: Record and display who lost the item This patch records the bundle issue from which an item is marked as lost so that we may use that to infer who lost the item (for later charges and display). Test plan 0) Apply all patches up to this point 1) Checkout a bundle to a user 2) Checkin the bundle and do not scan one of the barcodes at confirmation * Note that the item not scanned is marked as lost 3) Navigate to the biblio for the lost item and note that it is marked as lost. 4) Navigate to the biblio for the collection and expand the collection item that contains the lost item. Note the item is marked as lost and checkout details are listed. 5) Checkin the lost item * The item should be marked as found and the return_claims line should be marked as resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:33:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:33:32 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-zYjEuBkhox@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136272|0 |1 is obsolete| | --- Comment #198 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136352 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136352&action=edit Bug 28854: Simplified status handling for bundle inventory check -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:33:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:33:38 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-LjrEPWhlXe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136273|0 |1 is obsolete| | --- Comment #199 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136353 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136353&action=edit Bug 28854: Add option to print content list after verification We already allowed the user to view and print an updated content list after a varification showed that items were missing from the bundle. This patch adds the option to view and print the list even if the content has been varified to have not changed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:33:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:33:45 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-483lsIjtFR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136274|0 |1 is obsolete| | --- Comment #200 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136354 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136354&action=edit Bug 28854: Add ordering to checkin validation modal This enhancement adds simple dataTable ordering to the verification modal table at bundle checkin time. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:33:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:33:52 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-ExHKzGjPND@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136275|0 |1 is obsolete| | --- Comment #201 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136355 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136355&action=edit Bug 28854: Improve lost details display for bundle items This patch adds the return claim details to the bundle item status display on the catalogue details page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:33:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:33:59 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-KUfn4VlJCD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136276|0 |1 is obsolete| | --- Comment #202 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136356 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136356&action=edit Bug 28854: Enable claims return view when BundleLostValue is set This patch adds the alternation of BundleLostValue to enable the return claims functionality when Bundles are enbled. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:34:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:34:07 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-ttxcGzfg8D@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136277|0 |1 is obsolete| | --- Comment #203 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136357 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136357&action=edit Bug 28854: Highlight when a scanned item is unexpected -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:34:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:34:14 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-oRaakdLT2k@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136278|0 |1 is obsolete| | --- Comment #204 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136358 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136358&action=edit Bug 28854: Add count of scanned items to verification modal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:34:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:34:20 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-NkHJPeMCZ5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136279|0 |1 is obsolete| | --- Comment #205 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136359 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136359&action=edit Bug 28854: Add 'Remove from bundle' dialogue to details display This patch adds the counterpart of the 'Add to bundle' modal prompt for adding items to bundles from the catalogue details display. It allows for scanning barcodes to remove them from a bundle. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:34:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:34:27 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-wps7qyw9D3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136280|0 |1 is obsolete| | --- Comment #206 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136360 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136360&action=edit Bug 28854: Add modal after checkin to print missing items list This patch adds a further modal to the post checkin alert to allow the user to print a view and print a list of items that went missing at this checkin to allow for replacements to be picked. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:34:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:34:34 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-autoxBSjak@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136281|0 |1 is obsolete| | --- Comment #207 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136361 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136361&action=edit Bug 28854: (follow-up) Only count rows in the body This patch fixes the count to only include table rows in the body, i.e. skip the header row. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:34:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:34:41 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Sp4MIJWERV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136282|0 |1 is obsolete| | --- Comment #208 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136362 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136362&action=edit Bug 28854: Make barcode comparison case insensative -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:34:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:34:47 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-E66vULS1mM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136283|0 |1 is obsolete| | --- Comment #209 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136363 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136363&action=edit Bug 28854: (QA follow-up) Fix QA tool complaints * Typo in code comment * Permissions on atomicupdate * Missing TT filter in template * Spelling in template Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:34:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:34:54 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-ORkPxl0V3d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136284|0 |1 is obsolete| | --- Comment #210 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136364 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136364&action=edit Bug 28854: (follow-up) Use Koha::Item->itemtype introduced with bug 20469 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:35:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:35:01 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Pjb4aHx3tt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136285|0 |1 is obsolete| | --- Comment #211 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136365 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136365&action=edit Bug 28854: Unit test for Koha::Item additions This patch adds unit tests for the new methods added to Koha::Item including: * return_claim * return_claims * is_bundle * in_bundle * bundle_host * bundle_items * add_to_bundle * remove_from_bundle Test plan 1) Run t/db_dependent/Koha/Item.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:35:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:35:09 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-tj4Cc4p2eB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136287|0 |1 is obsolete| | --- Comment #212 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136366 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136366&action=edit Bug 28854: Unit test for AddReturn addition This patch adds tests for the AddReturn change that adds an 'InBundle' message to the return. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:35:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:35:16 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-T01pGhAwe3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136340|0 |1 is obsolete| | --- Comment #213 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136367 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136367&action=edit Bug 28854: Unit tests - chargelostitem This patch adds unit tests for the changes to chargelositem to ensure bundle charging works as expected setting the correct issue_id. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:35:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:35:23 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-YPyot0aytE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136341|0 |1 is obsolete| | --- Comment #214 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136368 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136368&action=edit Bug 28854: Add default AV and Syspref values This patch adds the new AV and System Preferences to the installer. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:35:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:35:30 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-vba9Q3pbOu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136343|0 |1 is obsolete| | --- Comment #215 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136369 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136369&action=edit Bug 28854: (follow-up) Translations fixes This patch wraps and unwraps strings appropriately for trasnlation. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:35:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:35:38 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-T50fiB6RAg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #216 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136370 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136370&action=edit Bug 28854: (follow-up) Rename column configuration to barcode This patch updates the column configuration from 'external_id' to 'barcode' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:38:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:38:41 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-kbSsVvECvp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #217 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Something moved.. yet another rebase was required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:39:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:39:25 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-IzK52yeP5S@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #218 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #181) > 4) GUI - Configuration > > a) In table configuration, there is one option named external_id - while > this makes sense to the API, I think it's hard on users. Why not update to > barcode instead? (normal) Done and attached :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:44:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:44:24 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated fallback owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-S2rAvHbzD5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add a fallback for keeping |Add a designated fallback |lists when deleting |owner for shared and public |anonymized patrons |lists at patron deletion -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:45:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:45:08 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-DWSZzgI2Pf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #219 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136371 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136371&action=edit Bug 28854: (follow-up) Move preferences to "Item bundles" Move the preferences into a section under 'Circulation' called 'Item bundles' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:46:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:46:10 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-mX0KoC1CW4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #220 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #181) > 4) GUI - Configuration > > . . . > > b) The system preferences are currently spread on 2 different tabs > (circulation and cataloguing). I think we should add a new sub heading 'Item > bundles' to group them on the circulation tab instead. It will make setup > smoother and I can imagine the section might grow in the future. (normal) Done and attached, :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:47:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:47:27 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-v16Yv6d9x7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #221 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #181) > 5) Permissions > > a) Who should be able to create item bundles? At the moment anyone with > catalogue permission should be able to. (question) I think Cataloguers should be able to, but maybe those with circulation permission too? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 12:48:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 10:48:41 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Z4zxeM9NKg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff --- Comment #222 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #181) > 6) GUI - Functionality > > a) As barcodes are unique, how could this happen? Should the message maybe > be adjusted? (question) > > $('#removeResult').replaceWith('<div id="removeResult" class="alert > alert-danger">'+_("Failed: Barcode matched more than one item > ")+barcode+'</div>'); Fair question.. I think I was just being cautious. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 13:06:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 11:06:08 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-nme7Mo7Lf7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #36 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Johanna Räisä from comment #35) > (In reply to Katrin Fischer from comment #34) > > (In reply to Johanna Räisä from comment #33) > > > I found out that this is quite critical since it blocks the biblio import. > > > The batch is marked as imported but the biblios aren't imported to biblio > > > tables. > > > > I was assured it could be safely ignored :( > > > > How did you test Johanna? The new/unmatched records were missing? > > I ran commit_file.pl to a one new batch and the batch status change into > "imported" and record statuses where "imported" but the new biblios didn't > come to biblio_metadata, biblio and biblioitems. I guess the error prevents > those to be saved. That's pretty horrible :( Thx, Johanna. Hope we can get a rebase soon and have updated severity. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 13:30:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 11:30:45 +0000 Subject: [Koha-bugs] [Bug 29504] Confirm item parts requires force_checkout permission (checkouts tab) In-Reply-To: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29504-70-mL87nekPOg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 --- Comment #24 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Thanks Katrin, much appreciated. I'm not sure how to handle the batch option honestly.. hopefully something will dawn on me later. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 14:38:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 12:38:51 +0000 Subject: [Koha-bugs] [Bug 30517] Translation breaks editing parent type circulation rule In-Reply-To: <bug-30517-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30517-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30517-70-4kLIj6ZWjQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30517 Shi Yao Wang <shi-yao.wang at inLibro.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. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 14:48:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 12:48:21 +0000 Subject: [Koha-bugs] [Bug 30437] Add an SVG loader to Koha pendingreserves.pl In-Reply-To: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30437-70-I8bGj86rlE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30437 --- Comment #4 from Owen Leonard <oleonard at myacpl.org> --- We do something like this on only two other pages if I recall correctly: The basic and advanced MARC editor pages. Both of them show the loading image after the user has navigated to the page rather than on the page where the user clicked the link. It seems odd to me to use this new technique on only a single page. Is one approach better than the other? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 14:51:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 12:51:47 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-cUazyduts8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 14:55:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 12:55:01 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-MvYUqtB8Kw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133409|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 14:55:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 12:55:41 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-4TkZbAatkR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136312|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 14:55:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 12:55:57 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-Rvs8EnSOCv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133410|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 14:56:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 12:56:46 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-2vVys1Vyn8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 --- Comment #74 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Nevermind. Put back the last two patches. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 15:32:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 13:32:10 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-lwAgt2ZmRW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 --- Comment #11 from Tomás Cohen Arazi <tomascohen at gmail.com> --- (In reply to Marcel de Rooy from comment #10) > (In reply to Katrin Fischer from comment #7) > > No patch? :( > > Tomas would have a look.. But now I did. Thanks, I was just about to as Katrin's email reminded me of this. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 15:32:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 13:32:16 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-UpNGXGuFor@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |tomascohen at gmail.com |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 15:32:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 13:32:17 +0000 Subject: [Koha-bugs] [Bug 30996] New: ModBiblio breaks MARC::File::XML Message-ID: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30996 Bug ID: 30996 Summary: ModBiblio breaks MARC::File::XML Change sponsored?: --- Product: Koha Version: 20.11 Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: magnus at libriotech.no QA Contact: testopia at bugs.koha-community.org This is a weird issue. It could very well be something particular to my setup, but I am at a loss as to what it might be, so here goes... This is happening on a regular Koha 20.11.13.000, installed with the Debian packages, on Ubuntu 20.04.3. I have a script that downloads records from the Swedish national library Libris, does some checking and some massaging, and then imports the records into Koha with either AddBiblio or ModBiblio. The script can be found here: https://github.com/Libriotech/ftp2koha About a month ago messages like these started to show up in the logs for some of the imported records: Wide character in warn at /usr/share/perl5/MARC/Charset.pm line 384. no mapping found at position 1 in ビードマルク, マッティン, at /usr/share/perl5/MARC/Charset.pm line 384. Records that produce this error show broken chars, with chars like äöå shown as a diamond with a question mark in it. The records look ok before they are imported, and tools like yax-marcdump does not show errors for them. Position 9 in the leader is "a", to indicate the records are UTF8. Three records in one file are attached. I have tried to reduce the problem down to a minimal case, and come up with this script: -------------------------------------------------------------------- #!/usr/bin/perl use Modern::Perl; use C4::Biblio qw( ModBiblio ); use MARC::File::XML ( BinaryEncoding => 'utf8', RecordFormat => 'MARC21' ); my $records = MARC::File::XML->in( 'export_2022_06_16_1120_orig.marcxml' ); # Start transaction my $schema = Koha::Database->new()->schema(); $schema->storage->txn_begin(); my %map = ( 'p4rdqd4nm9f4dhv3' => 349078, 'jzzcjbt4gt0f0z8w' => 348789, '1fmgws1lzrk71k2t' => 349079, ); RECORD: while ( my $record = $records->next() ) { say $record->leader; say "=========^=============="; $record->encoding( 'UTF-8' ); my $id = $record->field( '001' )->data; my $biblionumber = $map{ $id }; if ( $ARGV[0] > 1 ) { say ModBiblio( $record, $biblionumber, '' ); } } # End transaction $schema->storage->txn_rollback(); -------------------------------------------------------------------- The results of running that script are different depending on if ModBiblio gets called or not. With "0" as the argument it does not get called and everything looks ok. Leader pos 9 is "a": $ sudo koha-shell -c "perl -MCarp::Always test_minimal.pl 0" norrbott cim a 7i 4500 =========^============== ngm a 7i 4500 =========^============== cim a 7i 4500 =========^============== With "2" as argument, ModBiblio does get called, and there are errors related to encoding (from the call to $records->next()), from the second and third record. Notice also that leader pos 9 for record number two and three is now empty! So when ModBiblio is triggered, the UTF8 indicator is suddenly gone, and as far as I can see, this is what is causing the encoding errors: $ sudo koha-shell -c "perl -MCarp::Always test_minimal.pl 2" instancename cim a 7i 4500 =========^============== 1 Wide character in warn at /usr/share/perl5/Carp/Always.pm line 18. no mapping found at position 1 in ビードマルク, マッティン, at /usr/share/perl5/MARC/Charset.pm line 384. MARC::Charset::utf8_to_marc8("\x{30d2}\x{3099}\x{30fc}\x{30c8}\x{3099}\x{30de}\x{30eb}\x{30af}, \x{30de}\x{30c3}\x{30c6}\x{30a3}\x{30f3},") called at /usr/share/perl5/MARC/File/XML.pm line 480 MARC::File::XML::decode(MARC::File::XML=HASH(0x56070fb9c278), "<record><leader> ngm a 7i 4500</leader><controlfiel"...) called at /usr/share/perl5/MARC/File.pm line 110 MARC::File::next(MARC::File::XML=HASH(0x56070fb9c278)) called at test_minimal.pl line 19 ngm 7i 4500 =========^============== Use of uninitialized value in join or string at /usr/share/perl5/MARC/Field.pm line 696. MARC::Field::as_usmarc(MARC::Field=HASH(0x560718749560)) called at /usr/share/perl5/MARC/File/USMARC.pm line 274 MARC::File::USMARC::_build_tag_directory(MARC::Record=HASH(0x5607186ea458)) called at /usr/share/perl5/MARC/File/USMARC.pm line 313 MARC::File::USMARC::encode(MARC::Record=HASH(0x5607186ea458)) called at /usr/share/perl5/MARC/Record.pm line 474 MARC::Record::as_usmarc(MARC::Record=HASH(0x5607186ea458)) called at /usr/share/koha/lib/C4/Biblio.pm line 3054 C4::Biblio::ModBiblioMarc(MARC::Record=HASH(0x560718457c30), 348789, "") called at /usr/share/koha/lib/C4/Biblio.pm line 381 C4::Biblio::ModBiblio(MARC::Record=HASH(0x560718457c30), 348789, "") called at test_minimal.pl line 30 1 cim 7i 4500 =========^============== 1 Things I have checked: - /usr/share/koha/lib/C4/Biblio.pm has not been updated since well before the problems started - I can not see any plugins that do suspicious things Anyone got a hunch what might be causing this, or where to start looking for a solution? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 15:32:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 13:32:36 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-MIVk1LmrRg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff Patch complexity|--- |String patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 15:32:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 13:32:40 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-1O4wl0A8xQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 --- Comment #1 from Owen Leonard <oleonard at myacpl.org> --- Created attachment 136372 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136372&action=edit Bug 30994: Typo: item was on loan. couldn't be returned. This patch updates some language in the inventory template to make it readable and consistent: Punctuation fixed, capitalization made more consistent, language corrections ("check in" instead of "return"). To test you can try to apply the patch and trigger the various errors in the inventory interface, but it's probably enough to visually confirm the changes in the patch. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 15:35:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 13:35:53 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-lclHN8DHwn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 15:35:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 13:35:58 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-N74vneW4RV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136337|0 |1 is obsolete| | --- Comment #12 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136373 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136373&action=edit Bug 30925: Fix category parameter for addbybiblionumber In bug 28959 category was replaced in favor of public. But unfortunately a few places were missed. This fixes the addbybiblionumber templates. Test plan: Add a biblio to a list from the search results using the Add to or Add to list button on OPAC/intranet. Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 15:38:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 13:38:05 +0000 Subject: [Koha-bugs] [Bug 27494] Expand OpacItemLocation for Unimarc In-Reply-To: <bug-27494-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27494-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27494-70-lTJpcSyfIo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27494 pierre.genty at biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pierre.genty at biblibre.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 15:55:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 13:55:00 +0000 Subject: [Koha-bugs] [Bug 30997] New: "CGI::param called in list context" warning in detail.pl flooding error log Message-ID: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 Bug ID: 30997 Summary: "CGI::param called in list context" warning in detail.pl flooding error log Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: enhancement Priority: P5 - low Component: Cataloging Assignee: stalkernoid at gmail.com Reporter: stalkernoid at gmail.com QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:07:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:07:44 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-WGAMKZYwST@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com --- Comment #8 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- I'm not sure about this patch actually.. the controller change feels somehow wrong, silently skipping. I'd expect to either see an error thrown back or for us to default to the items homebranch or holdingbranch (though holdingbranch may be 'unknown' as the item may be on loan) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:11:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:11:52 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-hu5PUSUbrn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 --- Comment #9 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- OK, I see.. the controller already has president of just skipping bad case and hopes for the best clientside. As you were.. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:25:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:25:00 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-9dETl9yz03@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 Peter Vashchuk <stalkernoid at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:25:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:25:04 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-fdkmsuQ251@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 --- Comment #1 from Peter Vashchuk <stalkernoid at gmail.com> --- Created attachment 136374 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136374&action=edit Bug 30997: Fix "CGI::param called in list context" warning in detail.pl CGI param found1 should be explicitly scalar, or else error log gets flooded with this warning: CGI::param called in list context from /usr/share/koha/intranet/cgi-bin/catalogue/detail.pl line 622 This patch fixes it by working with it in a scalar context. The functionality still remains the same but warning doesn't flood error log. To reproduce: 1. Open any biblio (details.pl) page. 2. Check the error log and find the upper mentioned warning, check the timestamp to ensure that it was added when you loaded the page. 3. Apply the patch. 4. Load the page again, ensure that the same warning doesn't get added to the log file again. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:35:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:35:44 +0000 Subject: [Koha-bugs] [Bug 28955] Add option to set default branch from Apache In-Reply-To: <bug-28955-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28955-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28955-70-kA3UGCTBYx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28955 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Status|Pushed to master |Pushed to stable Version(s)|22.05.00 |22.05.00; 21.11.07 released in| | --- Comment #30 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- Pushed to 21.11 for 21.11.07, thx! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:50:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:50:47 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers don't appear in the staff interface for other libraries with SeparateHoldings In-Reply-To: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30234-70-4WHQZVUGOt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:50:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:50:50 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers don't appear in the staff interface for other libraries with SeparateHoldings In-Reply-To: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30234-70-B5hHAYkOZR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 --- Comment #25 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:50:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:50:53 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-Uo6t5m2HDh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:50:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:50:56 +0000 Subject: [Koha-bugs] [Bug 30925] Creating public list by adding items to new list creates a private list In-Reply-To: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30925-70-j2dpr3vyco@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30925 --- Comment #13 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:50:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:50:58 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-uySwPrPmWs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:51:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:51:01 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-aPt35YGp9d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 --- Comment #10 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:51:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:51:04 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox replaces ALL local covers for a biblio, not only the specific item's covers In-Reply-To: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30972-70-I05o3y9EJB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:51:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:51:07 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox replaces ALL local covers for a biblio, not only the specific item's covers In-Reply-To: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30972-70-OrHYe9nJFz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 --- Comment #6 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:51:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:51:09 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-WAOHKOiSR7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 16:51:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 14:51:12 +0000 Subject: [Koha-bugs] [Bug 30989] Tags with some special characters are not encoded right In-Reply-To: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30989-70-UipcnhmiPS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30989 --- Comment #8 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 17:02:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 15:02:59 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-7CV3VuLA7z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #29 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136375 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136375&action=edit Bug 30889: Unit tests This patch adds a unit test for the 'enqueue' part of the bug. We check that the mocked context (and interface) are recorded with the job enqueue in the new 'context' field. We do not yet test the 'process' end, where we then read the context out and set the job Context from it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 17:03:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 15:03:33 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-E9u1qMxK7f@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #30 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- First unit tests added.. not entirely sure how to write the test for 'process' at this point. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 17:28:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 15:28:55 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-Xysj1b9sob@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #31 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136376 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136376&action=edit Bug 30889: Unit tests - process This patch adds corresponding unit tests for the 'process' side of this patchset. We check that the Context for the job to run in as set from the Job context recorded at enqueue time. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 17:29:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 15:29:15 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-BfVb80UNei@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #32 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- I wrapped my head around it :) Ready for QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 17:30:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 15:30:23 +0000 Subject: [Koha-bugs] [Bug 25790] [OMNIBUS] warnings removal In-Reply-To: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25790-70-3IhY6NGCh6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 Slava Shishkin <slavashishkin at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |slavashishkin at gmail.com Depends on| |30997 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 17:30:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 15:30:23 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-sjltDJDJ80@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 Slava Shishkin <slavashishkin at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |25790 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 [Bug 25790] [OMNIBUS] warnings removal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 18:14:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 16:14:31 +0000 Subject: [Koha-bugs] [Bug 28959] virtualshelves.category is really a boolean In-Reply-To: <bug-28959-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28959-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28959-70-YO05wI3Xm7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28959 --- Comment #45 from Tomás Cohen Arazi <tomascohen at gmail.com> --- (In reply to Marcel de Rooy from comment #44) > (In reply to Marcel de Rooy from comment #43) > > Did this report create bug 30925, Tomnas ? > > Tomnas should be Tomas. FQA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 18:39:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 16:39:37 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-8faMKdsFh4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #37 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- I'm not sure this goes far enough either.. I'm tempted to have a go from scratch on a new bug.. I feel like we should be using 'https://metacpan.org/dist/DBIx-Class/view/lib/DBIx/Class/Manual/Cookbook.pod#Nested-transactions-and-auto-savepoints' here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 19:00:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 17:00:03 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-mx6yU3YL2R@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #38 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- This is broken down to 20.11... would be great to have a fix that poses not a too big issue for backport. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 19:47:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 17:47:52 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-XrgAEvZGrJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 19:47:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 17:47:56 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-ryJLjfaBUU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136374|0 |1 is obsolete| | --- Comment #2 from David Nind <david at davidnind.com> --- Created attachment 136377 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136377&action=edit Bug 30997: Fix "CGI::param called in list context" warning in detail.pl CGI param found1 should be explicitly scalar, or else error log gets flooded with this warning: CGI::param called in list context from /usr/share/koha/intranet/cgi-bin/catalogue/detail.pl line 622 This patch fixes it by working with it in a scalar context. The functionality still remains the same but warning doesn't flood error log. To reproduce: 1. Open any biblio (details.pl) page. 2. Check the error log and find the upper mentioned warning, check the timestamp to ensure that it was added when you loaded the page. 3. Apply the patch. 4. Load the page again, ensure that the same warning doesn't get added to the log file again. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 20:19:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 18:19:05 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-gv6zCl3XBD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #3 from David Nind <david at davidnind.com> --- Testing notes (using koha-testing-docker): 1. For me, the error only appeared twice in the logs for the first two records accessed. After a flush_memcached and restart_all it appears again twice. 2. Search/records used: either perl or cat, then paged through several results. 3. Also tried closing browser (set so cache is cleared and history isn't remembered), but required a restart_all for the error to start appearing in the logs again. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 21:37:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 19:37:45 +0000 Subject: [Koha-bugs] [Bug 30931] Handling of items.dateaccessioned in the item editor In-Reply-To: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30931-70-D8q49MOjqp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30931 --- Comment #9 from Benjamin Daeuber <bdaeuber at cityoffargo.com> --- I might be entirely missing something here, but it appears to be impossible to delete the dateaccessioned field now. Is that the intended behavior? The interface allows me to clear it, but the item record is populated with today's date. I was having this behavior with bug 29963 as well. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 21:56:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 19:56:01 +0000 Subject: [Koha-bugs] [Bug 30931] Handling of items.dateaccessioned in the item editor In-Reply-To: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30931-70-QcwoN52GCT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30931 --- Comment #10 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Benjamin Daeuber from comment #9) > I might be entirely missing something here, but it appears to be impossible > to delete the dateaccessioned field now. Is that the intended behavior? The > interface allows me to clear it, but the item record is populated with > today's date. I was having this behavior with bug 29963 as well. As I pointed out in comment# this is a separate bug filed earlier and unrelated to these changes: Bug 29958 - Missing dateaccessioned is set to today when storing an item But please note: Koha _always_ stored today's date for new items on saving, when the field was left empty. The bug is in setting it to today's date when editing items. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 22:02:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 20:02:29 +0000 Subject: [Koha-bugs] [Bug 30931] Handling of items.dateaccessioned in the item editor In-Reply-To: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30931-70-iGknXtJgTS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30931 --- Comment #11 from Benjamin Daeuber <bdaeuber at cityoffargo.com> --- > As I pointed out in comment# this is a separate bug filed earlier and unrelated to these changes: Bug 29958 - Missing dateaccessioned is set to today when storing an item Right, I recall that now. That makes this hard to test since my concern is really in batch modification. The wording on the batch modification screen implies that if you modify 2 items, one with a date acquired and one without, they all need to be set to the same date (either today's date if you leave it blank or all the same date if you fill it in). I think that's a quirk of the wording, but it's hard to tell given that behavior. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 22:04:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 20:04:27 +0000 Subject: [Koha-bugs] [Bug 30931] Handling of items.dateaccessioned in the item editor In-Reply-To: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30931-70-U7HoAanOZ8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30931 --- Comment #12 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Was just about to add the missing link: bug 29963 comment#28. I am not sure if this bug covers the batch edit as well - Alex might be able to tell. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 22:31:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 20:31:08 +0000 Subject: [Koha-bugs] [Bug 30998] New: [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process Message-ID: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 Bug ID: 30998 Summary: [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Documentation Assignee: koha-bugs at lists.koha-community.org Reporter: david at davidnind.com QA Contact: testopia at bugs.koha-community.org The process for choosing areas and things to document is confusing. This makes it more difficult (particularly for new contributors) to find a list of what to work on. This bug looks at options for simplifying this, and to try and integrate the process more into the other community processes and Bugzilla. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 22:36:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 20:36:39 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-L33jOKs2eO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit | |y.org | Status|NEW |ASSIGNED Priority|P5 - low |P1 - high Assignee|koha-bugs at lists.koha-commun |david at davidnind.com |ity.org | CC| |aude.charillon at ptfs-europe. | |com, bwsdonna at gmail.com, | |caroline.cyr-la-rose at inlibr | |o.com, | |lucy.vaux-harvey at ptfs-europ | |e.com, | |martin.renvoize at ptfs-europe | |.com --- Comment #1 from David Nind <david at davidnind.com> --- Message from Martin Renvoize on 16 June 2022 (hope you don't mind me adding this here...): "I was chatting to our staff today and they're still keen to contribute to the manual, but are also still finding the process confusing especially with regards to choosing area's to document and when. I came up with a proposal a little whilst ago to try and integrate the process more into the other community processes and bugzilla. Would it be helpful/useful to add a 'Ready for documenting' status in Bugzilla that sits between 'Pushed to X' and 'Resolved Fixed' and encouraging the Release maintainers to use that when they make the decision to not backport instead of the current 'Resolved fixed' change. This would allow for building a queue automatically on dashboard.koha-community.org for documentors to work through much like the testers and the QA team do. So one would look at the list, work on docs submissions and then update the bugzilla status to 'resolved' upon completion (or upon making the decision that documentation updates are not needed)? Just a thought.. I'm happy to do the bugzilla admin changes and update the dashboard. What do you think?" -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 22:38:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 20:38:27 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-TwPWc0Juav@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #2 from David Nind <david at davidnind.com> --- That sounds good to me. TLDR; Add a new bug status(es) to Bugzilla (such as Documentation Needed and Documentation Updated) so we easily create a list of documentation tasks that need working on, and have this information included on the dashboard (similar to sign-offs). At the moment, we can use these keywords in Bugzilla: - Manual - Manual-updated The process I intended to use is to "manage" documentation tasks: - Have an overall bug for each release with a spreadsheet, for example see bug 29640 - Update the spreadsheet each week with changes pushed: review and decide whether documentation changes are required, update release notes for non-technical changes - Update the bugs where documentation changes are required with the 'Manual' keyword - Bugzilla report that lists all the bugs for a release that need documentation, for example: https://bugs.koha-community.org/bugzilla3/buglist.cgi?cmdtype=runnamed&list_id=414423&namedcmd=Manual%20update%20required%20-%2022.05 I had been thinking of getting another keyword added: 'Manual-no-update-required' (or something similar), as this would make it clearer that it had been reviewed without having to look somewhere else. However, having a status, such as 'Needs Documentation' or 'Ready for Documenting' would make everything a lot cleaner. Questions: 1. Would it be possible to have a 'Documentation Contact' field, like there is for the QA Contact. That would mean the team (or anyone) can assign themselves to the documentation task. 2. How would this work with the current developer work flow: release manager pushes to master, release maintainers push to their versions - who changes to "Needs Documentation" (documentation manager?) - after the documentation changes are made, do we need another status like "Documentation Updated" - who would change to "RESOLVED FIXED" (is this changed at the end of the release cycle, or continuously once pushed to a maintenance release?) So, the work flow could look like this: 1. Bug pushed to master and maintenance releases (bugzilla status = Pushed to X) (release manager and release maintainers) 2. Decide if documentation updates are required (bugzilla status = Needs Documentation) (anyone, Documentation manager - review pushed bugs regularly) 3. Appears on dashboard, like Needs Signoff and Needs QA 4. Documentation team (any anyone else) assigns themselves as the Documentation Contact 5. Documentation updated (edit content, create merge request, changes merged, comment added to the bug that doc changes made, follow-up change if required from any feedback) 6. Once documentation updated, status changed to 'Documentation Updated' (not sure on this step - but it would be nice to have something like Signed Off - [Month/Year] on the dashboard) ...repeat until there are no more documentation tasks!.. I had thought about using a third party tool, like Trello, or go back to Taiga.io, or use the issues tool in GitLab (my second preferred option over using Bugzilla) - but having one tool, and not needing to manually duplicate or maintain something else is the ideal. Ideally, the end result of any changes would be: 1. Documentation team members: list of documentation tasks to work on (list in bugzilla) 2. Community: dashboard showing documentation tasks where work is needed, and documentation updated (like sign-offs) 3. Documentation manager: easy way to maintain list of documentation tasks (change bug status in bugzilla after reviewed) Anyway, thoughts welcome! (And thanks Martin for starting the discussion!) Will add to the next documentation team meeting agenda to confirm anything we decide from this discussion. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 22:50:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 20:50:38 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-4MbwSKBtZ9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 22:50:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 20:50:43 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-hiJy28hDnE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131996|0 |1 is obsolete| | --- Comment #42 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136378 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136378&action=edit Bug 28327: Add unit tests -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 22:51:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 20:51:43 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-b5JZdtApPf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131997|0 |1 is obsolete| | --- Comment #43 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136379 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136379&action=edit Bug 28327: Unify CSV delimiter special behavior for tabulation System preference 'CSVdelimiter' has a special case for tabulation. Preference value contains string 'tabulation' but string '\t' must be used in CSV file. This is OK in many places, for exemple Bug 17590. This patch adds C4::Context->csv_delimiter to add a uniq metod dealing with this behavior. Also create Koha::Template::Plugin::Koha->CSVDelimiter for calls from Toolkit Templates. Test plan : 1) Set system preference 'CSVdelimiter' = 'tabs'. 2) Create CSV export in impacted pages 3) Check columns are separated by tabulation character and not string 'tabulation' 4) Check with another delimiter -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 22:59:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 20:59:52 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-i1tjaREseq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136378|0 |1 is obsolete| | --- Comment #44 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136380 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136380&action=edit Bug 28327: Add unit tests -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 23:00:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 21:00:07 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-79WlVMWR6u@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136379|0 |1 is obsolete| | --- Comment #45 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136381 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136381&action=edit Bug 28327: Unify CSV delimiter special behavior for tabulation System preference 'CSVdelimiter' has a special case for tabulation. Preference value contains string 'tabulation' but string '\t' must be used in CSV file. This is OK in many places, for exemple Bug 17590. This patch adds C4::Context->csv_delimiter to add a uniq metod dealing with this behavior. Also create Koha::Template::Plugin::Koha->CSVDelimiter for calls from Toolkit Templates. Test plan : 1) Set system preference 'CSVdelimiter' = 'tabs'. 2) Create CSV export in impacted pages 3) Check columns are separated by tabulation character and not string 'tabulation' 4) Check with another delimiter -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 23:08:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 21:08:51 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-QYrOfrddD0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136302|0 |1 is obsolete| | --- Comment #10 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136382 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136382&action=edit Bug 30988: Adding a more generic version of googleopenidconnect More generic OpenID Connect based off of googleopenidconnect Test plan: 1- Set up an OAuth2 provider that has a discovery doc (e.g. for google it's https://accounts.google.com/.well-known/openid-configuration) and note down the client id and client secret. Docs to help setup: google: https://developers.google.com/identity/protocols/oauth2/openid-connect https://koha-community.org/manual/20.11/en/html/administrationpreferences.html gitlab: https://docs.gitlab.com/ee/integration/oauth_provider.html 2- Apply the patch 3- Run atomicupdate to update database 4- Configure system preferences: a- Set OpenIDConnect to Yes b- Enter the url to the discovery doc of your OAuth2 provider c- Fill OpenIDOAuth2ClientID with noted client id d- Fill OpenIDOAuth2ClientSecret with noted client secret e- Configure the other related system preferences as you wish. They shoud work the same way as the similarly named GoogleOpenID* ones. 5- If OpenIDConnectAutoRegister is set to Don't allow, have a koha account with the same email as the one used by your OAuth2 provider. 6- In OPAC, sign in using OpenID. 7- You may have to log into your OpenID provider account and accept conditions. It should finally log you into the koha account. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 23:09:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 21:09:25 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-t0uNoi1qif@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |ASSIGNED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 23:12:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 21:12:59 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-GDePQE3ei3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 23:13:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 21:13:04 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-hpZ7Toq0hU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135773|0 |1 is obsolete| | --- Comment #11 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136383 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136383&action=edit Bug 30903: Fix POST /quote quote_id should not be required Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 23:23:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 21:23:57 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-gPE8K4Sz7m@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 23:24:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 21:24:01 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-O7kIlG4dLW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 --- Comment #12 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136384 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136384&action=edit Bug 30903: (follow-up) Fix error message class -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 23:26:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 21:26:22 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-wyaTLgA2B3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 --- Comment #13 from Fridolin Somers <fridolin.somers at biblibre.com> --- I signed the 2 first patches. Quotes import works well. But then I generated the error case (by dropping quotes table). It does not appear because its class is "import_errors" instead of "import_error", see my follow-up. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 23:29:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 21:29:27 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-2JzC2rUfqs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 --- Comment #14 from Fridolin Somers <fridolin.somers at biblibre.com> --- (In reply to Caroline Cyr La Rose from comment #6) > 3) The quotes seem to have been imported, if I trust the confirmation > message, but I stayed on the same page and the two options available to me > are "Save quotes", which I already clicked (multiple times because it was > slow) and "Cancel import", which, if clicked, asks me a confirmation if I > really want to cancel and sends me back to the import page with the > Browse/Choose file button. I think once the quotes are imported, we should > be sent back to the main QOTD editor page with the list of quotes already in > the system. > > Caroline Same for me, please report it in a new report. Clicking on "Save quotes" will import them again, clicking on "Cancel import" does not revert the import. I think think after clicking on "Save quotes" we should hide those buttons and propose a link to come back to quotes table. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 20 23:38:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 21:38:12 +0000 Subject: [Koha-bugs] [Bug 30942] Why can I place a recall on a bib when no items are on loan? In-Reply-To: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30942-70-mNTQKYzhZf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30942 --- Comment #6 from Aleisha Amohia <aleisha at catalyst.net.nz> --- The button to 'Place recall' always shows, because the libraries who were sponsoring the development of this feature for the past few years before it was upstreamed wanted it to be there. This way, users would know the library used recalls, and then be blocked if a particular record could not be recalled, and they could place a reserve instead. As I've said many times before, recalls is not the same as holds, and if you look at the code, there are many differences. Recalls could never use the same code as holds without creating if/else conditions literally everywhere and turning Koha into a very non-scalable, hard to modify, hard to test, system. You don't want to potentially break holds by modifying recalls, and vice versa - they are different services in a library. You're welcome to write a development that wraps this button in a syspref, but this isn't a bug, so please don't remove the ability to have the button there if there aren't recallable items. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 01:30:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 20 Jun 2022 23:30:56 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-Y9BRZGoesA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #11 from David Cook <dcook at prosentient.com.au> --- Comment on attachment 136382 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136382 Bug 30988: Adding a more generic version of googleopenidconnect Review of attachment 136382: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=30988&attachment=136382) ----------------------------------------------------------------- ::: opac/svc/auth/openidconnect @@ +185,5 @@ > + else { > + my $error_feedback = > +'The email address you are trying to use is not associated with a borrower at this library.'; > + my $auto_registration = C4::Context->preference('OIDCAutoRegister') // q{0}; > + my $borrower = Koha::Patrons->find( { email => $email }, { emailpro => $email } ); I should've removed my earlier comment about "emailpro" since the C4::Auth::checkauth() only checks "email" for the email based authentication. Sorry! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:19:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:19:43 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-qJzyEqthen@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #12 from David Cook <dcook at prosentient.com.au> --- My test plan: 0. Set up koha-testing-docker with a jboss/keycloak container as per https://hub.docker.com/r/jboss/keycloak/ 0b. Create "test" realm with discovery doc: http://<my_ip>:8082/auth/realms/test/.well-known/openid-configuration 0c. Create condiential OIDC client "koha" in "test" realm 0d. Create "test" user with email "test at test.test" and password "test" 0e. Fix "OPACBaseURL" so that it resolves to localhost instead of a non-existent domain name 1. Apply patch 2. koha-plack --restart kohadev 3*. "koha-upgrade-schema kohadev" didn't work so had to manually apply DB update via: koha-mysql kohadev < installer/data/mysql/atomicupdate/openidconnect.sql 4. Set "OIDC" syspref to "Yes" 5. Set "OIDCAutoRegister" to "Allow" 6. Set "OIDCConfigURL" to "http://<my_ip>:8080/auth/realms/test/.well-known/openid-configuration" 7. Set "OIDCDefaultBranch" to "CPL" 8. Set "OIDCDefaultCategory" to "Patron" 9. Set "OIDCOAuth2ClientID" to my Keycloak client id 10. Set "OIDCOAuth2ClientSecret" to my Keycloak client secret 11. Go to http://localhost:8080/cgi-bin/koha/opac-main.pl 12. Click "Log in to your account" 13. Fill out your username and password in Keycloak 14. Success! Returned to a logged in OPAC with new auto-registered borrower However, at the moment, this patch would fail for a few reasons: 1. The atomic update doesn't look like it's set up correctly. It should be automatically detected by koha-upgrade-schema 2. "Log in with OpenID" button on login failure is misnamed (It's "OpenID Connect" and not "OpenID". "OpenID" is an older standard). 3. "Log in with OpenID" button is not readable. It is white text on a white background. -- On a side note, it would probably be a good idea to add support for OpenID Connect logout as well, so that you're logged out of the SSO provider when you're logged out of Koha. While this might not be desirable at home, on public terminals it wouldn't be great if people logged out of Koha and then a stranger came along and was able to re-login as them... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:29:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:29:23 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-48vwtMaqhv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #13 from David Cook <dcook at prosentient.com.au> --- Overall, it works pretty well! If you fix the atomic update and the text/styling, I think I'd be happy to sign this off. QA might knock it back because of the lack of unit tests though. It would be a good idea to move a lot of the code out of "opac/svc/auth/openidconnect" and into a Koha/Auth/Client/OIDC module. -- Also, I'm getting these warnings in the logs for failed logins (I had some issues initially setting up my Keycloak which caused some failures): [2022/06/21 00:02:03] [WARN] Useless use of private variable in void context at /kohadevbox/koha/opac/svc/auth/openidconnect line 90. [2022/06/21 00:02:03] [WARN] Useless use of anonymous hash ({}) in void context at /kohadevbox/koha/opac/svc/auth/openidconnect line 90. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:32:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:32:01 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-yTeJfhvicm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #14 from David Cook <dcook at prosentient.com.au> --- I think you could probably rename this to something like "Add generic OpenIDConnect client implementation". I'll mark bug 21586 as a duplicate. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:32:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:32:20 +0000 Subject: [Koha-bugs] [Bug 21586] Add generic OpenIDConnect client implementation In-Reply-To: <bug-21586-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21586-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21586-70-yT4GOvUCnM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21586 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE --- Comment #14 from David Cook <dcook at prosentient.com.au> --- *** This bug has been marked as a duplicate of bug 30988 *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:32:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:32:20 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-EluO0LKKgG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #15 from David Cook <dcook at prosentient.com.au> --- *** Bug 21586 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:36:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:36:57 +0000 Subject: [Koha-bugs] [Bug 21586] Add generic OpenIDConnect client implementation In-Reply-To: <bug-21586-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21586-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21586-70-VlDbpgEW7W@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21586 --- Comment #15 from David Cook <dcook at prosentient.com.au> --- While this patch has more functionality than bug 30988, it was originally written for a buggy OIDC IdP 8 years ago and it's outdated in a number of ways. While I run a newer local version in prod (and I probably will keep running it locally), I actually want to re-write this functionality using Mojolicious. In fact, there's already a plugin to take care of the majority of it: https://metacpan.org/pod/Mojolicious::Plugin::OAuth2 But I'm not planning on doing that any time soon, so I'm happy to endorse bug 30988 as the replacement for bug 21586, since Shi Yao Wang is actively working on that one. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:38:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:38:15 +0000 Subject: [Koha-bugs] [Bug 28420] Allow login via AzureAD OpenID-Connect In-Reply-To: <bug-28420-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28420-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28420-70-FhzBHRe4C4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28420 --- Comment #23 from David Cook <dcook at prosentient.com.au> --- I think this should probably be marked as a duplicate of bug 30988 but I'll leave that decision up to you, Mark. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:38:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:38:46 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-KqWDnWL77P@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=28420 Version|unspecified |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:38:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:38:46 +0000 Subject: [Koha-bugs] [Bug 28420] Allow login via AzureAD OpenID-Connect In-Reply-To: <bug-28420-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28420-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28420-70-hU7IIutVNg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28420 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30988 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:39:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:39:18 +0000 Subject: [Koha-bugs] [Bug 30988] Adding a more generic version of googleopenidconnect In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-Nn3zcK4g5J@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=10988 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 02:39:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 00:39:18 +0000 Subject: [Koha-bugs] [Bug 10988] Allow login via Google OAuth2 (OpenID Connect) In-Reply-To: <bug-10988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10988-70-ZI4NjHBZqN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10988 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30988 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 03:20:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 01:20:28 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-RcMaL6diOm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 03:20:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 01:20:33 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-z7Et6WAR8L@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136372|0 |1 is obsolete| | --- Comment #2 from David Nind <david at davidnind.com> --- Created attachment 136385 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136385&action=edit Bug 30994: Typo: item was on loan. couldn't be returned. This patch updates some language in the inventory template to make it readable and consistent: Punctuation fixed, capitalization made more consistent, language corrections ("check in" instead of "return"). To test you can try to apply the patch and trigger the various errors in the inventory interface, but it's probably enough to visually confirm the changes in the patch. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 03:22:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 01:22:23 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-xAbClSPJma@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #3 from David Nind <david at davidnind.com> --- I took the easy way out, and just checked the text in the patch. I did test the errors I could figure out how to generate: barcode not found, and withdrawn. These look okay in context. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 03:24:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 01:24:53 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-tKar64hHgw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This updates some error release notes| |messages for the inventory | |tool to them more readable | |and consistent: punctuation | |fixed, capitalization made | |more consistent, and | |language corrections | |("check in" instead of | |"return"). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 07:57:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 05:57:29 +0000 Subject: [Koha-bugs] [Bug 30942] Why can I place a recall on a bib when no items are on loan? In-Reply-To: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30942-70-FRqFBa6pxH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30942 --- Comment #7 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Can we have a full description of what recalls is and how to use it for the manual please. It's really unclear to me what the differences are and what use cases it fulfills. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 08:24:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 06:24:06 +0000 Subject: [Koha-bugs] [Bug 30942] Why can I place a recall on a bib when no items are on loan? In-Reply-To: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30942-70-leQZ5lsTkh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30942 --- Comment #8 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I think something for the manual would be great and I'd also be very interested to hear how this is used and the thinking process behind it. It's a different thing to the recalls I know and I'd like to understand better when testing and QA'ing any additions in the future, to make sure we have things in mind like the button behavior you pointed out. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 08:24:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 06:24:27 +0000 Subject: [Koha-bugs] [Bug 30942] Optionally hide recalls button on detail page when no recall can be placed In-Reply-To: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30942-70-aP273OiU7k@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30942 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Why can I place a recall on |Optionally hide recalls |a bib when no items are on |button on detail page when |loan? |no recall can be placed -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 09:13:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 07:13:42 +0000 Subject: [Koha-bugs] [Bug 27697] Opening bibliographic record page prepopulates search bar text In-Reply-To: <bug-27697-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27697-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27697-70-Xp4oBlMHpG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27697 --- Comment #11 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- (In reply to Jonathan Druart from comment #10) > This adds a new warning in the log > > [2022/06/16 10:31:18] [WARN] CGI::param called in list context from > /kohadevbox/koha/catalogue/detail.pl line 626, this can lead to > vulnerabilities. See the warning in "Fetching the value or values of a > single named parameter" at /usr/share/perl5/CGI.pm line 414. > > It should be > > $template->param(found1 => scalar $query->param('found1') ); See bug 30997. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 09:15:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 07:15:22 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-HSDN5hffGa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 09:15:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 07:15:26 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-t9l9v0eqhv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136377|0 |1 is obsolete| | --- Comment #4 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136386 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136386&action=edit Bug 30997: Fix "CGI::param called in list context" warning in detail.pl CGI param found1 should be explicitly scalar, or else error log gets flooded with this warning: CGI::param called in list context from /usr/share/koha/intranet/cgi-bin/catalogue/detail.pl line 622 This patch fixes it by working with it in a scalar context. The functionality still remains the same but warning doesn't flood error log. To reproduce: 1. Open any biblio (details.pl) page. 2. Check the error log and find the upper mentioned warning, check the timestamp to ensure that it was added when you loaded the page. 3. Apply the patch. 4. Load the page again, ensure that the same warning doesn't get added to the log file again. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 09:35:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 07:35:39 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-2vxJ9aWM4e@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 Andrew Nugged <nugged at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nugged at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 09:38:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 07:38:35 +0000 Subject: [Koha-bugs] [Bug 30999] New: Add a script to manage plugins from the command line Message-ID: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30999 Bug ID: 30999 Summary: Add a script to manage plugins from the command line Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Command-line Utilities Assignee: koha-bugs at lists.koha-community.org Reporter: pasi.kallinen at koha-suomi.fi QA Contact: testopia at bugs.koha-community.org CC: robin at catalyst.net.nz There should be a script to manage plugins from the command line. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 09:41:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 07:41:56 +0000 Subject: [Koha-bugs] [Bug 30999] Add a script to manage plugins from the command line In-Reply-To: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30999-70-ekMu03x9MN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30999 --- Comment #1 from paxed <pasi.kallinen at koha-suomi.fi> --- Created attachment 136387 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136387&action=edit adds a very simple command line script for managing plugins This adds a very simple script that allows listing, enabling, and disabling plugins from the command line. It should be helpful for system admins to manage multiple koha instances. Test: 1) run the script without parameters to list all plugins. 2) run it with --enable Plugin::Class::Here to enable a plugin 3) run it with --disable Plugin::Class::Here to disable a plugin -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 09:59:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 07:59:55 +0000 Subject: [Koha-bugs] [Bug 23202] Problems when adding multiple items to an order in acquisitions In-Reply-To: <bug-23202-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23202-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23202-70-foaTLSLF1d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23202 Johanna Räisä <johanna.raisa at koha-suomi.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |johanna.raisa at koha-suomi.fi --- Comment #2 from Johanna Räisä <johanna.raisa at koha-suomi.fi> --- We got this problem too. Seems that the dateaccessioned.pl plugin in items dateaccessioned field is creating this. It is a javascript problem the flatpickr structure prevents items to be cloned in additem.js file. I can take this bug and fix it. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 10:00:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 08:00:11 +0000 Subject: [Koha-bugs] [Bug 23202] Problems when adding multiple items to an order in acquisitions In-Reply-To: <bug-23202-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23202-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23202-70-ueN0sZnZDx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23202 Johanna Räisä <johanna.raisa at koha-suomi.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |johanna.raisa at koha-suomi.fi |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 10:09:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 08:09:21 +0000 Subject: [Koha-bugs] [Bug 23202] Problems when adding multiple items to an order in acquisitions In-Reply-To: <bug-23202-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23202-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23202-70-LkrvgUAo3D@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23202 --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Johanna, thx for this! Could it be related to bug 30975 somehow? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 10:21:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 08:21:27 +0000 Subject: [Koha-bugs] [Bug 30999] Add a script to manage plugins from the command line In-Reply-To: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30999-70-ClLZHhULBR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30999 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com --- Comment #2 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- How about merging in the functionality of misc/devel/install_plugins.pl and having install/enable/disable for management. I'm game to help with such an effort. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 10:22:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 08:22:37 +0000 Subject: [Koha-bugs] [Bug 30999] Add a script to manage plugins from the command line In-Reply-To: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30999-70-rHKitgNzUl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30999 --- Comment #3 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- A 'list' command might be pretty useful too. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 10:32:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 08:32:33 +0000 Subject: [Koha-bugs] [Bug 23202] Problems when adding multiple items to an order in acquisitions In-Reply-To: <bug-23202-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23202-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23202-70-TcClJTGjZm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23202 --- Comment #4 from Johanna Räisä <johanna.raisa at koha-suomi.fi> --- (In reply to Katrin Fischer from comment #3) > Hi Johanna, thx for this! Could it be related to bug 30975 somehow? I think that is a different problem, more of Jquery behavior. In this bug the browser console gives this error: Uncaught TypeError: $(...).parent(...).attr(...) is undefined So with flatpickr datefield it doesn't find correct attribute to continue. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 10:49:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 08:49:35 +0000 Subject: [Koha-bugs] [Bug 30774] Typo: i %sEdit %sReserve %s In-Reply-To: <bug-30774-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30774-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30774-70-jXaBLeuz12@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30774 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED CC| |arthur.suzuki at biblibre.com --- Comment #9 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- Not backporting, not relevant to 21.11 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 10:55:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 08:55:48 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-rFEgJCYkXL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 --- Comment #5 from Andrew Nugged <nugged at gmail.com> --- sidenote to David: authors of CGI.pm decided to "warn only once" that's why Plack restart helps: it starts from again "$LIST_CONTEXT_WARN == 1". from CGI.pm source in sub param: if ( wantarray && $LIST_CONTEXT_WARN == 1 ) { my ( $package, $filename, $line ) = caller; if ( $package ne 'CGI' ) { $LIST_CONTEXT_WARN++; # only warn once warn "CGI::param called in list context from $filename line $line, this can lead to vulnerabilities. " . 'See the warning in "Fetching the value or values of a single named parameter"'; } } Petro: Maybe the commit explanation might be expanded with the note "on freshly started plack because this wards suppressed later by CGI.pm" -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 11:39:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 09:39:39 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-cg67SFcqlF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #3 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to David Nind from comment #2) > 1. Would it be possible to have a 'Documentation Contact' field, like there > is for the QA Contact. That would mean the team (or anyone) can assign > themselves to the documentation task. I love the idea of a 'Docs Contact' field. I can certainly add one, but I can't link it to users the same way 'QA Contact' works :(. (I'll submit a bug upstream to the bugzilla devs for this, I've often found myself wanting that) > 2. How would this work with the current developer work flow: release manager > pushes to master, release maintainers push to their versions > - who changes to "Needs Documentation" (documentation manager?) > - after the documentation changes are made, do we need another status > like "Documentation Updated" > - who would change to "RESOLVED FIXED" (is this changed at the end of the > release cycle, or continuously once pushed to a maintenance release?) The guidance right now is for Release Manager to use 'Pushed to master', then the Release Maintainers watch for that and as the backport they use 'Pushed to X' and if they make the decision not to backport then use 'Resolved Fixed'. My proposal is that the Release Maintainers simply switch from using 'Resolved Fixed' to 'Needs Documenating' as they're 'Final status'. > 2. Decide if documentation updates are required (bugzilla status = Needs > Documentation) (anyone, Documentation manager - review pushed bugs regularly) I was thinking lets spread the load for this decision. Rather than requiring the docs manager to review all bugs, we produce a list of the dashboard using the new status and docs team members work through the said list marking themselves as 'Docs contact' and updating the status to the next step as appropriate (which may well be a simple switch straight to 'Resolved fixed' when they deem a bug doesn't actually need any documentation changes) > 6. Once documentation updated, status changed to 'Documentation Updated' > (not sure on this step - but it would be nice to have something like Signed > Off - [Month/Year] on the dashboard) > ...repeat until there are no more documentation tasks!.. I had only envisaged adding 'Needs documenting' or similar, but we could easily track progress with an additional state.. so 'Pushed to X' -> 'Needs documenting' -> [ 'Resolved fixed' | 'Documentation submitted' ] -> 'Resolved fixed' Adding the 'Documentation submitted' option would allow for the docs manager to have a list to work through in a similar fashion to the QA team's todo list (though simply having gitlab submissions may serve the same purpose for the Docs manager.. so I'm not sure how helpful it is?) > I had thought about using a third party tool, like Trello, or go back to > Taiga.io, or use the issues tool in GitLab (my second preferred option over > using Bugzilla) - but having one tool, and not needing to manually duplicate > or maintain something else is the ideal. I'm not at all against third party tools (and I'm not always the biggest fan of Bugzilla.. I'm just thinking that folding it in to the existing infrastructure may make things clearer to the wider community and userbase maybe? I'm also all for automating or making things second nature process-wise rather than burdening anyone individual with a maintenance task.. maintaining an external tool is always difficult.. bugzilla has served as a pretty nice central place for data so if we can bend it to our will here and just use the info that's already in it I think that's a step forwards. > Anyway, thoughts welcome! (And thanks Martin for starting the discussion!) It's been a pleasure.. I'm always open to discussions and trying to help move processes forward. > Will add to the next documentation team meeting agenda to confirm anything > we decide from this discussion. Excellent. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 11:43:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 09:43:42 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-pKn7ERpPMc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 --- Comment #6 from David Nind <david at davidnind.com> --- (In reply to Andrew Nugged from comment #5) > sidenote to David: > > authors of CGI.pm decided to "warn only once" that's why Plack restart > helps: it starts from again "$LIST_CONTEXT_WARN == 1". Thanks Andrew! That explains things. David -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 11:48:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 09:48:34 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-KXwoDR1U6g@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m, | |jesse at bywatersolutions.com, | |katrin.fischer at bsz-bw.de, | |tomascohen at gmail.com, | |victor at tuxayo.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 11:49:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 09:49:21 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-1qJ0WSaCbq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com, | |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 11:50:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 09:50:34 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-MBVLkX4zR9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #4 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Adding current RMaints to the discussion as this would be a minor change to their current workflow (as detailed on the wiki:https://wiki.koha-community.org/wiki/Release_maintenance) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 12:38:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 10:38:23 +0000 Subject: [Koha-bugs] [Bug 30828] Remove unused variable in placerequest.pl In-Reply-To: <bug-30828-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30828-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30828-70-hiJ00oIWxV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30828 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |Pushed to oldstable --- Comment #12 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx, pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 12:38:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 10:38:38 +0000 Subject: [Koha-bugs] [Bug 30828] Remove unused variable in placerequest.pl In-Reply-To: <bug-30828-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30828-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30828-70-31efsZVNPn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30828 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 12:38:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 10:38:39 +0000 Subject: [Koha-bugs] [Bug 31000] New: Use of uninitialized value $record_type in string eq Message-ID: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 Bug ID: 31000 Summary: Use of uninitialized value $record_type in string eq Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: enhancement Priority: P5 - low Component: Tools Assignee: slavashishkin at gmail.com Reporter: slavashishkin at gmail.com QA Contact: testopia at bugs.koha-community.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 12:45:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 10:45:39 +0000 Subject: [Koha-bugs] [Bug 31000] Use of uninitialized value $record_type in string eq In-Reply-To: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31000-70-OfNz1yCp56@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 --- Comment #1 from Slava Shishkin <slavashishkin at gmail.com> --- Created attachment 136388 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136388&action=edit Bug 31000: HOTFIX. Warn removal: param record_type can be undef Use of uninitialized value $record_type in string eq at .../tools/export.pl line 43. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 12:47:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 10:47:15 +0000 Subject: [Koha-bugs] [Bug 31000] Use of uninitialized value $record_type in string eq In-Reply-To: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31000-70-cCefuQpQtV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 Slava Shishkin <slavashishkin at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136388|0 |1 is obsolete| | --- Comment #2 from Slava Shishkin <slavashishkin at gmail.com> --- Created attachment 136389 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136389&action=edit Bug 31000: HOTFIX. Warn removal: param record_type can be undef Uninitialized value warning on /tools/export.pl when $record_type is undef Use of uninitialized value $record_type in string eq at /home/vagrant/kohaclone/tools/export.pl line 43. This patch fixes it by working when $record_type is Undef. The functionality still remains the same but warning doesn't flood error log. To reproduce: 1. Go to export data tool page (/tools/export.pl). 2. Check the error log and find the upper mentioned warning, check the timestamp to ensure that it was added when you loaded the page. 3. Apply the patch. 4. Load the page again, ensure that the same warning doesn't get added to the log file again. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 12:57:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 10:57:14 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-Hbbu57UXzt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #5 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- OK, I've had a go at implimenting a first draft of this.. we now have a 'Needs documenting' status between 'Pushed to X' and 'Resolved' in bugzilla and I've updated https://dashboard.koha-community.org/ to display this new state in the 'To Do' area and under 'Bug statuses'. Obviously, the status is not yet set for any bugs at the moment; thus, the lists are empty... but it should give an idea of how it would look and give people a clear way to get started on picking what to document. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:06:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:06:35 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-CYZveYinjA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #6 from David Nind <david at davidnind.com> --- Thanks Martin for all your work on this! I'll start reviewing and adding 22.11 bugs for this as my first task tomorrow morning. If that looks okay, I'll then start on the 22.05 tasks. David -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:49 +0000 Subject: [Koha-bugs] [Bug 19532] Recalls for Koha In-Reply-To: <bug-19532-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19532-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19532-70-CU8uUaXPJD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|FIXED |--- Status|RESOLVED |Needs documenting -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:53 +0000 Subject: [Koha-bugs] [Bug 23781] Recalls notices and messaging preferences In-Reply-To: <bug-23781-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23781-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23781-70-YvKFEyLRiE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23781 Bug 23781 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:53 +0000 Subject: [Koha-bugs] [Bug 29734] [OMNIBUS] Recalls for Koha In-Reply-To: <bug-29734-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29734-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29734-70-trOV5o2xYk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29734 Bug 29734 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:53 +0000 Subject: [Koha-bugs] [Bug 30505] Warning when issuing recalled item that has a hold In-Reply-To: <bug-30505-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30505-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30505-70-upZCwWLk80@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30505 Bug 30505 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:54 +0000 Subject: [Koha-bugs] [Bug 30722] Typo in overdue recalls template In-Reply-To: <bug-30722-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30722-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30722-70-VZLXEUduFB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30722 Bug 30722 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:54 +0000 Subject: [Koha-bugs] [Bug 30823] Recalls should use 'FILL' in action logs In-Reply-To: <bug-30823-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30823-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30823-70-xUS0qQTo3z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30823 Bug 30823 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:55 +0000 Subject: [Koha-bugs] [Bug 30885] Recall - detail page explosion In-Reply-To: <bug-30885-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30885-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30885-70-BpHogQIPWy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30885 Bug 30885 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:54 +0000 Subject: [Koha-bugs] [Bug 30876] recalls/recalls_to_pull.pl introduces an incorrect use of ->search in list context In-Reply-To: <bug-30876-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30876-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30876-70-VfqoSpdBuT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30876 Bug 30876 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:55 +0000 Subject: [Koha-bugs] [Bug 30886] Recall status cannot be correct on OPAC detail page In-Reply-To: <bug-30886-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30886-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30886-70-hb3dapn6zp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30886 Bug 30886 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:55 +0000 Subject: [Koha-bugs] [Bug 30907] Remaining incorrect uses of Koha::Recall->item_level_recall In-Reply-To: <bug-30907-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30907-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30907-70-imelY6QnfP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30907 Bug 30907 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:56 +0000 Subject: [Koha-bugs] [Bug 30291] Rename recalls.* column names In-Reply-To: <bug-30291-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30291-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30291-70-0t94fKj1VB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30291 Bug 30291 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:56 +0000 Subject: [Koha-bugs] [Bug 30294] Rename Koha::Recall->* used relationship names In-Reply-To: <bug-30294-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30294-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30294-70-NiRUNus0z2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30294 Bug 30294 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:57 +0000 Subject: [Koha-bugs] [Bug 30488] Error when placing a recall in the OPAC In-Reply-To: <bug-30488-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30488-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30488-70-5xo1XeX8xk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30488 Bug 30488 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:57 +0000 Subject: [Koha-bugs] [Bug 30531] Search.t needs update for Recalls In-Reply-To: <bug-30531-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30531-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30531-70-sUyBafMJvw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30531 Bug 30531 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:07:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:07:57 +0000 Subject: [Koha-bugs] [Bug 30600] Recalls sync problem between DBIx and kohastructure.sql In-Reply-To: <bug-30600-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30600-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30600-70-dhgxt9yRGc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30600 Bug 30600 depends on bug 19532, which changed state. Bug 19532 Summary: Recalls for Koha https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:13:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:13:54 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-sHKiA81sSO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add a designated fallback |Add a designated owner for |owner for shared and public |shared and public lists at |lists at patron deletion |patron deletion -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:18:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:18:45 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-eZgj2ZaVod@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:18:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:18:49 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-hkx4ZMxSll@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135556|0 |1 is obsolete| | Attachment #135557|0 |1 is obsolete| | Attachment #135558|0 |1 is obsolete| | Attachment #135559|0 |1 is obsolete| | Attachment #135560|0 |1 is obsolete| | --- Comment #39 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136390 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136390&action=edit Bug 29325: Fix commit_file.pl This patch fixes the broken commit_file.pl script. It doesn't deal with commiting the import from the UI. To test: 1. Pick a file for staging: $ kshell k$ misc/stage_file.pl --file TestDataImportKoha.mrc => SUCCESS: All good 2. Commit! k$ misc/commit_file.pl --batch-number 1 => FAIL: You see DBIx::Class::Storage::DBI::_exec_txn_begin(): DBI Exception: DBD::mysql::db begin_work failed: Already in a transaction at /kohadevbox/koha/C4/Biblio.pm line 303 3. Apply this patch 4. Repeat 2 => SUCCESS: Commit succeeds 5. Sign off :-D Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:18:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:18:54 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-JIMFPsgaZC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #40 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136391 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136391&action=edit Bug 29325: (QA follow-up) Remove unexisting parameters of BatchRevertRecords There is no interval and callback as in BatchCommitRecords. Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:18:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:18:59 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-una3EDoi5C@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #41 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136392 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136392&action=edit Bug 29325: Call progress callback one last time to confirm comppletion Previously after finishing the loop we were still in a transaction that never completed - we should report progress when done one final time to commit the last records To test: 1 - Stage a file with > 100 records 2 - Commit file 3 - Confirm batch is imported and no records left as staged Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:19:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:19:03 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-Z3qWkp6S5r@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #42 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136393 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136393&action=edit Bug 29325: Fix import from staff client same test as before, but via the staff client Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:19:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:19:08 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-tRPLZEVPGm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #43 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136394 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136394&action=edit Bug 29325: Handle the transaction in BatchCommitRecords Requiring the callback to commit was breaking reversion, and likely elsewhere Let's simplify and say that the routine iteself will handle the txn and commit TO test: 1 - Stage a file 2 - Import a file 3 - Revert a file 4 - Test staff client and command line Signed-off-by: Nick Clemens <nick at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:24:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:24:48 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-ATkucwELAq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #7 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi all, +1 for the general idea, thx Martin for bringing this up! +1 for having the RMaints set the status. Spread the burden is really key I think. I am not sure about a 'documentation submitted' status - I think maybe posting a note with the gitlab merge request + setting to RESOLVED might suffice? Every click less is usually helpful. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:25:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:25:48 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-iIqTH9O78Q@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 --- Comment #46 from Nick Clemens <nick at bywatersolutions.com> --- (In reply to Fridolin Somers from comment #45) > Created attachment 136381 [details] [review] > Bug 28327: Unify CSV delimiter special behavior for tabulation It looks like you default to ';' but the majority of code you change defaulted to ',' - can you explain what made you choose seimcolon? I would think comma makes a better default -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:57:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:57:31 +0000 Subject: [Koha-bugs] [Bug 30788] Argument "" isn't numeric in multiplication (*) at /usr/share/koha/lib/C4/Overdues.pm In-Reply-To: <bug-30788-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30788-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30788-70-cH5kArEEpj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30788 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |RESOLVED --- Comment #17 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- this patch depends on recalls, released in 22.05 (bz19532) won't backport. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 13:57:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 11:57:32 +0000 Subject: [Koha-bugs] [Bug 25790] [OMNIBUS] warnings removal In-Reply-To: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25790-70-eshtoKQaGM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 Bug 25790 depends on bug 30788, which changed state. Bug 30788 Summary: Argument "" isn't numeric in multiplication (*) at /usr/share/koha/lib/C4/Overdues.pm https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30788 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 14:00:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 12:00:56 +0000 Subject: [Koha-bugs] [Bug 30788] Argument "" isn't numeric in multiplication (*) at /usr/share/koha/lib/C4/Overdues.pm In-Reply-To: <bug-30788-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30788-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30788-70-Wcqv3cXULK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30788 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |19532 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 [Bug 19532] Recalls for Koha -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 14:00:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 12:00:56 +0000 Subject: [Koha-bugs] [Bug 19532] Recalls for Koha In-Reply-To: <bug-19532-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19532-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19532-70-LcL7KsEAO5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30788 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30788 [Bug 30788] Argument "" isn't numeric in multiplication (*) at /usr/share/koha/lib/C4/Overdues.pm -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 14:08:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 12:08:32 +0000 Subject: [Koha-bugs] [Bug 15996] Bibliographic records diffing tool In-Reply-To: <bug-15996-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15996-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15996-70-EinGTmncZr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15996 Ray Delahunty <r.delahunty at arts.ac.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |r.delahunty at arts.ac.uk --- Comment #4 from Ray Delahunty <r.delahunty at arts.ac.uk> --- Improvements to cataloging logging to clearly show the difference between the before and after situation would be great. In 21.11 there is still the BEFORE Info presented after the edit is made to a biblio. To see the AFTER situation I think the only way is to edit the record a second time and be offered a second BEFORE (which becomes the AFTER situation to the first edit, if that makes any sense to the reader!). A before and after view with changes highlighted similar to what is offered with an overlay would be a delight. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 14:15:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 12:15:05 +0000 Subject: [Koha-bugs] [Bug 30842] Two-factor authentication code should be valid longer In-Reply-To: <bug-30842-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30842-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30842-70-PMSYOMEO2K@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30842 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |RESOLVED Resolution|--- |FIXED --- Comment #11 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- depends on 28786 which is an enhancement. not backporting to 21.11. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 14:15:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 12:15:06 +0000 Subject: [Koha-bugs] [Bug 30843] TOTP expiration delay should be configurable In-Reply-To: <bug-30843-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30843-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30843-70-SrUr8qSscU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30843 Bug 30843 depends on bug 30842, which changed state. Bug 30842 Summary: Two-factor authentication code should be valid longer https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30842 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 14:35:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 12:35:04 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-DaW6UGdoKW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #8 from Aude Charillon <aude.charillon at ptfs-europe.com> --- Thanks for looking into this! From my humble point of view as a Documentation beginner, it would make it a lot easier to find and manage what needs to be documented. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 14:44:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 12:44:23 +0000 Subject: [Koha-bugs] [Bug 30731] Noise from about script coming from Test::MockTime (or other CPAN modules) In-Reply-To: <bug-30731-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30731-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30731-70-n4YIQabx10@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30731 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 CC| |arthur.suzuki at biblibre.com --- Comment #16 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx, pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 14:50:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 12:50:55 +0000 Subject: [Koha-bugs] [Bug 30629] <span> in title of patron card creator template needs to be removed In-Reply-To: <bug-30629-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30629-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30629-70-3qcYhW6wjk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30629 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED CC| |arthur.suzuki at biblibre.com --- Comment #13 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- that one depends on 29602, not sure it is relevant for 21.11.x. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 14:52:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 12:52:46 +0000 Subject: [Koha-bugs] [Bug 28723] Holds table not displayed when it contains a biblio without title In-Reply-To: <bug-28723-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28723-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28723-70-qXcixrw1k6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28723 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |Pushed to oldstable --- Comment #15 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- pushed to 21.11.x for 21.11.07, thx! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:01:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:01:38 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-Gfb66oH1Wy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #9 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- I've added a 'Documentation contact' customer field.. though it can't be linked to bugzilla users so we'll have to hope people just type their name in consistently (I was going to use it for the leaderboard sections of the dashboard if your interested and motivated by that sort of thing) I've also re-enabled the 'Documentation submission' custom field which we introduced a while back but never really took off.. we could use that for gitlab merge request links.. but I'm not sure if that's adding burden to the process or is helpful?.. it could signify a submission has taken place in the bugzilla world to give us something to bind on for the dashboard again... jury's out.. let's see how this feels to start with. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:02:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:02:42 +0000 Subject: [Koha-bugs] [Bug 31001] New: "CGI::param called in list context" warning in basket.pl flooding error log Message-ID: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31001 Bug ID: 31001 Summary: "CGI::param called in list context" warning in basket.pl flooding error log Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: enhancement Priority: P5 - low Component: Acquisitions Assignee: stalkernoid at gmail.com Reporter: stalkernoid at gmail.com QA Contact: testopia at bugs.koha-community.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:04:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:04:41 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-zfEaZWPVF5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #10 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to David Nind from comment #6) > Thanks Martin for all your work on this! > > I'll start reviewing and adding 22.11 bugs for this as my first task > tomorrow morning. > > If that looks okay, I'll then start on the 22.05 tasks. > > David Regarding back populating, perhaps we should work on a report or if you have a spreadsheet already, use that to do a bulk update? (With Chris disabling email to not spam the world too much) I'm also wondering if we could just draw a line and work through old things via your existing sheets and use this workflow for moving forward? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:07:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:07:34 +0000 Subject: [Koha-bugs] [Bug 19358] Purchase suggestions - enhancements to linking to orders In-Reply-To: <bug-19358-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19358-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19358-70-shp8b3v5gx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19358 Jessie Zairo <jzairo at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kelly at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:08:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:08:09 +0000 Subject: [Koha-bugs] [Bug 1993] Task Scheduler Needs Re-write In-Reply-To: <bug-1993-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-1993-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-1993-70-7G9qeW5O0E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=1993 Jessie Zairo <jzairo at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jzairo at bywatersolutions.com | |, | |kelly at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:10:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:10:56 +0000 Subject: [Koha-bugs] [Bug 31001] "CGI::param called in list context" warning in basket.pl flooding error log In-Reply-To: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31001-70-8YkxMm9YpQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31001 Peter Vashchuk <stalkernoid at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:11:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:11:00 +0000 Subject: [Koha-bugs] [Bug 31001] "CGI::param called in list context" warning in basket.pl flooding error log In-Reply-To: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31001-70-uOs4qWvBGr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31001 --- Comment #1 from Peter Vashchuk <stalkernoid at gmail.com> --- Created attachment 136395 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136395&action=edit Bug 31001: Fix "CGI::param called in list context" warning in basket.pl CGI param basketno should be explicitly scalar, or else error log gets flooded with this warning: AH01215: CGI::param called in list context from /home/vagrant/kohaclone/acqui/basket.pl line 175, this can lead to vulnerabilities. See the warning in "Fetching the value or values of a single named parameter" at /usr/share/perl5/CGI.pm line 412. This patch fixes it by working with it in a scalar context. The functionality still remains the same but warning doesn't flood error log. To reproduce: 1. Head over to the acquisitions page. 2. Pick existing vendor with email contact info or create a new one. 3. Create a new basket or use existing one, and if it doesn't have any orders, add a new order to it. 4. Use the "E-mail order" button to send order. 5. Check the error log and find the upper mentioned warning. (Note: if you're going to test this more than once, you might need to restart your Plack in order for this warning to get added to your log file again, reasons of that is that the authors of CGI.pm decided to "warn only once") 6. Apply the patch. 7. Use the "E-mail order" button again, ensure that the same warning doesn't get added to the log file again. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:31:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:31:12 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-HxOcK0Kvfw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Adding a more generic |Add generic OpenIDConnect |version of |client implementation |googleopenidconnect | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:31:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:31:13 +0000 Subject: [Koha-bugs] [Bug 30523] Quiet console warning about missing shortcut-buttons map file In-Reply-To: <bug-30523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30523-70-V1w3ZmpFzq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30523 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |Pushed to oldstable --- Comment #7 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- Thx! pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:32:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:32:04 +0000 Subject: [Koha-bugs] [Bug 30337] Holds to Pull ( pendingreserves.pl ) ignores holds if priority 1 hold is suspended In-Reply-To: <bug-30337-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30337-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30337-70-cAFFQQbvCP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30337 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable CC| |arthur.suzuki at biblibre.com Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 --- Comment #11 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx, pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:34:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:34:40 +0000 Subject: [Koha-bugs] [Bug 30781] Use of uninitialized value $val in substitution iterator at /usr/share/koha/lib/C4/Letters.pm line 665. In-Reply-To: <bug-30781-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30781-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30781-70-onOIbmcKP2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30781 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 Status|Pushed to stable |Pushed to oldstable --- Comment #16 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx, pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:35:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:35:48 +0000 Subject: [Koha-bugs] [Bug 27697] Opening bibliographic record page prepopulates search bar text In-Reply-To: <bug-27697-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27697-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27697-70-MDt1Og8vhn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27697 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |Pushed to oldstable Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 --- Comment #12 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:37:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:37:29 +0000 Subject: [Koha-bugs] [Bug 30855] Rename /import => /import_batches In-Reply-To: <bug-30855-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30855-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30855-70-f7COmhEoUd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30855 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |RESOLVED Resolution|--- |FIXED --- Comment #12 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- depends on 30854 (released in 22.05) not relevant for 21.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:39:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:39:50 +0000 Subject: [Koha-bugs] [Bug 30756] Get skip block out of Koha_Authority.t and add TestBuilder In-Reply-To: <bug-30756-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30756-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30756-70-Oc79bPOyFS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30756 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 CC| |arthur.suzuki at biblibre.com --- Comment #19 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx, pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:41:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:41:58 +0000 Subject: [Koha-bugs] [Bug 29961] Horizontal scroll bar in acquisition z39.50 search should always show In-Reply-To: <bug-29961-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29961-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29961-70-FguL0MSAIa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29961 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |Pushed to oldstable Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 --- Comment #7 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx, this is pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:42:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:42:55 +0000 Subject: [Koha-bugs] [Bug 30840] Add support for barcode filters to course reserves In-Reply-To: <bug-30840-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30840-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30840-70-RhWu3W4LWA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30840 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable CC| |arthur.suzuki at biblibre.com Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 --- Comment #6 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:44:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:44:30 +0000 Subject: [Koha-bugs] [Bug 30876] recalls/recalls_to_pull.pl introduces an incorrect use of ->search in list context In-Reply-To: <bug-30876-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30876-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30876-70-SMN1tCYK08@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30876 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Resolution|--- |FIXED Status|Pushed to stable |RESOLVED --- Comment #11 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- depends on recalls, enhancement not available in 21.11, won't backport -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:44:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:44:31 +0000 Subject: [Koha-bugs] [Bug 29734] [OMNIBUS] Recalls for Koha In-Reply-To: <bug-29734-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29734-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29734-70-YwOOyix1T6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29734 Bug 29734 depends on bug 30876, which changed state. Bug 30876 Summary: recalls/recalls_to_pull.pl introduces an incorrect use of ->search in list context https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30876 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:44:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:44:31 +0000 Subject: [Koha-bugs] [Bug 30877] use List::MoreUtils::uniq from recalls_to_pull.pl In-Reply-To: <bug-30877-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30877-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30877-70-fBDAeCg16T@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30877 Bug 30877 depends on bug 30876, which changed state. Bug 30876 Summary: recalls/recalls_to_pull.pl introduces an incorrect use of ->search in list context https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30876 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:44:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:44:32 +0000 Subject: [Koha-bugs] [Bug 30885] Recall - detail page explosion In-Reply-To: <bug-30885-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30885-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30885-70-dIegdxXEao@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30885 Bug 30885 depends on bug 30876, which changed state. Bug 30876 Summary: recalls/recalls_to_pull.pl introduces an incorrect use of ->search in list context https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30876 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:45:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:45:34 +0000 Subject: [Koha-bugs] [Bug 30885] Recall - detail page explosion In-Reply-To: <bug-30885-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30885-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30885-70-92sLyYzl4O@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30885 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable CC| |arthur.suzuki at biblibre.com --- Comment #7 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- depends on recalls, not available in 21.11. won't backport -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:45:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:45:51 +0000 Subject: [Koha-bugs] [Bug 30885] Recall - detail page explosion In-Reply-To: <bug-30885-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30885-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30885-70-ykIwkKosH5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30885 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to oldstable |RESOLVED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:45:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:45:51 +0000 Subject: [Koha-bugs] [Bug 27272] Move C4::Items::GetItemsInfo to Koha namespace In-Reply-To: <bug-27272-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27272-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27272-70-bRmCBpdIUi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27272 Bug 27272 depends on bug 30885, which changed state. Bug 30885 Summary: Recall - detail page explosion https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30885 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:45:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:45:52 +0000 Subject: [Koha-bugs] [Bug 29734] [OMNIBUS] Recalls for Koha In-Reply-To: <bug-29734-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29734-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29734-70-O0DqHRqwaW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29734 Bug 29734 depends on bug 30885, which changed state. Bug 30885 Summary: Recall - detail page explosion https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30885 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:46:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:46:47 +0000 Subject: [Koha-bugs] [Bug 30886] Recall status cannot be correct on OPAC detail page In-Reply-To: <bug-30886-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30886-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30886-70-KkDBdIPnQM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30886 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED CC| |arthur.suzuki at biblibre.com Resolution|--- |FIXED --- Comment #8 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- depends on recalls, not relevant for 21.11. Won't backport -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:46:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:46:47 +0000 Subject: [Koha-bugs] [Bug 27272] Move C4::Items::GetItemsInfo to Koha namespace In-Reply-To: <bug-27272-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27272-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27272-70-xbzzI5FZm4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27272 Bug 27272 depends on bug 30886, which changed state. Bug 30886 Summary: Recall status cannot be correct on OPAC detail page https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30886 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:46:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:46:48 +0000 Subject: [Koha-bugs] [Bug 29734] [OMNIBUS] Recalls for Koha In-Reply-To: <bug-29734-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29734-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29734-70-45KbwZkI91@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29734 Bug 29734 depends on bug 30886, which changed state. Bug 30886 Summary: Recall status cannot be correct on OPAC detail page https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30886 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:52:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:52:18 +0000 Subject: [Koha-bugs] [Bug 30884] Incomplete replace of jQuery UI tabs in batch patron modification breaks the form sending In-Reply-To: <bug-30884-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30884-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30884-70-k8A9TXz0DV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30884 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |Pushed to oldstable --- Comment #9 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx, pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:55:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:55:04 +0000 Subject: [Koha-bugs] [Bug 30868] Modifying a patron - page not found error after fixing validation errors where the message is displayed at the top of the page In-Reply-To: <bug-30868-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30868-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30868-70-epIgtKVAXp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30868 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable CC| |arthur.suzuki at biblibre.com Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 --- Comment #7 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:57:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:57:01 +0000 Subject: [Koha-bugs] [Bug 30893] Typo: update_patrons_category.pl fine(s) In-Reply-To: <bug-30893-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30893-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30893-70-mZ2l18hdis@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30893 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 Status|Pushed to stable |Pushed to oldstable CC| |arthur.suzuki at biblibre.com --- Comment #7 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx! pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:59:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:59:12 +0000 Subject: [Koha-bugs] [Bug 23659] Allow hold pickup location to default to item home branch for item-level holds In-Reply-To: <bug-23659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23659-70-7Bvow1GMdQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23659 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable CC| |arthur.suzuki at biblibre.com --- Comment #12 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- depends on 29660, not relevant for 21.11. won't backport -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:59:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:59:19 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-DxrUB4L1mI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #10 from Nick Clemens <nick at bywatersolutions.com> --- Our IDs all seem to be INT(11) in the DB - would it be reasonable to zero pad our ids into a new column to fix the sorting? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:59:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:59:33 +0000 Subject: [Koha-bugs] [Bug 23659] Allow hold pickup location to default to item home branch for item-level holds In-Reply-To: <bug-23659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23659-70-sAO94UZ4l0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23659 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to oldstable |RESOLVED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 15:59:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 13:59:34 +0000 Subject: [Koha-bugs] [Bug 30811] Allow hold pickup location to default to item home/holding branch for bib-level holds In-Reply-To: <bug-30811-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30811-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30811-70-S9JCVfazyT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30811 Bug 30811 depends on bug 23659, which changed state. Bug 23659 Summary: Allow hold pickup location to default to item home branch for item-level holds https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23659 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:01:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:01:20 +0000 Subject: [Koha-bugs] [Bug 30746] JS error on 'your personal details' in OPAC In-Reply-To: <bug-30746-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30746-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30746-70-5XEZQFlon5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30746 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 CC| |arthur.suzuki at biblibre.com --- Comment #11 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx! pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:03:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:03:49 +0000 Subject: [Koha-bugs] [Bug 30726] Flatpickr's "yesterday" shortcut doesn't work if entry is limited to past dates In-Reply-To: <bug-30726-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30726-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30726-70-gBgFXzi1xs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30726 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 CC| |arthur.suzuki at biblibre.com --- Comment #7 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx! pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:07:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:07:54 +0000 Subject: [Koha-bugs] [Bug 30844] The OPAC detail page's browser is limited to the current page of results when using Elasticsearch In-Reply-To: <bug-30844-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30844-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30844-70-Im7x42fdzm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30844 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable CC| |arthur.suzuki at biblibre.com Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 --- Comment #17 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- thx! pushed to 21.11.x for 21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:31:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:31:40 +0000 Subject: [Koha-bugs] [Bug 18994] Show the branch name where checkin occurred on a title's Checkout History display In-Reply-To: <bug-18994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18994-70-pwXg3gOAQD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18994 Jeremy Evans <jeremy.evans at ukhsa.gov.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jeremy.evans at ukhsa.gov.uk --- Comment #4 from Jeremy Evans <jeremy.evans at ukhsa.gov.uk> --- We also want to see the site where the item was returned. In the Borrowing history showing the item circulation details it would also be useful to be able to see if an item was issued/returned/renewed using the self-service kiosk, or via staff client - and which member of staff did the transaction. Also via the OPAC for renewals. It would help track down missing items. - e.g. to identify which returns trolley the item may have gone onto or which kiosk was used for a return. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:31:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:31:45 +0000 Subject: [Koha-bugs] [Bug 31002] New: Add ability to send notices over instant messaging services Message-ID: <bug-31002-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31002 Bug ID: 31002 Summary: Add ability to send notices over instant messaging services Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org It would be great to add integration for sending notices via the various instant messaging services people use these days. * WhatsApp * Telegram * Signal * Teams * Slack I think we could work on the core infrastructure on one bug and then enable integrations via drivers or plugins similar to how SMS is dealt with. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:32:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:32:16 +0000 Subject: [Koha-bugs] [Bug 20235] Telegram notifications In-Reply-To: <bug-20235-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20235-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20235-70-p1f92pcSzO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20235 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |31002 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31002 [Bug 31002] Add ability to send notices over instant messaging services -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:32:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:32:16 +0000 Subject: [Koha-bugs] [Bug 31002] Add ability to send notices over instant messaging services In-Reply-To: <bug-31002-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31002-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31002-70-Hw44UV6LXs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31002 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |20235 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20235 [Bug 20235] Telegram notifications -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:36:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:36:45 +0000 Subject: [Koha-bugs] [Bug 30437] Add an SVG loader to Koha pendingreserves.pl In-Reply-To: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30437-70-fUMuTsMe5s@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30437 --- Comment #5 from Lucas Gass <lucas at bywatersolutions.com> --- (In reply to Owen Leonard from comment #4) > We do something like this on only two other pages if I recall correctly: The > basic and advanced MARC editor pages. Both of them show the loading image > after the user has navigated to the page rather than on the page where the > user clicked the link. > > It seems odd to me to use this new technique on only a single page. Is one > approach better than the other? I am sorry, I should have took some more time to look around for similar functionality already implemented. I will have a look at those pages. At this point I don't know what which method is better but we should only use a single method to do this. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:39:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:39:57 +0000 Subject: [Koha-bugs] [Bug 30437] Add an SVG loader to Koha pendingreserves.pl In-Reply-To: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30437-70-dPI1oqtcHc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30437 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:40:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:40:12 +0000 Subject: [Koha-bugs] [Bug 31003] New: WhatsApp notifications Message-ID: <bug-31003-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31003 Bug ID: 31003 Summary: WhatsApp notifications Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org It would be great to support WhatsApp as a delivery medium for notices. https://developers.facebook.com/docs/whatsapp/cloud-api/get-started -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:40:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:40:25 +0000 Subject: [Koha-bugs] [Bug 31003] WhatsApp notifications In-Reply-To: <bug-31003-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31003-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31003-70-yPE6fwWikN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31003 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |31002 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31002 [Bug 31002] Add ability to send notices over instant messaging services -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:40:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:40:25 +0000 Subject: [Koha-bugs] [Bug 31002] Add ability to send notices over instant messaging services In-Reply-To: <bug-31002-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31002-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31002-70-dC1wPfFThR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31002 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31003 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31003 [Bug 31003] WhatsApp notifications -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:48:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:48:41 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-5r78wbPabT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com --- Comment #129 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- big patch, lots of conflict when trying to apply to 21.11.x. Provide a patch for 21.11 if needed, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:49:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:49:11 +0000 Subject: [Koha-bugs] [Bug 31004] New: MS Teams notifications Message-ID: <bug-31004-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31004 Bug ID: 31004 Summary: MS Teams notifications Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org It would be great to support MS Teams Chat as a delivery medium for notices. https://docs.microsoft.com/en-us/graph/api/chatmessage-post?view=graph-rest-1.0&tabs=http -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 16:54:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 14:54:17 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-zfSlvDaoKr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #11 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- A link field might be useful, but might be better linking to the section in the manual... but then you might have changed multiple pages. Not sure on that one yet. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 17:16:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 15:16:51 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-78JFm1s8kf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #16 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136396 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136396&action=edit Bug 30988: Add generic OpenIDConnect client implementation A generic OpenID Connect implementation. Test plan: 1- Set up an OAuth2 provider that has a discovery doc (e.g. for google it's https://accounts.google.com/.well-known/openid-configuration) and note down the client id and client secret. Docs to help setup: google: https://developers.google.com/identity/protocols/oauth2/openid-connect https://koha-community.org/manual/20.11/en/html/administrationpreferences.html gitlab: https://docs.gitlab.com/ee/integration/oauth_provider.html 2- Apply the patch 3- Run atomicupdate to update database 4- Configure system preferences: a- Set OIDC to Yes b- Enter the url to the discovery doc of your OAuth2 provider c- Fill OIDCOAuth2ClientID with noted client id d- Fill OIDCOAuth2ClientSecret with noted client secret e- Configure the other related system preferences as you wish. They shoud work the same way as the similar googleopenidconnect system preferences. 5- If OIDCAutoRegister is set to Don't allow, have a koha account with the same email as the one used by your OAuth2 provider. 6- In OPAC, sign in using OpenID Connect. 7- You may have to log into your OpenID provider account and accept conditions. It should finally log you into the koha account. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 17:16:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 15:16:55 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-HMQGK7Arzd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #17 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136397 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136397&action=edit Bug 30988: Moving id token validation code into a module -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 17:17:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 15:17:14 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-wOdz1j2XnX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136382|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 17:28:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 15:28:49 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-X5vh0z3Vqg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136390|0 |1 is obsolete| | --- Comment #44 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136398 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136398&action=edit Bug 29325: Fix commit_file.pl This patch fixes the broken commit_file.pl script. It doesn't deal with commiting the import from the UI. To test: 1. Pick a file for staging: $ kshell k$ misc/stage_file.pl --file TestDataImportKoha.mrc => SUCCESS: All good 2. Commit! k$ misc/commit_file.pl --batch-number 1 => FAIL: You see DBIx::Class::Storage::DBI::_exec_txn_begin(): DBI Exception: DBD::mysql::db begin_work failed: Already in a transaction at /kohadevbox/koha/C4/Biblio.pm line 303 3. Apply this patch 4. Repeat 2 => SUCCESS: Commit succeeds 5. Sign off :-D Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 17:28:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 15:28:54 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-yzOLkzXzY4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136391|0 |1 is obsolete| | --- Comment #45 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136399 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136399&action=edit Bug 29325: (QA follow-up) Remove unexisting parameters of BatchRevertRecords There is no interval and callback as in BatchCommitRecords. Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 17:28:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 15:28:58 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-ONiJRnI7AQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136392|0 |1 is obsolete| | --- Comment #46 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136400 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136400&action=edit Bug 29325: Call progress callback one last time to confirm comppletion Previously after finishing the loop we were still in a transaction that never completed - we should report progress when done one final time to commit the last records To test: 1 - Stage a file with > 100 records 2 - Commit file 3 - Confirm batch is imported and no records left as staged Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 17:29:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 15:29:03 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-yQ2QdmjWnK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136393|0 |1 is obsolete| | --- Comment #47 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136401 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136401&action=edit Bug 29325: Fix import from staff client same test as before, but via the staff client Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 17:29:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 15:29:08 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-kxMxIvTEt7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136394|0 |1 is obsolete| | --- Comment #48 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136402 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136402&action=edit Bug 29325: Handle the transaction in BatchCommitRecords Requiring the callback to commit was breaking reversion, and likely elsewhere Let's simplify and say that the routine iteself will handle the txn and commit TO test: 1 - Stage a file 2 - Import a file 3 - Revert a file 4 - Test staff client and command line Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 17:31:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 15:31:43 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-earPD00EWZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #49 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- The code reads a fair bit better now, though there still some peculiarities.. it would be really nice to clean this up whilst moving it to the more modern background task queue implementation. In my testing this appears to all work.. but I'd love to see some more tests to make sure I'm not imagining positives.. We need to confirm the command line version works, the staff client without pushing to background and the staff client with pushing to background all work still. Whilst reading the code, it also felt like we could perhaps drop the following line.. but it's 'interesting'... $dbh->{InactiveDestroy} = 1; -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 17:39:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 15:39:22 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-HDJlACUmKK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136397|0 |1 is obsolete| | --- Comment #18 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136403 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136403&action=edit Bug 30988: Moving id token validation code into a module -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 18:05:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 16:05:15 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-aMYBIYxmaf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #19 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Fixed everything except mapping custom claims (comment #8), OIDC logout (comment #12) and warnings (comment #13). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 18:41:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 16:41:18 +0000 Subject: [Koha-bugs] [Bug 31005] New: Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category Message-ID: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Bug ID: 31005 Summary: Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com To recreate: 1 - Create a new patron attribute - check boxes to make it mandatory and visible etc. 2 - Limit it to 'Patron' or other category 3 - Edit a patron not in that category 4 - Attempt to save 5 - 500 Error 6 - Missing mandatory extended attribute (type=MAND) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 19:05:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 17:05:39 +0000 Subject: [Koha-bugs] [Bug 31006] New: Add ability to make batch changes to items in a basket. Message-ID: <bug-31006-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31006 Bug ID: 31006 Summary: Add ability to make batch changes to items in a basket. Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Acquisitions Assignee: koha-bugs at lists.koha-community.org Reporter: rkuiper at roundrocktexas.gov QA Contact: testopia at bugs.koha-community.org -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 19:14:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 17:14:22 +0000 Subject: [Koha-bugs] [Bug 31006] Add ability to make batch changes to items in a basket. In-Reply-To: <bug-31006-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31006-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31006-70-YnsciZJYeE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31006 --- Comment #1 from Rhonda Kuiper <rkuiper at roundrocktexas.gov> --- At the koha-US acquisitions SIG, we discussed the benefit of having the ability to do batch changes to items in a basket. The specific things that we would like to be able to change include but are not limited to the fund code, add vendor note, add internal note and the transfer option. We envision this working like the purchase suggestion page where there are check boxes next to each item and then at the bottom of the page there are batch functions that can be performed. For the fund code change, you would select the fund code you wanted to move the item to. This will be VERY helpful when moving items to a different budget in advance of a new FY. (See the recording for the June '22 koha-US acquisitions SIG for the discussion.) If you have questions or need clarification, please contact me. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 19:39:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 17:39:54 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-7qyDWwC3Fb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #20 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- I will be looking into OIDC logout -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 20:19:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 18:19:22 +0000 Subject: [Koha-bugs] [Bug 30437] Add an SVG loader to Koha pendingreserves.pl In-Reply-To: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30437-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30437-70-wrrIAz3Hc9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30437 --- Comment #6 from Owen Leonard <oleonard at myacpl.org> --- (In reply to Lucas Gass from comment #5) > I should have took some more time to look around for similar > functionality already implemented I think it's absolutely worthwhile to look at these two options to have a fresh look at whether we could be doing things better. I'm curious whether there is a usability advantage to one or the other. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 20:29:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 18:29:16 +0000 Subject: [Koha-bugs] [Bug 28355] Add warning note about Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-lgrFFJzuvD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 20:29:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 18:29:19 +0000 Subject: [Koha-bugs] [Bug 28355] Add warning note about Email SMS driver option for SMSSendDriver In-Reply-To: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28355-70-jcoyAj7eeC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28355 --- Comment #7 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 20:29:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 18:29:22 +0000 Subject: [Koha-bugs] [Bug 29504] Confirm item parts requires force_checkout permission (checkouts tab) In-Reply-To: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29504-70-RKaIz17yhR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 20:29:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 18:29:24 +0000 Subject: [Koha-bugs] [Bug 29504] Confirm item parts requires force_checkout permission (checkouts tab) In-Reply-To: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29504-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29504-70-TO65JFLWhD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29504 --- Comment #25 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 20:29:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 18:29:27 +0000 Subject: [Koha-bugs] [Bug 30958] OPAC Overdrive search result page broken for translations In-Reply-To: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30958-70-xOmdPk51TM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30958 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 20:29:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 18:29:30 +0000 Subject: [Koha-bugs] [Bug 30958] OPAC Overdrive search result page broken for translations In-Reply-To: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30958-70-NLm20NqHbk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30958 --- Comment #6 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 20:29:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 18:29:32 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-lPoV0iRUh4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 20:29:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 18:29:35 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-6hRYOaU8Jg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 --- Comment #7 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 20:46:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 18:46:57 +0000 Subject: [Koha-bugs] [Bug 31006] Add ability to make batch changes to items in a basket. In-Reply-To: <bug-31006-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31006-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31006-70-DXthXlHDhh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31006 Barbara Johnson <barbara.johnson at bedfordtx.gov> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |barbara.johnson at bedfordtx.g | |ov --- Comment #2 from Barbara Johnson <barbara.johnson at bedfordtx.gov> --- +1 I love this idea! This functionality would save our staff tons of time. Towards the end of a fiscal year we could have two active budgets running. Then we could batch move titles into funds in the upcoming budget. That would allow us to better calculate our expenses for the current fiscal year since not everything that is encumbered is actually going to fill during that year. We are a "use it or lose it" city so we don't want 'future encumbrances' to trick us into thinking we've actually spent more than we have. As it is we spend a good deal of time using spreadsheets to figure out exactly how much money we really have left to spend at the end of the year which isn't efficient and can introduce errors. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 21:51:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 19:51:53 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-4NcDYx6jIV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #12 from David Nind <david at davidnind.com> --- (In reply to Martin Renvoize from comment #9) > I've added a 'Documentation contact' customer field.. though it can't be > linked to bugzilla users so we'll have to hope people just type their name > in consistently (I was going to use it for the leaderboard sections of the > dashboard if your interested and motivated by that sort of thing) Hopefully, people can remember their names 8-), I'll make sure it is covered in the work flow instructions. > I've also re-enabled the 'Documentation submission' custom field which we > introduced a while back but never really took off.. we could use that for > gitlab merge request links.. but I'm not sure if that's adding burden to the > process or is helpful?.. it could signify a submission has taken place in > the bugzilla world to give us something to bind on for the dashboard > again... jury's out.. let's see how this feels to start with. We can see how it goes. In the meantime, I'll add that to the work flow instructions as well. Thanks Martin! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 21:56:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 19:56:06 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-sBYkUmlbhV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #13 from David Nind <david at davidnind.com> --- (In reply to Martin Renvoize from comment #10) > Regarding back populating, perhaps we should work on a report or if you have > a spreadsheet already, use that to do a bulk update? (With Chris disabling > email to not spam the world too much) > > I'm also wondering if we could just draw a line and work through old things > via your existing sheets and use this workflow for moving forward? It makes much more sense not to spam everyone, was thinking they might not appreciate all the email in their inbox! I'll get my lists up to date for the current release, 22.05, 21.11 and 20.05, then we can look at. Definitely, we should do for 22.11. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 21:59:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 19:59:55 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-wYBxX9aUsD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #14 from David Nind <david at davidnind.com> --- Thanks everyone for the feedback so far, and Martin for enabling things! Current list of things to do: - Get lists of documentation tasks up to date - Look at bulk updating the current release - Decide on whether to bulk update for previous releases - Update work flow instructions - Add to agenda for next development meeting - Add to agenda for next documentation meeting - Email to documentation and development mailing lists -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 22:41:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 20:41:36 +0000 Subject: [Koha-bugs] [Bug 11300] Add a new authority linker which searches for authority links on a Z39.50 server. In-Reply-To: <bug-11300-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11300-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11300-70-6eo2BAKrVW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11300 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133496|0 |1 is obsolete| | --- Comment #42 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136404 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136404&action=edit Bug 11300: Add a new authority linker which searches for authority links on a Z39.50 server. This patch adds a Z39.50 Linker which searches for authority links on a remote server. If a matching authority is found, it's imported in the local database for linking with the current biblio record. If no matching authority was found on the remote server, the Linker falls back to a local authority search. Configuration : * The option "Z39.50 Server" is added to the LinkerModule preference. You must choose this to use the new Linker. * The preference LinkerZ3950Server is required and specifies which server to use for linking. It must contain the "name" of the server, as defined in the z3950servers table. * You can set the "local_first" option in the LinkerOptions preference to force the Linker to search for authorities in the local database first. If no local authority match was found, the Linker falls back to a remote Z39.50 search. Sponsored-by: CCSR ( http://www.ccsr.qc.ca ) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 22:48:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 20:48:31 +0000 Subject: [Koha-bugs] [Bug 18217] SMS alert number should be grouped with other borrower contact information. In-Reply-To: <bug-18217-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18217-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18217-70-RPMfLDOIDG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18217 Daniel Gaghan <daniel.gaghan at pueblolibrary.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |daniel.gaghan at pueblolibrary | |.org --- Comment #3 from Daniel Gaghan <daniel.gaghan at pueblolibrary.org> --- This enhancement might be a bit more important because of the new main contact method field added to patron records in 21.11. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 23:10:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 21:10:25 +0000 Subject: [Koha-bugs] [Bug 30942] Optionally hide recalls button on detail page when no recall can be placed In-Reply-To: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30942-70-X9895zsZEv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30942 --- Comment #9 from Aleisha Amohia <aleisha at catalyst.net.nz> --- This mostly covers what is now in upstream, it's been available on the wiki for years: https://wiki.koha-community.org/wiki/Catalyst_IT_Recalls Outside of this we have also further developed recalls to be on the staff side for a different library. I'd love to have time to upstream that. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 23:35:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 21:35:57 +0000 Subject: [Koha-bugs] [Bug 30893] Typo: update_patrons_category.pl fine(s) In-Reply-To: <bug-30893-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30893-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30893-70-VxQpXXFtx0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30893 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This updates the help text release notes| |for the update patrons | |category cronjob script | |(misc/cronjobs/update_patro | |ns_category.pl). It changes | |the full option names and | |associated information for | |-fo (--fineover to | |--finesover) and -fu | |(--fineunder to | |--finesunder), as well as | |some minor formatting and | |text tidy ups. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 23:37:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 21:37:59 +0000 Subject: [Koha-bugs] [Bug 30942] Optionally hide recalls button on detail page when no recall can be placed In-Reply-To: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30942-70-VYt1IWJnhT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30942 --- Comment #10 from David Nind <david at davidnind.com> --- (In reply to Katrin Fischer from comment #8) > I think something for the manual would be great and I'd also be very Sorry, my fault about the manual. I have a draft and will get this ready for publishing as soon as I can. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 23:38:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 21:38:54 +0000 Subject: [Koha-bugs] [Bug 19532] Recalls for Koha In-Reply-To: <bug-19532-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19532-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19532-70-JnYGF2ZnAh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Documentation| |David Nind contact| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 23:40:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 21:40:51 +0000 Subject: [Koha-bugs] [Bug 30997] "CGI::param called in list context" warning in detail.pl flooding error log In-Reply-To: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30997-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30997-70-5NPFiJmU4J@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30997 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the cause of release notes| |"CGI::param called in list | |context from" warning | |messages that appear in the | |log files when viewing | |record detail pages in the | |staff interface. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 23:47:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 21:47:37 +0000 Subject: [Koha-bugs] [Bug 30868] Modifying a patron - page not found error after fixing validation errors where the message is displayed at the top of the page In-Reply-To: <bug-30868-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30868-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30868-70-cMGYfJa4R0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30868 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes a page not found release notes| |error message generated | |after fixing validation | |errors when editing a | |patron (where the | |validation/error message is | |shown at the top of the | |page - below the patron | |name, but before the Save | |and Cancel buttons). (This | |was introduced by bug | |29684: Fix warn about | |js/locale_data.js in | |22.05.) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 23:48:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 21:48:38 +0000 Subject: [Koha-bugs] [Bug 30942] Optionally hide recalls button on detail page when no recall can be placed In-Reply-To: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30942-70-ZVi6D3GvBv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30942 --- Comment #11 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Thanks David. If you need clarification on details etc feel free to email me or the Catalyst Koha team. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 21 23:50:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 21:50:22 +0000 Subject: [Koha-bugs] [Bug 30942] Optionally hide recalls button on detail page when no recall can be placed In-Reply-To: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30942-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30942-70-ThhEu6ntqm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30942 --- Comment #12 from David Nind <david at davidnind.com> --- (In reply to Aleisha Amohia from comment #11) > Thanks David. If you need clarification on details etc feel free to email me > or the Catalyst Koha team. Thanks Aleisha. Will make a preview available for review and feedback. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:16:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:16:25 +0000 Subject: [Koha-bugs] [Bug 30629] <span> in title of patron card creator template needs to be removed In-Reply-To: <bug-30629-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30629-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30629-70-a7DeH9a0Sn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30629 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This removes <span> tags release notes| |incorrectly displaying in | |browser page titles for | |some pages in the staff | |interface (Tools > Patron | |card creator > Layouts; | |Tools > Label creator > | |Manage > Label batches; | |Administration > Budgets | |administration > select a | |budget > Plan by ...). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:23:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:23:54 +0000 Subject: [Koha-bugs] [Bug 30842] Two-factor authentication code should be valid longer In-Reply-To: <bug-30842-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30842-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30842-70-0EQKd8VEsg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30842 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This extends the time a release notes| |two-factor authentication | |code is valid for, in case | |it is not entered quickly | |enough. (Example: wait for | |the code to change, then | |enter the previous code - | |this should still work, but | |will not work when the code | |changes again.) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:30:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:30:48 +0000 Subject: [Koha-bugs] [Bug 31007] New: Can't save a supplement issue with mandatory subfields Message-ID: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 Bug ID: 31007 Summary: Can't save a supplement issue with mandatory subfields Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: Serials Assignee: koha-bugs at lists.koha-community.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org Bug 29496 fixed new issues mandatory subfields check. But there is still a problem with a supplement issue with mandatory subfields. I it nearly the same code missing class "input_marceditor" -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:33:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:33:05 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-Xpx7tcGl5E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |29496 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29496 [Bug 29496] Can't save an order with mandatory items subfields -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:33:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:33:05 +0000 Subject: [Koha-bugs] [Bug 29496] Can't save an order with mandatory items subfields In-Reply-To: <bug-29496-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29496-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29496-70-fuyryoe05t@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29496 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31007 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 [Bug 31007] Can't save a supplement issue with mandatory subfields -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:35:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:35:18 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-6bDytvhim2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |johanna.raisa at gmail.com |ity.org | Status|NEW |ASSIGNED -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:37:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:37:25 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-WK0mccmebr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 --- Comment #1 from Fridolin Somers <fridolin.somers at biblibre.com> --- Looks like it is the only one missing : > git grep '<select .*name="field_value"' koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt: <select name="field_value" class="input_marceditor"> koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt: <select name="field_value" class="select2 input_marceditor"> koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt: <select name="field_value"> koha-tmpl/intranet-tmpl/prog/en/modules/services/itemrecorddisplay.tt: <select name="field_value" class="input_marceditor"> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:38:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:38:13 +0000 Subject: [Koha-bugs] [Bug 29496] Can't save an order with mandatory items subfields In-Reply-To: <bug-29496-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29496-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29496-70-zh96YDwZVY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29496 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #21 from Fridolin Somers <fridolin.somers at biblibre.com> --- (In reply to Johanna Räisä from comment #20) > Created attachment 136057 [details] [review] > Bug 29496: (follow-up) fix for supplemental issues > > The select field validation fails for supplemental issues in serials-edit.tt. > > Not sure if I should open a new bug but the form for supplement issue was > missing from the fix. Here is a follow up for it. Ahhh I was looking for this exact fix. This bug report is closed. I opended Bug 31007 and will attach your patch. Best regards -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:38:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:38:36 +0000 Subject: [Koha-bugs] [Bug 29496] Can't save an order with mandatory items subfields In-Reply-To: <bug-29496-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29496-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29496-70-vXWEfScTJk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29496 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136057|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:39:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:39:42 +0000 Subject: [Koha-bugs] [Bug 31008] New: Long-terms support version of Koha Message-ID: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31008 Bug ID: 31008 Summary: Long-terms support version of Koha Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: new feature Priority: P5 - low Component: Installation and upgrade (web-based installer) Assignee: koha-bugs at lists.koha-community.org Reporter: david at davidnind.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Adding a "long-term support" release of Koha supported by the Koha Community. This would be in addition to current 18-months to two-year release support (stable, old stable, and old old stable). -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:44:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:44:46 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-RCvY0dI2md@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:44:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:44:50 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-gt1KzmToNh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 --- Comment #2 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136405 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136405&action=edit Bug 29496: (follow-up) fix for supplemental issues The select field validation fails for supplemental issues in serials-edit.tt. Test plan inspired from Bug 29496 : Test plan: 0- Be sure to be in a version of koha where the patch that introduces the bug is present (it is present in master since Jul 8 2021 (it is present in 21.06.00.046) and will be pushed in 21.11.00) 1- Create (or find) a subscription for a biblio record and select the option "Create an item record when receiving this serial" 2- Be sure to have at least one mandatory subfield that is filed with a select input in the framework used by the biblio record. (ex: 995$b, 995$c or 995$e in unimarc; 952$a, 952$b or 952$c in marc21) 3- From the subscription-detail page click on "Receive" 4- Change the status to "Arrived" and fill the item form that appears. 5- Click on "Click to add item" below "Supplemental issue" and fill the item form that appears. 6- Click on "Save" 7- Check that an error box appear with the message " Form not submitted because of the following problem(s) 1 mandatory fields empty (highlighted)" (the number can be different according to the number of concerned subfields) 8- Apply the patch 9- Repeat step 3 to 6 10- Check that no error appear and that your item has been created -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:48:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:48:27 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-53pAWbVBYO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 --- Comment #3 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136406 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136406&action=edit Bug 31007: Fix CheckMandatorySubfields with select fields for supplement issue The select field validation fails for supplemental issues in serials-edit.tt. Test plan inspired from Bug 29496 : Test plan: 0- Be sure to be in a version of koha where the patch that introduces the bug is present (it is present in master since Jul 8 2021 (it is present in 21.06.00.046) and will be pushed in 21.11.00) 1- Create (or find) a subscription for a biblio record and select the option "Create an item record when receiving this serial" 2- Be sure to have at least one mandatory subfield that is filed with a select input in the framework used by the biblio record. (ex: 995$b, 995$c or 995$e in unimarc; 952$a, 952$b or 952$c in marc21) 3- From the subscription-detail page click on "Receive" 4- Change the status to "Arrived" and fill the item form that appears. 5- Click on "Click to add item" below "Supplemental issue" and fill the item form that appears. 6- Click on "Save" 7- Check that an error box appear with the message " Form not submitted because of the following problem(s) 1 mandatory fields empty (highlighted)" (the number can be different according to the number of concerned subfields) 8- Apply the patch 9- Repeat step 3 to 6 10- Check that no error appear and that your item has been created -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:48:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:48:46 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-rACGajU9Fn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136405|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:48:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:48:54 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-XdWS9Lr9HQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:52:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:52:24 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-7k3IRlWIbg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 00:52:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 22:52:28 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-L78SGyNbwi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136406|0 |1 is obsolete| | --- Comment #4 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136407 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136407&action=edit Bug 31007: Fix CheckMandatorySubfields with select fields for supplement issue The select field validation fails for supplemental issues in serials-edit.tt. Test plan inspired from Bug 29496 : Test plan: 0- Be sure to be in a version of koha where the patch that introduces the bug is present (it is present in master since Jul 8 2021 (it is present in 21.06.00.046) and will be pushed in 21.11.00) 1- Create (or find) a subscription for a biblio record and select the option "Create an item record when receiving this serial" 2- Be sure to have at least one mandatory subfield that is filed with a select input in the framework used by the biblio record. (ex: 995$b, 995$c or 995$e in unimarc; 952$a, 952$b or 952$c in marc21) 3- From the subscription-detail page click on "Receive" 4- Change the status to "Arrived" and fill the item form that appears. 5- Click on "Click to add item" below "Supplemental issue" and fill the item form that appears. 6- Click on "Save" 7- Check that an error box appear with the message " Form not submitted because of the following problem(s) 1 mandatory fields empty (highlighted)" (the number can be different according to the number of concerned subfields) 8- Apply the patch 9- Repeat step 3 to 6 10- Check that no error appear and that your item has been created https://bugs.koha-community.org/show_bug.cgi?id=31007 Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 01:20:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 23:20:24 +0000 Subject: [Koha-bugs] [Bug 31008] Long-terms support version of Koha In-Reply-To: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31008-70-6qqMRo8qRl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31008 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Alias| |LTS, version, of, Koha URL| |https://wiki.koha-community | |.org/wiki/LTS_workflow_prop | |osal --- Comment #1 from David Nind <david at davidnind.com> --- This was discussed at the Development IRC meeting on 8 June 2022. Meeting log: https://meetings.koha-community.org/2022/development_irc_meeting_8_june_2022.2022-06-08-20.59.log.html#l-134 Meeting minutes: https://meetings.koha-community.org/2022/development_irc_meeting_8_june_2022.2022-06-08-20.59.html General agreement was reached that: 1. LTS = 2.5 to 3 years 2. Start with oldstable (which is now 21.11) 3. LTS maintainer role for each cycle (there is no expectation that this is same person for up to three years - can be/preferable that it is someone different each cycle) 4. Mandate = security + things that are broken (APIs (external), dependencies (such as Elasticsearch), etc) + essential backports only once past oldoldstable 5. Irregular release - only when something is needed once past oldoldstable 6. Let everyone know what LTS is and what it means for support (website, mailing list, manual section on supported versions, etc) For the next 21.11 release indicate that it is proposed that 21.11 becomes the first (next?) LTS release - we would confirm or otherwise at next development meeting. Actions to take (so far): 1. Create bug 2. Seek feedback on development mailing list 3. Agree at next available development IRC meeting 4. Once agreed: . Update website . Message to general mailing list . Add role for LTS release maintainer for the next cycle (23.05) . Installation notes . Manual section on supported versions -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 01:20:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 23:20:50 +0000 Subject: [Koha-bugs] [Bug 31008] Long-terms support version of Koha In-Reply-To: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31008-70-SSKFgokHCZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31008 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 01:54:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 23:54:37 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-FAmnCEwTHc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #11 from David Cook <dcook at prosentient.com.au> --- (In reply to Nick Clemens from comment #10) > Our IDs all seem to be INT(11) in the DB - would it be reasonable to zero > pad our ids into a new column to fix the sorting? Zero padding the ID is smart thinking I reckon. In theory, we wouldn't need a new DB column. We'd just need to add something like the following to our Zebra indexing XSLT for a new custom index (e.g. Local-number-sort): <xsl:value-of select='format-number(1, "00000000000")' /> I think to update "./etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl", we'd need to update the template "handle-index-subfields" in ./etc/zebradb/xsl/koha-indexdefs-to-zebra.xsl -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 01:58:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 21 Jun 2022 23:58:21 +0000 Subject: [Koha-bugs] [Bug 31008] Long-terms support version of Koha In-Reply-To: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31008-70-kqH6ZWryXg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31008 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 02:01:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 00:01:47 +0000 Subject: [Koha-bugs] [Bug 31008] Long-terms support version of Koha In-Reply-To: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31008-70-dpQ82l7WRt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31008 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Alias|Koha, LTS, of, version | --- Comment #2 from David Nind <david at davidnind.com> --- Message sent to development mailing list: https://lists.koha-community.org/pipermail/koha-devel/2022-June/047143.html Added to the agenda for the 22 June 2022 Development IRC meeting - probably more as a progress report, as insufficient time provided to comment: https://wiki.koha-community.org/wiki/Development_IRC_meeting_22_June_2022 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 02:10:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 00:10:34 +0000 Subject: [Koha-bugs] [Bug 31004] MS Teams notifications In-Reply-To: <bug-31004-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31004-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31004-70-CPArRXNrFv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31004 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #1 from David Cook <dcook at prosentient.com.au> --- That's a really interesting idea. I'm guessing it would be in a chat rather than a channel... I suppose you'd need to create a new chat and then save the ID in Koha to re-use? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 02:14:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 00:14:09 +0000 Subject: [Koha-bugs] [Bug 31002] Add ability to send notices over instant messaging services In-Reply-To: <bug-31002-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31002-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31002-70-DfqwT1HQW7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31002 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #1 from David Cook <dcook at prosentient.com.au> --- (In reply to Martin Renvoize from comment #0) > I think we could work on the core infrastructure on one bug and then enable > integrations via drivers or plugins similar to how SMS is dealt with. That's what I was thinking when reading bug 31004. I mean the SMS is just another API anyway. (On a side note, does Koha already support web push notifications? I don't love web push notifications in general but why not add all the things...) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 02:15:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 00:15:05 +0000 Subject: [Koha-bugs] [Bug 20235] Telegram notifications In-Reply-To: <bug-20235-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20235-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20235-70-dZsvTBgBVw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20235 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #7 from David Cook <dcook at prosentient.com.au> --- Did you end up doing this locally in the end, Lari? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 02:27:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 00:27:51 +0000 Subject: [Koha-bugs] [Bug 30999] Add a script to manage plugins from the command line In-Reply-To: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30999-70-Uv8qFnty18@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30999 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=28498 CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 02:27:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 00:27:51 +0000 Subject: [Koha-bugs] [Bug 28498] Add CLI counterpart for plugin actions In-Reply-To: <bug-28498-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28498-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28498-70-6sb9kqERPO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28498 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30999 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 02:29:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 00:29:40 +0000 Subject: [Koha-bugs] [Bug 30999] Add a script to manage plugins from the command line In-Reply-To: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30999-70-xYu66ts3zB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30999 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=25671 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 02:29:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 00:29:40 +0000 Subject: [Koha-bugs] [Bug 25671] Install 1 Koha plugin for X Koha instances using the CLI In-Reply-To: <bug-25671-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25671-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25671-70-GsXlJmlVN0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25671 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30999 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 02:31:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 00:31:50 +0000 Subject: [Koha-bugs] [Bug 30999] Add a script to manage plugins from the command line In-Reply-To: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30999-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30999-70-ULbyjCTNrI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30999 --- Comment #4 from David Cook <dcook at prosentient.com.au> --- I'd be interested in testing a fully featured management script as well. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 04:37:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 02:37:19 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-ti1nPwzbAf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 --- Comment #4 from David Cook <dcook at prosentient.com.au> --- "OpacHiddenItems" is such a pain... I was thinking that it's too bad that we don't just save a "hidden" status when items are saved, but then I remembered that you can update "OpacHiddenItems" at any time, and that can dramatically change which records are hidden, and it would be expensive to re-calculate a stored state for every record as a result... But with C4::Circulation::GetTopIssues, we need to process every record fetched to see if it's hidden... I suppose we could fetch $count and if X records are hidden then we need to fetch at least X new records (based off the $count offset) to try to fill in the gaps. It wouldn't be very efficient but it might be the only way of working with the current "hidden" model... -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 04:39:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 02:39:33 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-0LC0C3kY1o@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 --- Comment #5 from David Cook <dcook at prosentient.com.au> --- Technically, using multiple queries could also mean we could run into a race condition but I can't think of any other way of doing it. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 04:40:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 02:40:14 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-OkPOZWgXMA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 --- Comment #6 from David Cook <dcook at prosentient.com.au> --- (In reply to David Cook from comment #5) > Technically, using multiple queries could also mean we could run into a race > condition but I can't think of any other way of doing it. Actually, one safeguard against that would be to initially pre-fetch X records more than we need I suppose... -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 04:46:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 02:46:14 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-MTUFvDu8ZR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 --- Comment #7 from David Cook <dcook at prosentient.com.au> --- Actually... I have another idea... https://wiki.koha-community.org/wiki/OpacHiddenItems We could read that YAML into a Perl hash and then create a DBIC query or use SQL::Abstract... -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 04:47:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 02:47:56 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-iR5dFYfJvg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 --- Comment #8 from David Cook <dcook at prosentient.com.au> --- Of course, that wouldn't take into account "OpacSuppression" which isn't stored anywhere except the MARCXML. Maybe a database column would make sense for "OpacSuppression"... -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 07:31:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 05:31:46 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-hDXyCzpCPW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 --- Comment #9 from David Cook <dcook at prosentient.com.au> --- (In reply to David Cook from comment #7) > Actually... I have another idea... > > https://wiki.koha-community.org/wiki/OpacHiddenItems > > We could read that YAML into a Perl hash and then create a DBIC query or use > SQL::Abstract... Ah the syspref "OpacHiddenItemsExceptions" exists... that makes it even more fun. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 07:37:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 05:37:27 +0000 Subject: [Koha-bugs] [Bug 18989] Allow displaying biblios with all items hidden by OpacHiddenItems In-Reply-To: <bug-18989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18989-70-B8Ubmyqn2E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18989 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #41 from David Cook <dcook at prosentient.com.au> --- (In reply to Tomás Cohen Arazi from comment #1) > Only for the record,the way removal is implemented makes search results show > 19 records instead of 20 (if one record is removed). > > We should definitely leverage on the search engine for this kind of stuff. +1 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 07:38:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 05:38:09 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-m70zgyNqyN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=18989 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 07:38:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 05:38:09 +0000 Subject: [Koha-bugs] [Bug 18989] Allow displaying biblios with all items hidden by OpacHiddenItems In-Reply-To: <bug-18989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18989-70-iaR1dynY3d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18989 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=19704 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 07:46:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 05:46:26 +0000 Subject: [Koha-bugs] [Bug 18989] Allow displaying biblios with all items hidden by OpacHiddenItems In-Reply-To: <bug-18989-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18989-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18989-70-5h8KCbGcww@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18989 --- Comment #42 from David Cook <dcook at prosentient.com.au> --- (In reply to Tomás Cohen Arazi from comment #1) > Only for the record,the way removal is implemented makes search results show > 19 records instead of 20 (if one record is removed). > > We should definitely leverage on the search engine for this kind of stuff. Although there are times like bug 19704 where the search engine isn't involved... and sysprefs like "OpacHiddenItemsExceptions" add the patron category to the calculation which might make that search engine idea impossible. I reckon the whole OpacHidden* needs an overhaul... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 10:50:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 08:50:10 +0000 Subject: [Koha-bugs] [Bug 30838] to_address is misleading for sms transports In-Reply-To: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30838-70-M4n9a4Y4FM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30838 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 11:22:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 09:22:26 +0000 Subject: [Koha-bugs] [Bug 23073] wiki.koha-community.org needs updating to a later version In-Reply-To: <bug-23073-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23073-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23073-70-bT02AcjAQa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23073 --- Comment #24 from Thomas Dukleth <td-koha-bugs at agogme.com> --- Important bug fix for installing a MediaWiki compliant stable version of PHP Composer completed a couple of months ago and finally enough incremental changes for excluding files inappropriate for version control through present and past commits. Carefully examining past versions for uniformity of version control exclusion was tedious but there should be no significant distractions for a file disappearing as outside the scope of version control and then reappearing in a later version when exclusion was missed. Files excluded as inappropriate for version control are currently available at https://test01.agogme.com/koha_migrate_mwiki_db_and_upgrade_test.tgz . Code and configuration files to test migrating the MediaWiki database and upgrading the wiki are currently available at git://test01.agogme.com/koha-migrate-mwiki-db-and-upgrade-test.git . Anyone interested in testing the code would need to separately obtain a full dump of the Koha Wiki to avoid publicly compromising Koha Wiki usernames and passwords which are not contained in the published archive. The issue of resetting wgSecretKey in LocalSettings.php could be avoided by obtaining a copy of the Koha Wiki LocalSettings.php . I have prepared a special nonpublic tar archive for Koha developers interested in testing. Mason James has been working on code to automatically validate the database migration. Test instances have been mostly up for over a year. They may frequently go down or become slow when: regenerated for code testing; or excess RAM or CPU use running some memory intensive processes unrelated to Koha on the VPS. Non-Koha use of the VPS starting too many processes still occasionally leads the OOM killer to stop mysqld for which I should add a monitoring and restart service for when I forget to check after such excess RAM usage. Reinstalled test instance of the Koha Wiki using Postgres at https://koha-mw-pg-test01.agogme.com/ . Koha test wiki migrated to MySQL at https://koha-mw-my-test01.agogme.com/ . Koha MySQL test wiki upgraded to MediaWiki 1.35 LTS at https://koha-mw-my-test01-upgr.agogme.com/ . Please note that some adjustment of the upgraded wiki, such as the superseded language change template at the bottom of the home page, may be outside the ordinary scope of an automated upgrade process and require manual correction. The job queue may be full for an extended period after reinstalling or upgrading a test wiki instance because reindexing is necessary. Ordering of search query result set improves with actual use but appears to be ordered by page creation initially after reindexing rather than page modification or other potentially more useful relevancy ranking which develops over time as the wiki instance is used. >From the current changelog. In README.txt ------------- Clarified language and instruction variously. Added an explanation in installation instructions about obtaining files from a current git repository, an archive of files inappropriate for version control, database dump, etc. Added guidance in installation instructions to clarify what files currently need to be copied manually and what are examples needing modification to previous guidance about what is installed automatically. Added clarification for webserver configuration including testing Apache and Nginx at the same time with different webserver ports. Added the importance of starting the Perl script koha_migrate_mwiki_db_and_upgrade.pl from the shell script koha_migrate_mwiki_db_and_upgrade_startup.sh to provide better management and needed logging. Added a note to the configuration section noting that each of the main scripts has minimal internal configuration variables for finding the main configuration and other scripts. Clarified function of MediaWiki RESTBase in relation to VisualEditor extension. VisualEditor works fine without any of the subtle difficulties of configuring RESTBase to respond when proxied through the webserver. The core extension Parsoid is sufficient to run VisualEditor with no installation or configuration needed. The only disadvantage without RESTBase is that diffs may have some extra whitespace or such for imperfect diffs if switching back and forth between VisualEditor and WikiText editor before saving. Given the difficulties of configuring the wiki editor and Wikitext source editor. Choose elude many people. Added a section for configuration sharing security giving guidance and a script for substituting example values for security sensitive values in some configuration files when committing to public source code repositories. In koha_migrate_mwiki_db_and_upgrade_startup.sh --------------------------------------- Added bash script to control startup of migration and installation to log STDOUT and STDERR. In koha_migrate_mwiki_db_and_upgrade.pl --------------------------------------- Corrected for temporary file inadvertantly created when creating download directory for upgraded MediaWiki installation archive. Corrections for moving binary files and other files not suitable for version control to a separate archive from version control files. Improved elapsed time reporting. Standard date and time reporting. In LocalSettings.php -------------------- Commented out RESTBase configuration which has subtle configuration difficulties and substituted Parsoid configuration without RESTBase as sufficient for VisualEditor extension. Added localhost specification for page editing as the editor runs on localhost. Configuring page editing to specify the IP address from which the editor runs corrects for a problem otherwise preventing editing of spam protected pages with editing restrictions such as we have on the home page to prevent newly created accounts from immediately editing the home page. SearchBox.mustache ------------------ Changed the category excluded from the SimpleSearch form for dynamically archived content to Obsolete which has already been in use. koha_mwiki_instances_postinstall.sh ----------------------------------- Corrected installation of PHP composer to function more resiliantly in a script and set version to a stable point which avoids errors with MediaWiki. In etc/apache2 -------------- Changed listen port numbers for example Apache 2 configuration files to allow testing along with testing Nginx. In etc/nginx ------------ Example nginx configuration files. In koha_migrate_mwiki_db_and_upgrade_FOREXPORT.sh --------------------------------------- Added bash script to remove nonpublic elements from config files substituting public configuration examples for each of the nonpublic values in the following configuration line. The preceding line with a public configuration example starts with "# FOREXPORT # ". -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 11:32:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 09:32:50 +0000 Subject: [Koha-bugs] [Bug 31009] New: Claims list take too much times (timeout when you have so many claims) on serials Message-ID: <bug-31009-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31009 Bug ID: 31009 Summary: Claims list take too much times (timeout when you have so many claims) on serials Change sponsored?: --- Product: Koha Version: 19.11 Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Serials Assignee: koha-bugs at lists.koha-community.org Reporter: thibaud.guillot at biblibre.com QA Contact: testopia at bugs.koha-community.org To view claims, when clicked, an SQL query is performed to search for claims by vendor and build a select list. If you have so many claims, it takes too long or even creates a timeout problem. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 11:47:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 09:47:01 +0000 Subject: [Koha-bugs] [Bug 31001] "CGI::param called in list context" warning in basket.pl flooding error log In-Reply-To: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31001-70-IMsRrDm1pr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31001 Peter Vashchuk <stalkernoid at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |25790 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 [Bug 25790] [OMNIBUS] warnings removal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 11:47:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 09:47:01 +0000 Subject: [Koha-bugs] [Bug 25790] [OMNIBUS] warnings removal In-Reply-To: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25790-70-2WzMZCyoNn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 Peter Vashchuk <stalkernoid at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |31001 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31001 [Bug 31001] "CGI::param called in list context" warning in basket.pl flooding error log -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 11:55:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 09:55:52 +0000 Subject: [Koha-bugs] [Bug 31001] "CGI::param called in list context" warning in basket.pl flooding error log In-Reply-To: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31001-70-BRvu2PrcR5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31001 Andrew Nugged <nugged at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nugged at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:00:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:00:18 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-L7ylFDt3QK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 --- Comment #21 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Thanks guys, sorry I didn't get back to this one. Yes, I can take care of batchRevert next unless someone else wants to jump on that one. As for other failures I'm wondering if to some extent that's looked at in Bug 29325 - commit_file.pl error 'Already in a transaction'? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:05:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:05:37 +0000 Subject: [Koha-bugs] [Bug 30991] [% ELSE %]0[% END %] will break translations if used for assigning variables In-Reply-To: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30991-70-1USFLT9Wm2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 --- Comment #1 from Alex Buckley <alexbuckley at catalyst.net.nz> --- Created attachment 136408 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136408&action=edit Bug 30991: Fix remaining instances of [% ELSE %]0[% END %] in templates The construct of [% ELSE %]0[% END %] breaks translations as it is translated as [% ELSE %][% END %]. Note: No 0 in the ELSE statement. This patchset either removes occurances of a lone 0 in template ELSE statements, or splits it over multiple lines so the 0 is not removed in the translated templates. Test plan: 1. Install the en-NZ translation 2. Search the translated templates for '[% ELSE %][% END %]' and confirm there are are instances of that 3. Apply patch 4. Update your en-NZ translation 5. Repeat step 2 and confirm there are no more instances of [% ELSE %][% END %] in the translated templates Note: I removed the [% ELSE %] statement from opac-bottom.inc as that statement was empty in the en translation so it didn't look to be needed. Sponsored-by: Catalyst IT, New Zealand -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:09:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:09:28 +0000 Subject: [Koha-bugs] [Bug 31009] Claims list take too much times (timeout when you have so many claims) on serials In-Reply-To: <bug-31009-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31009-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31009-70-SpwMhMgFsy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31009 Thibaud Guillot <thibaud.guillot at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|19.11 |master -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:11:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:11:51 +0000 Subject: [Koha-bugs] [Bug 30991] [% ELSE %]0[% END %] will break translations if used for assigning variables In-Reply-To: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30991-70-tF8gszSP6E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 Alex Buckley <alexbuckley at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |alexbuckley at catalyst.net.nz |ity.org | Change sponsored?|--- |Sponsored Status|NEW |Needs Signoff CC| |alexbuckley at catalyst.net.nz -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:15:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:15:21 +0000 Subject: [Koha-bugs] [Bug 31009] Claims list take too much times (timeout when you have so many claims) on serials In-Reply-To: <bug-31009-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31009-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31009-70-sRIu8fBqjW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31009 Thibaud Guillot <thibaud.guillot at biblibre.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. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:15:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:15:24 +0000 Subject: [Koha-bugs] [Bug 31009] Claims list take too much times (timeout when you have so many claims) on serials In-Reply-To: <bug-31009-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31009-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31009-70-dRDSfGiVPZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31009 --- Comment #1 from Thibaud Guillot <thibaud.guillot at biblibre.com> --- Created attachment 136409 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136409&action=edit Bug 39001: Improve perf to get claims list by vendor To view claims, when clicked, an SQL query is performed to search for claims by vendor and build a select list. If you have so many claims, it takes too long or even creates a timeout problem. Test plan: 1) Be sure to have vendors and claims on serials 2) Click on "claims", the more claims you have, the longer it will take to appear 3) Apply patch 4) Restart step 2n -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:16:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:16:44 +0000 Subject: [Koha-bugs] [Bug 31009] Claims list take too much times (timeout when you have so many claims) on serials In-Reply-To: <bug-31009-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31009-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31009-70-VsiLMu7eSZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31009 --- Comment #2 from Thibaud Guillot <thibaud.guillot at biblibre.com> --- Comment on attachment 136409 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136409 Bug 39001: Improve perf to get claims list by vendor >From 7dad0a4dbdf0832020ba80e74e7d7536d7f689c5 Mon Sep 17 00:00:00 2001 >From: Thibaud Guillot <thibaud.guillot at biblibre.com> >Date: Tue, 14 Jun 2022 14:54:04 +0200 >Subject: [PATCH] Bug 39001: Improve perf to get claims list by vendor > >To view claims, when clicked, an SQL query is performed to search for >claims by vendor and build a select list. If you have so many claims, it >takes too long or even creates a timeout problem. > >Test plan: > >1) Be sure to have vendors and claims on serials >2) Click on "claims", the more claims you have, the longer it will >take to appear >3) Apply patch >4) Restart step 2 > >https://bugs.koha-community.org/show_bug.cgi?id=31009 >--- > C4/Serials.pm | 3 ++- > serials/claims.pl | 1 - > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/C4/Serials.pm b/C4/Serials.pm >index 93c8a759d9..c63363f1ad 100644 >--- a/C4/Serials.pm >+++ b/C4/Serials.pm >@@ -134,7 +134,7 @@ sub GetSuppliersWithLateIssues { > my $dbh = C4::Context->dbh; > my $statuses = join(',', ( LATE, MISSING_STATUSES, CLAIMED ) ); > my $query = qq| >- SELECT DISTINCT id, name >+ SELECT COUNT(*) as count, id, name > FROM subscription > LEFT JOIN serial ON serial.subscriptionid=subscription.subscriptionid > LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id >@@ -144,6 +144,7 @@ sub GetSuppliersWithLateIssues { > OR serial.STATUS IN ( $statuses ) > ) > AND subscription.closed = 0 >+ GROUP BY aqbooksellers.id > ORDER BY name|; > return $dbh->selectall_arrayref($query, { Slice => {} }); > } >diff --git a/serials/claims.pl b/serials/claims.pl >index 5b5479f749..8c8e85f27c 100755 >--- a/serials/claims.pl >+++ b/serials/claims.pl >@@ -47,7 +47,6 @@ my ($template, $loggedinuser, $cookie) > # supplierlist is returned in name order > my $supplierlist = GetSuppliersWithLateIssues(); > for my $s (@{$supplierlist} ) { >- $s->{count} = scalar GetLateOrMissingIssues($s->{id}); > if ($supplierid && $s->{id} == $supplierid) { > $s->{selected} = 1; > } >-- >2.25.1 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:19:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:19:28 +0000 Subject: [Koha-bugs] [Bug 31010] New: BatchRevert does not deal with indexation correctly Message-ID: <bug-31010-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31010 Bug ID: 31010 Summary: BatchRevert does not deal with indexation correctly Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org This bug came up during QA of bug 30822, we're not yet properly handling the batchRevert indexing jobs. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:19:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:19:49 +0000 Subject: [Koha-bugs] [Bug 31010] BatchRevert does not deal with indexation correctly In-Reply-To: <bug-31010-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31010-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31010-70-d6upn5b3Ko@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31010 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |27344 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27344 [Bug 27344] Implement Elastic's update_index_background using Koha::BackgroundJob -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:19:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:19:49 +0000 Subject: [Koha-bugs] [Bug 27344] Implement Elastic's update_index_background using Koha::BackgroundJob In-Reply-To: <bug-27344-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27344-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27344-70-CRWecirERu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27344 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31010 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31010 [Bug 31010] BatchRevert does not deal with indexation correctly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 12:20:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 10:20:49 +0000 Subject: [Koha-bugs] [Bug 31010] BatchRevert does not deal with indexation correctly In-Reply-To: <bug-31010-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31010-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31010-70-fjVYZC75Zk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31010 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 13:26:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 11:26:14 +0000 Subject: [Koha-bugs] [Bug 31008] Long Term Support (LTS) version of Koha In-Reply-To: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31008-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31008-70-VAxsC8Mqh9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31008 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Long-terms support version |Long Term Support (LTS) |of Koha |version of Koha -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 14:28:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 12:28:24 +0000 Subject: [Koha-bugs] [Bug 31011] New: Make hold reminders respect patron's language Message-ID: <bug-31011-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31011 Bug ID: 31011 Summary: Make hold reminders respect patron's language Change sponsored?: --- Product: Koha Version: 20.11 Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Hold requests Assignee: koha-bugs at lists.koha-community.org Reporter: magnus at libriotech.no QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com When running misc/cronjobs/holds/holds_reminder.pl it looks like borrowers.lang is not respected. The only code I can see that relates to language is this: # FIXME What if we don't want to default if the translated template does not exist? my $template_exists = Koha::Notice::Templates->find_effective_template( { module => 'reserves', code => $lettercode, branchcode => $branchcode, lang => 'default', } ); As far as I can see, the "default" template is always used? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 14:42:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 12:42:44 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-kaoLsKiGzz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 14:52:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 12:52:19 +0000 Subject: [Koha-bugs] [Bug 31012] New: Quote import tool should send the user back to quotes pages after importing Message-ID: <bug-31012-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31012 Bug ID: 31012 Summary: Quote import tool should send the user back to quotes pages after importing Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Tools Assignee: koha-bugs at lists.koha-community.org Reporter: caroline.cyr-la-rose at inlibro.com QA Contact: testopia at bugs.koha-community.org This comes from Bug 30903 (comment 6). I was told to make a new report for the usability problem. 3) The quotes seem to have been imported, if I trust the confirmation message, but I stayed on the same page and the two options available to me are "Save quotes", which I already clicked (multiple times because it was slow) and "Cancel import", which, if clicked, asks me a confirmation if I really want to cancel and sends me back to the import page with the Browse/Choose file button. I think once the quotes are imported, we should be sent back to the main QOTD editor page with the list of quotes already in the system. Here is the full test plan from Bug 30903 1- Download the attached csv or create a comma-separated csv with two columns, one for source and one for text (no headers) 2- Go to Tools > Edit quotes for QOTD feature 3- Click on Import quotes --> Note that the layout of the page is a bit strange... there is a big space between the title of the page and the first content box, and there is no space above the browse button 4- Click browse and choose the CSV file --> The quotes should be imported in an editable table, you can click on either the source or text of a quote to change it (on my browser the editable field is really small, I wonder if it's the page or my browser (Firefox) or my OS (Ubuntu)) 5- Click Save quote --> This is where this problem occurs, it is not clear what the user is supposed to do -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 14:52:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 12:52:37 +0000 Subject: [Koha-bugs] [Bug 31012] Quote import tool should send the user back to quotes pages after importing In-Reply-To: <bug-31012-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31012-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31012-70-992m5Z7g9E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31012 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30903 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 [Bug 30903] CSV import of quotes broken -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 14:52:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 12:52:37 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-jggcZJ56RF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31012 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31012 [Bug 31012] Quote import tool should send the user back to quotes pages after importing -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 14:53:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 12:53:56 +0000 Subject: [Koha-bugs] [Bug 31012] Quote import tool should send the user back to quotes pages after importing In-Reply-To: <bug-31012-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31012-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31012-70-bdxPaSJtA2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31012 --- Comment #1 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Comment 14 on Bug 30903 Same for me, please report it in a new report. Clicking on "Save quotes" will import them again, clicking on "Cancel import" does not revert the import. I think think after clicking on "Save quotes" we should hide those buttons and propose a link to come back to quotes table. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 14:58:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 12:58:20 +0000 Subject: [Koha-bugs] [Bug 29173] Button "replace authority record via Z39/50/SRU" doesn't pre-fill In-Reply-To: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29173-70-ugIdBzT1ar@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29173 Thibaud Guillot <thibaud.guillot at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #132443|0 |1 is obsolete| | --- Comment #28 from Thibaud Guillot <thibaud.guillot at biblibre.com> --- Created attachment 136410 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136410&action=edit Bug 29173: Fixed pre-filling of the search form from the "Replace record with ZR39.50/SRU" (Authority page detail) Now this action has the same pre-filling behaviour as the "Edit" -> "Edit Record" -> "Replace Record via Z39.50/SRU Search" action. Author Personal - Author Meeting/Conf. - Uniform Title and Subject are filled in if the subfield contains data (like the "Edit->Replace" action). Unimarc and Marc21 specificities are supported. Test Plan : 1) You must have a Z39.50/SRU server for authorities 2) Go to an authority detail page (Author - Uniform title - Subject) 3) First go to "Edit"-> "Edit record" -> "Replace record via..." 4) See that form is prefilled with form data 5) Go back and now click on "Replace Record.." directly 6) See that form is also prefilled with data now -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:00:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:00:41 +0000 Subject: [Koha-bugs] [Bug 30250] Configure when to apply framework defaults when cataloguing In-Reply-To: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30250-70-e58bjrIwei@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30250 Magnus Enger <magnus at libriotech.no> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |magnus at libriotech.no --- Comment #10 from Magnus Enger <magnus at libriotech.no> --- Will this development affect this scenario? I have an existing record in Koha, and a framework that says 942$c should have a default value of "BK". Then I choose to "Replace record via Z39.50/SRU". - On 20.11.09 the incoming record gets the default 942$c = BK - On 21.11.06 and master it does not get 942$c = BK -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:01:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:01:11 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-wTiq0Qbuwu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:01:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:01:14 +0000 Subject: [Koha-bugs] [Bug 30822] BatchCommit does not deal with indexation correctly In-Reply-To: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30822-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30822-70-vS8MM2jln5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30822 --- Comment #22 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:07:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:07:24 +0000 Subject: [Koha-bugs] [Bug 29173] Button "replace authority record via Z39/50/SRU" doesn't pre-fill In-Reply-To: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29173-70-VV67TXmnC2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29173 Thibaud Guillot <thibaud.guillot at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:07:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:07:28 +0000 Subject: [Koha-bugs] [Bug 29173] Button "replace authority record via Z39/50/SRU" doesn't pre-fill In-Reply-To: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29173-70-sB0ZfArUBx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29173 Thibaud Guillot <thibaud.guillot at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136410|0 |1 is obsolete| | --- Comment #29 from Thibaud Guillot <thibaud.guillot at biblibre.com> --- Created attachment 136411 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136411&action=edit Bug 29173: Fixed pre-filling of the search form from the "Replace record with ZR39.50/SRU" (Authority page detail) Now this action has the same pre-filling behaviour as the "Edit" -> "Edit Record" -> "Replace Record via Z39.50/SRU Search" action. Author Personal - Author Meeting/Conf. - Uniform Title and Subject are filled in if the subfield contains data (like the "Edit->Replace" action). Unimarc and Marc21 specificities are supported. Test Plan : 1) You must have a Z39.50/SRU server for authorities 2) Go to an authority detail page (Author - Uniform title - Subject) 3) First go to "Edit"-> "Edit record" -> "Replace record via..." 4) See that form is prefilled with form data 5) Go back and now click on "Replace Record.." directly 6) See that form is also prefilled with data now -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:18:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:18:50 +0000 Subject: [Koha-bugs] [Bug 31013] New: Reserved words as branchcodes cause search error in Elasticsearch Message-ID: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 Bug ID: 31013 Summary: Reserved words as branchcodes cause search error in Elasticsearch Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Searching - Elasticsearch Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com To recreate: 0 - Be using Elasticsearch with Koha 1 - Add a new branch code:OR name:Orly 2 - Add an item to this branch 3 - Use advanced search to limit search to only Orly 4 - The search fails! -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:21:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:21:06 +0000 Subject: [Koha-bugs] [Bug 31014] New: Minor UI problems in QOTD editor tool Message-ID: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31014 Bug ID: 31014 Summary: Minor UI problems in QOTD editor tool Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: caroline.cyr-la-rose at inlibro.com QA Contact: testopia at bugs.koha-community.org These problems were reported in Bug 30903 but were deemed too minor to be in that bug, so I was told to make a new report for these. Original test plan from Bug 30903 1- Download the attached csv or create a comma-separated csv with two columns, one for source and one for text (no headers) 2- Go to Tools > Edit quotes for QOTD feature 3- Click on Import quotes --> Note that the layout of the page is a bit strange... there is a big space between the title of the page and the first content box, and there is no space above the browse button 4- Click browse and choose the CSV file --> The quotes should be imported in an editable table, you can click on either the source or text of a quote to change it (on my browser the editable field is really small, I wonder if it's the page or my browser (Firefox) or my OS (Ubuntu)) 5- Click Save quotes Points to correct - At step 3, the browse button is still weirdly placed, at the top of the box - At step 4, the editable fields are very small (like there is no padding around the text?) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:21:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:21:09 +0000 Subject: [Koha-bugs] [Bug 31013] Reserved words as branchcodes cause search error in Elasticsearch In-Reply-To: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31013-70-8qvMISDXe3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 Nick Clemens <nick at bywatersolutions.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. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:21:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:21:13 +0000 Subject: [Koha-bugs] [Bug 31013] Reserved words as branchcodes cause search error in Elasticsearch In-Reply-To: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31013-70-enFT2Oha7o@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 --- Comment #1 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136412 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136412&action=edit Bug 31013: Quote branchcodes in Elasticsearch limits This patch adds quoting when handling branchcodes in searching in order to prevent errors when branchcodes are reserved words in ES To test: 0 - Be using Elasticsearch with Koha 1 - Add a new branch code:OR name:Orly 2 - Add an item to this branch 3 - Use advanced search to limit search to only Orly 4 - Oh really bad, the search fails! 5 - Apply patch 6 - Repeat search 7 - Oh really good, the search succeeds 8 - prove t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:23:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:23:05 +0000 Subject: [Koha-bugs] [Bug 31014] Minor UI problems in QOTD editor tool In-Reply-To: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31014-70-qbynzlLDwN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31014 --- Comment #1 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Created attachment 136413 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136413&action=edit Quote uploader tool (step 3) Screenshot for what I see on step 3 currently (with patch for 30903). The Browse button is at the top of the box. I'm using Firefox on Ubuntu 20.04 if that helps. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:24:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:24:45 +0000 Subject: [Koha-bugs] [Bug 17983] Add minutes loan to DiscreteCalendar In-Reply-To: <bug-17983-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-17983-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-17983-70-w4bt9isko6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17983 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131931|0 |1 is obsolete| | Attachment #131932|0 |1 is obsolete| | --- Comment #28 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136414 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136414&action=edit Bug 17983: Add minutes loan to DiscreteCalendar This is an additional feature to our new Discrete Calendar. Theses patches add the possibility to choose the loan unit as minutes in circulations rules. Test plan: - Apply patch of Bugzilla 17015 - Apply this patch. - Run test t/db_dependent/minutes_loan.t - Create new item type for the new rule. - Create circulation rule and fill the fields, make sure the unit is set to : minutes, choose the item type of the one created above.- - Checkout an item that follow the circulation rule and set due date in the past. - Run fines.pl. - Check if the correct amount was calculated. - Note: make sure to factor in the fine grace period if set and the system preference FinesIncludeGracePeriod.fixed patch tests and minor adjustments -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:24:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:24:50 +0000 Subject: [Koha-bugs] [Bug 17983] Add minutes loan to DiscreteCalendar In-Reply-To: <bug-17983-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-17983-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-17983-70-HM8DEICTUk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17983 --- Comment #29 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136415 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136415&action=edit Bug 17983: Add minutes loan to DiscreteCalendar This is an additional feature to our new Discrete Calendar. Theses patches add the possibility to choose the loan unit as minutes in circulations rules. Test plan: - Apply patch of Bugzilla 17015 - Apply this patch. - Run test t/db_dependent/minutes_loan.t - Create new item type for the new rule. - Create circulation rule and fill the fields, make sure the unit is set to : minutes, choose the item type of the one created above.- - Checkout an item that follow the circulation rule and set due date in the past. - Run fines.pl. - Check if the correct amount was calculated. - Note: make sure to factor in the fine grace period if set and the system preference FinesIncludeGracePeriod.fixed patch tests and minor adjustments -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:25:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:25:39 +0000 Subject: [Koha-bugs] [Bug 31014] Minor UI problems in QOTD editor tool In-Reply-To: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31014-70-LOCFGmQFvY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31014 --- Comment #2 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Created attachment 136416 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136416&action=edit Editable quotes table (step 4) Screenshot for what I see on step 4 currently (with patch for 30903). The editable fields are very small. Compare to what is was before https://koha-community.org/manual/20.11/en/html/_images/editquote.png I'm using Firefox on Ubuntu 20.04 if that helps. I'm pretty sure I'm the one who took the manual screenshot. It was also on Firefox, but probably Ubuntu 18.04 at the time. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:25:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:25:53 +0000 Subject: [Koha-bugs] [Bug 31014] Minor UI problems in QOTD editor tool In-Reply-To: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31014-70-Yk5ldCnplx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31014 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30903 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 [Bug 30903] CSV import of quotes broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:25:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:25:53 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-M0i2rNV8RL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31014 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31014 [Bug 31014] Minor UI problems in QOTD editor tool -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:27:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:27:08 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-2KDlUwPklu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 --- Comment #15 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- I created Bug 31012 for the usability problem after uploading the quotes. I created Bug 31014 for the UI problems reported in the description. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:34:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:34:46 +0000 Subject: [Koha-bugs] [Bug 31004] MS Teams notifications In-Reply-To: <bug-31004-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31004-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31004-70-ksLL93Qtx6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31004 --- Comment #2 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- I'm afraid I've not delved deep into the API yet to know.. it's a highly coveted feature for some of our customers when we asked for some blue sky thinking.. but so far no-one has sponsored it so it's at the end of my very long list of probono work. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:51:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:51:33 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-IUApDwMQzA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135542|0 |1 is obsolete| | --- Comment #37 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136417 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136417&action=edit Bug 25669: [alternate] Use include_type_name parameter in ES calls This patch includes the parameter: include_type_name on our ES calls It removes the deprecation warning we are seeing, and should allow using ES7 with no other chnages. For ES8 we will need to remove the hardcoded type, I would suggest a second patch, with a new syspref "ElasticsearchLegacyType" set to 'True' by default. Description can explain that this must be set to false, and data reindexed after upgrading to ES7 and before upgrading to ES8 - then we can drop this pref when we drop ES7 support When we drop ES6 support the pref can be set default true for upgrades, default 'false' for new installs Signed-off-by: Julian Maurice <julian.maurice at biblibre.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:51:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:51:38 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-Wcabo9X7dR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135543|0 |1 is obsolete| | --- Comment #38 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136418 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136418&action=edit Bug 25669: [alternate] Use include_type_name parameter in ES calls (small fixes) Bulk doesn't support include_type_name, update requirement to Search::Elasticseach at 6.80, and remove data type name from tests. Signed-off-by: Julian Maurice <julian.maurice at biblibre.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:53:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:53:02 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-QhDfaDpsz5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #39 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- All seems to be working well in tests, QA scripts are happy and the unit tests are passing. Passing QA.. nice work chaps. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:56:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:56:05 +0000 Subject: [Koha-bugs] [Bug 31013] Reserved words as branchcodes cause search error in Elasticsearch In-Reply-To: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31013-70-9QKs9zhlJr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136412|0 |1 is obsolete| | --- Comment #2 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136419 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136419&action=edit Bug 31013: Quote branchcodes in Elasticsearch limits This patch adds quoting when handling branchcodes in searching in order to prevent errors when branchcodes are reserved words in ES To test: 0 - Be using Elasticsearch with Koha 1 - Add a new branch code:OR name:Orly 2 - Add an item to this branch 3 - Use advanced search to limit search to only Orly 4 - Oh really bad, the search fails! 5 - Apply patch 6 - Repeat search 7 - Oh really good, the search succeeds 8 - prove t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:56:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:56:47 +0000 Subject: [Koha-bugs] [Bug 31013] Reserved words as branchcodes cause search error in Elasticsearch In-Reply-To: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31013-70-1xCp5pgm1c@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Status|Needs Signoff |Signed Off --- Comment #3 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Trivial and clear fix with unit tests included.. going straight for QA on this one. QA scripts are happy, testing proves the fix works, Unit tests all passing and changes make sense. Passing QA -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:56:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:56:53 +0000 Subject: [Koha-bugs] [Bug 31013] Reserved words as branchcodes cause search error in Elasticsearch In-Reply-To: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31013-70-bxHhAh46kS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:56:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:56:58 +0000 Subject: [Koha-bugs] [Bug 31013] Reserved words as branchcodes cause search error in Elasticsearch In-Reply-To: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31013-70-X4e8t7MX6i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 15:57:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 13:57:31 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-YEVOL7aV9I@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:02:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:02:35 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-X9ztGx4eEK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:02:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:02:39 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-zJkrItLq4k@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 --- Comment #1 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136420 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136420&action=edit Bug 30933: Database revision (new pref) Adds pref ListOwnerDesignated. Generalize description of ListOwnershipUponPatronDeletion a bit. Test plan: Run updatedatabase. Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:02:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:02:42 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-3UoOy8GO1k@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 --- Comment #2 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136421 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136421&action=edit Bug 30933: Change for patron->delete Test plan: Run t/db_dependent/Koha/Patrons.t Set pref ListOwnershipUponPatronDeletion to transfer. Set pref ListOwnerDesignated to some valid borrowernumber. Pick a user with public or shared list, delete from interface. Pick a user with public or shared list, delete by script. (*) Verify in both cases that new list owner is the designated one. (*) Tip: Create another branch. Move the patron to be deleted to that branch. And delete by script with: misc/cronjobs/delete_patons.pl -c -v -library YOUR_CODE Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:02:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:02:46 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-GbTCfiYe4X@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 --- Comment #3 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136422 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136422&action=edit Bug 30933: Adjust pref description, include ListOwnerDesignated Test plan: View the pref on the System preferences, Patrons tab. Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:02:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:02:50 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-O5q2IGm3CF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 --- Comment #4 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136423 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136423&action=edit Bug 30933: (follow-up) Consolidate transfer checks Adding shelf->cannot_be_transferred with unit tests. Note: This follow-up actually refers to comment42 on the preceding report 25498. Furthermore, we could still improve later on using error code more effectively (adding codes). Here we concentrate on moving the checks to module level. Test plan: Run t/db_dependent/Virtualshelves.t Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:02:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:02:54 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-U2ttRmSfvZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 --- Comment #5 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136424 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136424&action=edit Bug 30933: (follow-up) Use cannot_be_transferred in shelves scripts Test plan: Verify if transfer shared list on OPAC still works as expected. Same for intranet counterpart for public lists. Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:03:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:03:54 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-YMfODnd0yB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff --- Comment #21 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- I don't see a simple and consistent way to do OIDC logout from my little research on the subject, so I will put this on Needs signoff. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:06:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:06:25 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-kjiWXnXGYW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This report adds pref release notes| |ListOwnerDesignated. It | |serves as the new owner of | |public or shared lists when | |a patron is deleted as long | |as | |ListOwnershipUponPatronDele | |tion has been set to | |transfer. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:08:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:08:18 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-3Wn5xiI6qg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This report adds pref |This report adds pref release notes|ListOwnerDesignated. It |ListOwnerDesignated. It |serves as the new owner of |serves as the new owner of |public or shared lists when |public or shared lists when |a patron is deleted as long |a patron is deleted as long |as |as |ListOwnershipUponPatronDele |ListOwnershipUponPatronDele |tion has been set to |tion has been set to |transfer. |transfer. | | | |Another | |advantage is that deleting | |patrons in scripts or cron | |jobs now allows you to | |preserve their public or | |shared lists. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:10:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:10:29 +0000 Subject: [Koha-bugs] [Bug 30933] Add a designated owner for shared and public lists at patron deletion In-Reply-To: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30933-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30933-70-NlOqGnfCAD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30933 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com --- Comment #6 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Martin, the two follow-up patches cover comment42 on the preceding report. It only reduces the code in the scripts slightly, but offers much more testing opportunities. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:31:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:31:15 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-HXBeFfRRkO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to stable |RESOLVED --- Comment #130 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- According to conversation during IRC dev meeting, won't backport to 21.11. Thx! <pre> 16:25 < ashimema> is it actualyl worthwhile backporting 30733 any further.. ? 16:26 < ashimema> ha.. great minds 16:26 < cait1> it creates a lot of work for translators 16:26 < tuxayo> ashimema totally not 16:26 < cait1> and the later the version the more unlikley people keep up 16:26 < tuxayo> It's a mess ^^ 16:26 < liliputech> if it's not i can manage not to work on it ;) 16:26 < ashimema> I don't think we should.. it would do the oposite of what it tries to do.. get translators to re-translate a lot 16:26 < tuxayo> 30733 was only for 22.05 16:26 < cait1> yep, I think it's good there 16:26 < liliputech> ok, then i will resolve-fix that one :) thx! </pre> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:33:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:33:05 +0000 Subject: [Koha-bugs] [Bug 30717] Dates displayed in ISO format when editing items In-Reply-To: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30717-70-JE3hXkEPHk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30717 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable --- Comment #14 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- pushed to 21.11.x for 21.11.07, thx! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:33:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:33:16 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-mXbXYtqXcS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|tomascohen at gmail.com |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:33:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:33:23 +0000 Subject: [Koha-bugs] [Bug 30717] Dates displayed in ISO format when editing items In-Reply-To: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30717-70-bniQgLVwIV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30717 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.05.00 |22.05.00, 21.11.07 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:57:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:57:25 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-a44iu15g0o@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Nick Clemens <nick at bywatersolutions.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. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:57:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:57:29 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-MfFXQOfRlo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136255|0 |1 is obsolete| | --- Comment #12 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136425 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136425&action=edit Bug 30879: Add biblionumber as a sorting option in MARC21 This patch updates the Local-Number indexing by adding a zeropad option to Zebra indexing and adding this to the mapping files It also updates C4/Search.pm to allow biblionumber as an option To test: 1 - Apply patches 2 - copy etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl to /etc/koha/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl 3 - Restart all, reindex zebra 4 - Browse to: http://localhost:8081/cgi-bin/koha/catalogue/search.pl?idx=kw&q=a&sort_by=biblionumber_dsc&count=20 5 - Confirm records sorted correctly 6 - Browse to http://localhost:8081/cgi-bin/koha/catalogue/search.pl?idx=kw&q=a&sort_by=biblionumber_asc&count=20 7 - Confirm records sorted correctly -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:57:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:57:33 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-SqP0D37FDl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #13 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136426 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136426&action=edit Bug 30879: Allow biblionumber as sort option in Elasticsearch Repeat previous tests with Elasticsearch engine You will need to reindex and reset mappings to pickup the changes form the file -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:57:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:57:37 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-iw98QGEa50@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #14 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136427 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136427&action=edit Bug 30879: Handle index/sorting for UNIMARC Same as before, but test with UNIMARC setup -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:57:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:57:41 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-ipfZetHF25@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #15 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136428 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136428&action=edit Bug 30879: Add option to syspref and update display To test: 1 - Update ComponentSortField system preference and verify biblionumber is an option 2 - Repeat test plan from 30327 and confirm sorting with biblionumber works -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 16:58:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 14:58:47 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-sHHZLNrJ6y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 17:01:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 15:01:47 +0000 Subject: [Koha-bugs] [Bug 23334] Modal window for Z3950 search In-Reply-To: <bug-23334-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23334-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23334-70-IYIesbO28o@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23334 --- Comment #1 from Lucas Gass <lucas at bywatersolutions.com> --- I am using this jQuery to resize the Z3950 popups: if ( $('#cat_z3950_search').length ) { window.resizeBy(200, 200); } -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 17:08:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 15:08:20 +0000 Subject: [Koha-bugs] [Bug 31015] New: Remove option to clear pickup location selects on multi-holds page Message-ID: <bug-31015-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31015 Bug ID: 31015 Summary: Remove option to clear pickup location selects on multi-holds page Change sponsored?: --- Product: Koha Version: 21.11 Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: Hold requests Assignee: koha-bugs at lists.koha-community.org Reporter: jrobb at sekls.org QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com When placing multiple holds at once, the various selects for pickup location have a little X at the far right next to the dropdown arrow. Clicking the X clears the field and allows for holds to be created with null pickup locations. We discovered the hard way that things like the holds queue completely break when there are null pickup locations lurking about. It also seems to prevent the holds tab on the patron account from loading. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 17:13:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 15:13:02 +0000 Subject: [Koha-bugs] [Bug 31016] New: Highlight item in holdings when searching by barcode Message-ID: <bug-31016-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31016 Bug ID: 31016 Summary: Highlight item in holdings when searching by barcode Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Searching Assignee: koha-bugs at lists.koha-community.org Reporter: andrewfh at dubcolib.org QA Contact: testopia at bugs.koha-community.org When one searches by barcode for an item from a bib with multiple items, one is taken straight to the bib record details page, where one must then find that specific item in the holdings table. The more items on the bib, the harder that becomes. It would be helpful if the item with the barcode one searched by could be highlighted in the holdings table for easy identification. Ideally this would work whether one has done a specific barcode search or if one has put a barcode in as a keyword. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 17:40:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 15:40:17 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-X6OG9lnFlz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #15 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- Just my 2 cents here. Isn't the devs who provides code at the best place to know exactly what the code is doing or how it changes its behavior? and therefore documenting it? Just like it is now mandatory to provides unit tests and test plans in the commit message, we could make a documentation mandatory for an enhancement or big change to reach Koha Community code. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 18:03:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 16:03:51 +0000 Subject: [Koha-bugs] [Bug 31015] Remove option to clear pickup location selects on multi-holds page In-Reply-To: <bug-31015-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31015-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31015-70-YpfBqJjFlO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31015 --- Comment #1 from Jason Robb <jrobb at sekls.org> --- After a picking at this a little bit more, it seems the custom jQuery I'm using to prefill the pickup locations is facilitating the problem. If I disable the jQuery, the page pops up an alert and won't save with an empty pickup location. The X to clear that top pickup location select doesn't appear when placing a single-title hold so it might still make sense to get rid of it on the multi-hold page to match behaviors. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 18:24:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 16:24:01 +0000 Subject: [Koha-bugs] [Bug 31017] New: Add type field for vendors Message-ID: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31017 Bug ID: 31017 Summary: Add type field for vendors Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Acquisitions Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org Some libraries have many vendors, and they serve different purposes e.g. booksellers vs donors vs electronic resource providers It would be nice to have a way to differentiate these types for reporting (and eventually for searching) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 19:01:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 17:01:40 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-7aeslsXt2s@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 --- Comment #16 from Owen Leonard <oleonard at myacpl.org> --- I'm getting this error: POST /api/v1/quotes: unhandled exception (DBIx::Class::Exception)<<DBIx::Class::Storage::DBI::_dbh_execute(): DBI Exception: DBD::mysql::st execute failed: Column 'timestamp' cannot be null -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 20:34:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 18:34:40 +0000 Subject: [Koha-bugs] [Bug 31018] New: Allow patrons to batch cancel holds Message-ID: <bug-31018-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31018 Bug ID: 31018 Summary: Allow patrons to batch cancel holds Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: kelly at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org In Koha 21.11, staff will be able to batch cancel holds from the staff interface. It would be nice if this same feature was in the OPAC allowing patrons to batch cancel holds. If a patron had many holds, and they wanted to cancel more than one, allow them to check which holds to cancel and do this in one click. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 20:42:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 18:42:57 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-MeMjbapeKo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl --- Comment #17 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Critical ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 21:39:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 19:39:36 +0000 Subject: [Koha-bugs] [Bug 11300] Add a new authority linker which searches for authority links on a Z39.50 server. In-Reply-To: <bug-11300-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11300-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11300-70-McyNw0SJFj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11300 --- Comment #43 from Michal Denar <black23 at gmail.com> --- Would it be possible to add a test plan? I have applied the patch, set it up according to the instructions, but the authority linking does not work. Nothing happens. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 22:32:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 20:32:26 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-2T5JvlWGY4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #16 from Victor Grousset/tuxayo <victor at tuxayo.net> --- The topic came up on today's meeting. Here is, like Arthur did, ideas about how to follow-up on the topic of documentation: Maybe we could have a status "Failed QA, missing documentation" which the documentation team could also unblock taking the oldest ones first. So it does not get stuck forever on that. But that still too much delay to get merged and can require rebases. Another idea is to do it after the patch is merged to master. But it's the dev that does it and the documentation team if that takes too long. We can expect this to happen often since there isn't the incentive to have the patch merged anymore. But compared to the new workflow now from this ticket, it should cause part of the developers to do that and make less work for the documentation team. Would that work? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 22:37:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 20:37:32 +0000 Subject: [Koha-bugs] [Bug 30991] [% ELSE %]0[% END %] will break translations if used for assigning variables In-Reply-To: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30991-70-h3mb4up4qX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 22:37:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 20:37:35 +0000 Subject: [Koha-bugs] [Bug 30991] [% ELSE %]0[% END %] will break translations if used for assigning variables In-Reply-To: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30991-70-hxxxeLcyfm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136408|0 |1 is obsolete| | --- Comment #2 from Lucas Gass <lucas at bywatersolutions.com> --- Created attachment 136429 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136429&action=edit Bug 30991: Fix remaining instances of [% ELSE %]0[% END %] in templates The construct of [% ELSE %]0[% END %] breaks translations as it is translated as [% ELSE %][% END %]. Note: No 0 in the ELSE statement. This patchset either removes occurances of a lone 0 in template ELSE statements, or splits it over multiple lines so the 0 is not removed in the translated templates. Test plan: 1. Install the en-NZ translation 2. Search the translated templates for '[% ELSE %][% END %]' and confirm there are are instances of that 3. Apply patch 4. Update your en-NZ translation 5. Repeat step 2 and confirm there are no more instances of [% ELSE %][% END %] in the translated templates Note: I removed the [% ELSE %] statement from opac-bottom.inc as that statement was empty in the en translation so it didn't look to be needed. Sponsored-by: Catalyst IT, New Zealand Signed-off-by: Lucas Gass <lucas at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 23:03:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 21:03:51 +0000 Subject: [Koha-bugs] [Bug 28529] Item type-constrained biblio-level holds should honour max_holds as item-level do In-Reply-To: <bug-28529-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28529-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28529-70-a2LyYM84IK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28529 --- Comment #39 from Tomás Cohen Arazi <tomascohen at gmail.com> --- @RMaints: can we get this down to 21.05? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 23:27:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 21:27:50 +0000 Subject: [Koha-bugs] [Bug 29173] Button "replace authority record via Z39/50/SRU" doesn't pre-fill In-Reply-To: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29173-70-ntkMUGbJ54@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29173 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #30 from David Nind <david at davidnind.com> --- I'm getting this error after applying the patch: The method Koha::Authority->record is not covered by tests! Trace begun at /kohadevbox/koha/Koha/Object.pm line 875 Koha::Object::AUTOLOAD('Koha::Authority=HASH(0x55aa079a8cf0)') called at /kohadevbox/koha/cataloguing/z3950_auth_search.pl line 37 eval {...} at /kohadevbox/koha/cataloguing/z3950_auth_search.pl line 2 CGI::Compile::ROOT::kohadevbox_koha_cataloguing_z3950_auth_search_2epl::__ANON__('CGI::Compile=HASH(0x55aa07855ba0)', '', '/kohadevbox/koha/cataloguing/z3950_auth_search.pl', '/kohadevbox/koha/cataloguing', 'ARRAY(0x55aa07853d88)') called at /usr/share/perl5/CGI/Compile.pm line 151 CGI::Compile::ROOT::kohadevbox_koha_cataloguing_z3950_auth_search_2epl::z3950_auth_search_2epl at /usr/share/perl5/CGI/Emulate/PSGI.pm line 30 CGI::Emulate::PSGI::__ANON__('HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/App/WrapCGI.pm line 95 Plack::App::WrapCGI::call('Plack::App::WrapCGI=HASH(0x55aa07884ad0)', 'HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/Component.pm line 50 Plack::Component::__ANON__('HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/App/CGIBin.pm line 50 Plack::App::CGIBin::serve_path('Plack::App::CGIBin=HASH(0x55a9fcf2d7b8)', 'HASH(0x55aa07ea9998)', '/kohadevbox/koha/cataloguing/z3950_auth_search.pl') called at /usr/share/perl5/Plack/App/File.pm line 34 Plack::App::File::call('Plack::App::CGIBin=HASH(0x55a9fcf2d7b8)', 'HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/Component.pm line 50 Plack::Component::__ANON__('HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/Middleware/LogWarn.pm line 22 Plack::Middleware::LogWarn::call('Plack::Middleware::LogWarn=HASH(0x55aa0666c2e0)', 'HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/Component.pm line 50 Plack::Component::__ANON__('HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/Middleware/Log4perl.pm line 30 Plack::Middleware::Log4perl::call('Plack::Middleware::Log4perl=HASH(0x55aa0666c670)', 'HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/Component.pm line 50 Plack::Component::__ANON__('HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/Middleware/HTTPExceptions.pm line 20 Plack::Middleware::HTTPExceptions::try {...} at /usr/share/perl5/Try/Tiny.pm line 100 ....... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 23:35:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 21:35:35 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-7vgfV9hXY6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136396|0 |1 is obsolete| | --- Comment #22 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136430 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136430&action=edit Bug 30988: Add generic OpenIDConnect client implementation A generic OpenID Connect implementation. Test plan: 1- Set up an OAuth2 provider that has a discovery doc (e.g. for google it's https://accounts.google.com/.well-known/openid-configuration) and note down the client id and client secret. Docs to help setup: google: https://developers.google.com/identity/protocols/oauth2/openid-connect https://koha-community.org/manual/20.11/en/html/administrationpreferences.html gitlab: https://docs.gitlab.com/ee/integration/oauth_provider.html 2- Apply the patch 3- Run atomicupdate to update database 4- Configure system preferences: a- Set OIDC to Yes b- Enter the url to the discovery doc of your OAuth2 provider c- Fill OIDCOAuth2ClientID with noted client id d- Fill OIDCOAuth2ClientSecret with noted client secret e- Change OIDCProviderName to change the text displayed on OIDC login buttons f- Configure the other related system preferences as you wish. They shoud work the same way as the similar googleopenidconnect system preferences. 5- If OIDCAutoRegister is set to Don't allow, have a koha account with the same email as the one used by your OAuth2 provider. 6- In OPAC, sign in using OpenID Connect. 7- You may have to log into your OpenID provider account and accept conditions. It should finally log you into the koha account. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 22 23:35:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 21:35:39 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-7CEEOroK34@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136403|0 |1 is obsolete| | --- Comment #23 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136431 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136431&action=edit Bug 30988: Moving id token validation code into a module -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 00:05:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 22:05:35 +0000 Subject: [Koha-bugs] [Bug 15326] Add CMS feature In-Reply-To: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15326-70-T83nSuZjdh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15326 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|Large patch |Medium patch Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 00:05:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 22:05:42 +0000 Subject: [Koha-bugs] [Bug 15326] Add CMS feature In-Reply-To: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15326-70-Jvn5je5NkR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15326 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #128642|0 |1 is obsolete| | --- Comment #158 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Created attachment 136432 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136432&action=edit Bug 15326: Using AdditionalContents for custom pages on OPAC This page utilises the Additional Contents feature to add custom pages to the staff client and the OPAC in the user's desired language. To test: 1. Apply patch and restart services 2. In the staff client, go to Tools, then go to the new 'Pages' page 3. Add a new page to display on both the staff client and OPAC. 4. Notice the 'View' button in the Actions column. This button should only show when viewing Pages, it should not show when viewing HTML customisations or News. Test that the main View button links you to the page in the staff client. Test that clicking the arrow shows a button to view the page in the OPAC, and clicking it opens the OPAC in a new tab. 5. When viewing your new page in the staff client, confirm a Pages navigation shows in the left navigation. 6. When viewing your new page in the OPAC, confirm a Pages navigation shows in the left navigation. Confirm pages are also linked in the masthead links (i.e. with Advanced search and Libraries etc). 7. Confirm that any pages made for the staff client only do not show in the OPAC, and that any pages made for the OPAC only do not show in the staff client. 8. Pages that can be viewed on the staff client will also show under the Pages link on the Tools main page. Sponsored-by: Chartered Accountants Australia and New Zealand -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 00:17:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 22:17:13 +0000 Subject: [Koha-bugs] [Bug 31019] New: UNIMARC field help link when cataloguing - default location needs updating Message-ID: <bug-31019-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31019 Bug ID: 31019 Summary: UNIMARC field help link when cataloguing - default location needs updating Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Cataloging Assignee: koha-bugs at lists.koha-community.org Reporter: david at davidnind.com QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl When cataloguing on a UNIMARC installation, clicking on the ? for field help now goes to https://www.ifla.org/, for example for 500: https://www.ifla.org/#500. This looks like a redirect from https://archive.ifla.org/#500 (the MarcFieldDocURL system preference indicates that http://archive.ifla.org is used if nothing is entered in the system preference). -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 00:18:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 22:18:22 +0000 Subject: [Koha-bugs] [Bug 31019] UNIMARC field help link when cataloguing - default location needs updating In-Reply-To: <bug-31019-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31019-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31019-70-tIrPnmpEnz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31019 --- Comment #1 from David Nind <david at davidnind.com> --- I couldn't find the new location(s) for UNIMARC field help....if there is one. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 01:32:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 23:32:48 +0000 Subject: [Koha-bugs] [Bug 30630] Checking in a waiting hold at another branch when HoldsAutoFill is enabled causes errors In-Reply-To: <bug-30630-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30630-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30630-70-flxOY32rPM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30630 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable Version(s)|22.05.00,21.11.06 |22.05.00,21.11.06,21.05.16 released in| | CC| |victor at tuxayo.net --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Backported: Pushed to 21.05.x branch for 21.05.16 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 01:32:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 23:32:58 +0000 Subject: [Koha-bugs] [Bug 30630] Checking in a waiting hold at another branch when HoldsAutoFill is enabled causes errors In-Reply-To: <bug-30630-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30630-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30630-70-dBzrZEmtat@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30630 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Pushed to oldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 01:34:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 23:34:24 +0000 Subject: [Koha-bugs] [Bug 30565] Field stockrotationrotas.description should be NOT NULL, title UNIQUE In-Reply-To: <bug-30565-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30565-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30565-70-Lv7ocWtO17@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30565 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting CC| |victor at tuxayo.net --- Comment #11 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 01:47:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 23:47:48 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-SesZRmws5F@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #24 from David Cook <dcook at prosentient.com.au> --- (In reply to Shi Yao Wang from comment #21) > I don't see a simple and consistent way to do OIDC logout from my little > research on the subject, so I will put this on Needs signoff. Perhaps not simple within the current confines of C4::Auth/your change. No worries. I had a working example at https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=21586&attachment=80689 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 01:49:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 22 Jun 2022 23:49:19 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-BZPiOg93uO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #25 from David Cook <dcook at prosentient.com.au> --- I'll look at testing this again in any case. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 02:11:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 00:11:49 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-QmFtGNou8v@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 02:11:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 00:11:53 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-0bMCLp88s9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 --- Comment #10 from David Cook <dcook at prosentient.com.au> --- Created attachment 136433 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136433&action=edit Bug 17904: Make OPAC "Most popular" respect hidden record sysprefs At the moment, OpacSuppression and OpacHiddenItems don't affect the output of the OPAC's "Most popular" page. This patch adds support for the OpacSuppression and OpacHiddenItems system preferences, so that items are excluded from the "Most popular" calculation based on the hidden rules. Test plan: 0a. Apply patches 0b. koha-plack --restart kohadev 0c. Log into Koha as "koha" user 1. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpacTopissue 2. Enable "OpacTopissue" 3. Go to http://localhost:8081/cgi-bin/koha/circ/circulation.pl?borrowernumber=51 4. Checkout 39999000001310 5. Checkout 39999000005578 6. Checkout 39999000004571 7. Checkout 39999000005592 8. Go to http://localhost:8080/cgi-bin/koha/opac-topissues.pl?limit=10&branch=&itemtype=&timeLimit=999&do_it=1 9. See 3 titles 10. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpacHiddenItems 11. Change "OpacHiddenItems" to the following (within the single quotes): barcode: [39999000001310,39999000005578] location: ['RANDOM','THAT','THIS'] 12. Go to http://localhost:8080/cgi-bin/koha/opac-topissues.pl?limit=10&branch=&itemtype=&timeLimit=999&do_it=1 13. See 2 titles ("Gairm" is hidden, as is one of the items for "Continuous delivery /") 14. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpacHiddenItemsExceptions 15. Update the syspref to 'S' 16. Go to http://localhost:8080/cgi-bin/koha/opac-topissues.pl?limit=10&branch=&itemtype=&timeLimit=999&do_it=1 17. See 3 titles again 18. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpacSuppression 19. Change syspref to "Hide" 20. Go to http://localhost:8081/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=114 21. Change 942$n to "Yes" and save record 22. Go to http://localhost:8080/cgi-bin/koha/opac-topissues.pl?limit=10&branch=&itemtype=&timeLimit=999&do_it=1 23. See 2 titles ("Clean code : a handbook of agile software craftsmanship / Robert C. Martin ... [et al.]" is suppressed -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 02:29:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 00:29:00 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-QSxc0YpGB8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136433|0 |1 is obsolete| | --- Comment #11 from David Cook <dcook at prosentient.com.au> --- Created attachment 136434 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136434&action=edit Bug 19704: Make OPAC "Most popular" respect hidden record sysprefs At the moment, OpacSuppression and OpacHiddenItems don't affect the output of the OPAC's "Most popular" page. This patch adds support for the OpacSuppression and OpacHiddenItems system preferences, so that items are excluded from the "Most popular" calculation based on the hidden rules. Test plan: 0a. Apply patches 0b. koha-plack --restart kohadev 0c. Log into Koha as "koha" user 1. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpacTopissue 2. Enable "OpacTopissue" 3. Go to http://localhost:8081/cgi-bin/koha/circ/circulation.pl?borrowernumber=51 4. Checkout 39999000001310 5. Checkout 39999000005578 6. Checkout 39999000004571 7. Checkout 39999000005592 8. Go to http://localhost:8080/cgi-bin/koha/opac-topissues.pl?limit=10&branch=&itemtype=&timeLimit=999&do_it=1 9. See 3 titles 10. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpacHiddenItems 11. Change "OpacHiddenItems" to the following (within the single quotes): barcode: [39999000001310,39999000005578] location: ['RANDOM','THAT','THIS'] 12. Go to http://localhost:8080/cgi-bin/koha/opac-topissues.pl?limit=10&branch=&itemtype=&timeLimit=999&do_it=1 13. See 2 titles ("Gairm" is hidden, as is one of the items for "Continuous delivery /") 14. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpacHiddenItemsExceptions 15. Update the syspref to 'S' 16. Go to http://localhost:8080/cgi-bin/koha/opac-topissues.pl?limit=10&branch=&itemtype=&timeLimit=999&do_it=1 17. See 3 titles again 18. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpacSuppression 19. Change syspref to "Hide" 20. Go to http://localhost:8081/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=114 21. Change 942$n to "Yes" and save record 22. Go to http://localhost:8080/cgi-bin/koha/opac-topissues.pl?limit=10&branch=&itemtype=&timeLimit=999&do_it=1 23. See 2 titles ("Clean code : a handbook of agile software craftsmanship / Robert C. Martin ... [et al.]" is suppressed) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 02:29:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 00:29:26 +0000 Subject: [Koha-bugs] [Bug 19704] OPACs most popular feature includes titles hidden by OpacHiddenItems In-Reply-To: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-19704-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-19704-70-RiEB2w4D1l@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |dcook at prosentient.com.au |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:04:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:04:22 +0000 Subject: [Koha-bugs] [Bug 31020] New: PassItemMarcToXSLT only applies on results pages Message-ID: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020 Bug ID: 31020 Summary: PassItemMarcToXSLT only applies on results pages Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: System Administration Assignee: koha-bugs at lists.koha-community.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Bug 28373 added system preference PassItemMarcToXSLT is referenced is all XSLT system preferences. But it only applies on results pages. The only use in perl code is in C4::Search : > $marcrecord->delete_fields( @fields ) unless C4::Context->preference('PassItemMarcToXSLT'); I've tested by adding in all XSLT files : <strong>ITEMS <xsl:value-of select="count(marc:datafield[@tag=952])"/> </strong> Number of items only appears in OPAC and staff interface results pages. In fact only search pages get MARC record from search engine, in which items datas have been embedded for indexing. In other pages MARC record does not embed items datas. PS : Maybe it will be good to have separate preferences for OPAC and staff interface. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:04:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:04:34 +0000 Subject: [Koha-bugs] [Bug 31020] PassItemMarcToXSLT only applies on results pages In-Reply-To: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31020-70-JjEFZQClcY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |fridolin.somers at biblibre.co |ity.org |m Status|NEW |ASSIGNED -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:06:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:06:07 +0000 Subject: [Koha-bugs] [Bug 31020] PassItemMarcToXSLT only applies on results pages In-Reply-To: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31020-70-5OFr581RMz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |28373 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28373 [Bug 28373] Items fields not used in default XSLT -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:06:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:06:07 +0000 Subject: [Koha-bugs] [Bug 28373] Items fields not used in default XSLT In-Reply-To: <bug-28373-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28373-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28373-70-FSmtk59bIl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28373 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31020 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020 [Bug 31020] PassItemMarcToXSLT only applies on results pages -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:06:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:06:14 +0000 Subject: [Koha-bugs] [Bug 31020] PassItemMarcToXSLT only applies on results pages In-Reply-To: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31020-70-6PJnsOyL9u@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |String patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:14:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:14:04 +0000 Subject: [Koha-bugs] [Bug 31020] PassItemMarcToXSLT only applies on results pages In-Reply-To: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31020-70-Wzpq83tSvv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:14:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:14:08 +0000 Subject: [Koha-bugs] [Bug 31020] PassItemMarcToXSLT only applies on results pages In-Reply-To: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31020-70-J77QhNUT8z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020 --- Comment #1 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136435 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136435&action=edit Bug 31020: Fix PassItemMarcToXSLT in system preferences description Bug 28373 added system preference PassItemMarcToXSLT is referenced is all XSLT system preferences. But it only applies on results pages. The only use in perl code is in C4::Search : > $marcrecord->delete_fields( @fields ) unless C4::Context->preference('PassItemMarcToXSLT'); I've tested by adding in all XSLT files : <strong>ITEMS <xsl:value-of select="count(marc:datafield[@tag=952])"/> </strong> Number of items only appears in OPAC and staff interface results pages. In fact only search pages get MARC record from search engine, in which items datas have been embedded for indexing. In other pages MARC record does not embed items datas. This patch adds "MARC21 952, UNIMARC 995" to be explicit we talk about MARC datas not item tags build in XML recieved by XSLT. Test plan : 1) Apply patch 2) Search for PassItemMarcToXSLT in system preferencies 3) Look at description of PassItemMarcToXSLT 4) Check PassItemMarcToXSLT only apprears in OPACXSLTResultsDisplay and XSLTResultsDisplay -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:20:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:20:51 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-Hwj8QyGWra@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Patch doesn't apply --- Comment #28 from David Cook <dcook at prosentient.com.au> --- Patch doesn't currently apply: diff --cc Koha/Biblio.pm index 4a4df845eb,a84b0e32f6..0000000000 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@@ -547,7 -547,7 +547,11 @@@ sub get_marc_components } ); } ++<<<<<<< HEAD + @$components = sort { $searcher->extract_biblionumber($a) <=> $searcher->extract_biblionumber($b) } @$results if defined($results) && @$results; ++======= + $components = $results->{biblioserver}->{RECORDS} if defined($results) && $results->{biblioserver}->{hits}; ++>>>>>>> Bug 30327: [Alternate] Add options for sorting components } return $components // []; -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:21:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:21:58 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-s82RacW3me@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #16 from David Cook <dcook at prosentient.com.au> --- Can't really test this at the moment since bug 30879 can't apply on master. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:30:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:30:31 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-TsnlqugvT9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #17 from David Cook <dcook at prosentient.com.au> --- However, I'm pretty keen to test this Zebra indexing change, so I'll do a subtest. My test plan: 1. Apply patches for 30879 (w/o 30327 and nixing merge conflict due to missing 30327) 2. cp etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl /etc/koha/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl 3. restart_all 4. koha-rebuild-zebra -b -f -v kohadev 5. yaz-client unix:/var/run/koha/kohadev/bibliosocket 5b. find e 5c. sort 1=12 >i 6. show (through whole 64 record result set to confirm desc sort) -- It works 100% as you'd expect, so that's awesome. Great job, Nick! I'm so pleased how we got here using teamwork! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:40:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:40:54 +0000 Subject: [Koha-bugs] [Bug 30449] Missing FK constraint on borrower_attribute_types In-Reply-To: <bug-30449-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30449-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30449-70-7NxRoiTWxL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30449 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|FIXED |--- Status|RESOLVED |Needs documenting CC| |victor at tuxayo.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:40:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:40:54 +0000 Subject: [Koha-bugs] [Bug 30486] [OMNIBUS] Synchronize database schema with (older) database revisions In-Reply-To: <bug-30486-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30486-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30486-70-7V4c6UpLtL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30486 Bug 30486 depends on bug 30449, which changed state. Bug 30449 Summary: Missing FK constraint on borrower_attribute_types https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30449 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:40:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:40:54 +0000 Subject: [Koha-bugs] [Bug 30899] Upgrade sometimes fails at "Upgrade to 21.11.05.004" In-Reply-To: <bug-30899-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30899-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30899-70-quQtG3Hx2f@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30899 Bug 30899 depends on bug 30449, which changed state. Bug 30449 Summary: Missing FK constraint on borrower_attribute_types https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30449 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:43:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:43:51 +0000 Subject: [Koha-bugs] [Bug 30572] Field search_marc_to_field.sort needs syncing too In-Reply-To: <bug-30572-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30572-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30572-70-zm1OqOBIsa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30572 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to stable |Needs documenting --- Comment #14 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:44:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:44:50 +0000 Subject: [Koha-bugs] [Bug 30366] Warn when running automatic_item_modification_by_age.pl In-Reply-To: <bug-30366-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30366-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30366-70-Qi91JgBhkl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30366 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to stable |Needs documenting --- Comment #7 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:45:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:45:06 +0000 Subject: [Koha-bugs] [Bug 30597] Update wording of RestrictionBlockRenewing to include auto-renew In-Reply-To: <bug-30597-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30597-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30597-70-7Y0I4gbzBB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30597 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting CC| |victor at tuxayo.net --- Comment #6 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:45:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:45:23 +0000 Subject: [Koha-bugs] [Bug 22379] ILS-DI Method "CancelHold" don't check CanReserveBeCanceledFromOpac In-Reply-To: <bug-22379-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22379-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22379-70-864vGX8vWm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22379 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to stable |Needs documenting --- Comment #17 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:45:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:45:45 +0000 Subject: [Koha-bugs] [Bug 30620] Add a warning close to /*!VERSION lines in kohastructure.sql In-Reply-To: <bug-30620-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30620-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30620-70-ChCou1nv3g@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30620 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting CC| |victor at tuxayo.net --- Comment #9 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:46:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:46:08 +0000 Subject: [Koha-bugs] [Bug 30599] Allow archiving multiple suggestions In-Reply-To: <bug-30599-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30599-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30599-70-IoiTJ36qjV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30599 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to stable |Needs documenting --- Comment #9 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:52:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:52:59 +0000 Subject: [Koha-bugs] [Bug 31020] PassItemMarcToXSLT only applies on results pages In-Reply-To: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31020-70-pvYOvacn98@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:53:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:53:04 +0000 Subject: [Koha-bugs] [Bug 31020] PassItemMarcToXSLT only applies on results pages In-Reply-To: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31020-70-l4B0aNAiSs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136435|0 |1 is obsolete| | --- Comment #2 from David Nind <david at davidnind.com> --- Created attachment 136436 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136436&action=edit Bug 31020: Fix PassItemMarcToXSLT in system preferences description Bug 28373 added system preference PassItemMarcToXSLT is referenced is all XSLT system preferences. But it only applies on results pages. The only use in perl code is in C4::Search : > $marcrecord->delete_fields( @fields ) unless C4::Context->preference('PassItemMarcToXSLT'); I've tested by adding in all XSLT files : <strong>ITEMS <xsl:value-of select="count(marc:datafield[@tag=952])"/> </strong> Number of items only appears in OPAC and staff interface results pages. In fact only search pages get MARC record from search engine, in which items datas have been embedded for indexing. In other pages MARC record does not embed items datas. This patch adds "MARC21 952, UNIMARC 995" to be explicit we talk about MARC datas not item tags build in XML recieved by XSLT. Test plan : 1) Apply patch 2) Search for PassItemMarcToXSLT in system preferencies 3) Look at description of PassItemMarcToXSLT 4) Check PassItemMarcToXSLT only apprears in OPACXSLTResultsDisplay and XSLTResultsDisplay Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:53:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:53:17 +0000 Subject: [Koha-bugs] [Bug 30628] Batch borrower modifications only affect the current page In-Reply-To: <bug-30628-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30628-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30628-70-hu9ykqQFtx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30628 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to stable |Pushed to oldstable --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Backported: Pushed to 21.05.x branch for 21.05.16 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:53:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:53:39 +0000 Subject: [Koha-bugs] [Bug 30628] Batch borrower modifications only affect the current page In-Reply-To: <bug-30628-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30628-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30628-70-nxIX1RKVrw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30628 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Needs documenting Version(s)|22.05.00,21.11.06 |22.05.00,21.11.06,21.05.16 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:55:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:55:06 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-1VufoyZ0sb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #17 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Directly on topic for this ticket: we need in bugzilla to not be able to choose "push to oldoldstable" because the last RMaint should elect "Needs documenting", always. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:56:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:56:12 +0000 Subject: [Koha-bugs] [Bug 30610] The 'Print receipt' button on cash management registers page fails on second datatables page In-Reply-To: <bug-30610-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30610-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30610-70-LblD16TMuS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30610 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting CC| |victor at tuxayo.net Version(s)|22.05.00,21.11.06 |22.05.00,21.11.06,21.05.16 released in| | --- Comment #7 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Backported: Pushed to 21.05.x branch for 21.05.16 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:56:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:56:41 +0000 Subject: [Koha-bugs] [Bug 30630] Checking in a waiting hold at another branch when HoldsAutoFill is enabled causes errors In-Reply-To: <bug-30630-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30630-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30630-70-lffBznwIHx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30630 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldoldstable |Needs documenting -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:57:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:57:42 +0000 Subject: [Koha-bugs] [Bug 24001] Cannot edit card template In-Reply-To: <bug-24001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24001-70-ShO7czGORb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24001 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Needs documenting -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 03:58:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 01:58:21 +0000 Subject: [Koha-bugs] [Bug 29537] Simplify auto-renewal code in CanBookBeRenewed In-Reply-To: <bug-29537-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29537-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29537-70-Ri2oyBeEIk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29537 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting CC| |victor at tuxayo.net --- Comment #13 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:01:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:01:08 +0000 Subject: [Koha-bugs] [Bug 30143] OAI-PMH provider may end up in an eternal loop due to missing sort In-Reply-To: <bug-30143-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30143-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30143-70-19VTuiZzqJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30143 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Note: it has been backported to 21.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:01:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:01:14 +0000 Subject: [Koha-bugs] [Bug 30143] OAI-PMH provider may end up in an eternal loop due to missing sort In-Reply-To: <bug-30143-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30143-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30143-70-Yqz2nUSYMJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30143 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:01:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:01:21 +0000 Subject: [Koha-bugs] [Bug 30143] OAI-PMH provider may end up in an eternal loop due to missing sort In-Reply-To: <bug-30143-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30143-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30143-70-TTwXONzLGV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30143 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Needs documenting --- Comment #9 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:03:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:03:57 +0000 Subject: [Koha-bugs] [Bug 31020] PassItemMarcToXSLT only applies on results pages In-Reply-To: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31020-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31020-70-IMDxAlV8fD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31020 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Text to go in the| |This fixes the note about release notes| |the PassItemMarcToXSLT | |system preference so that | |it is only shown for the | |OPACXSLTResultsDisplay and | |XSLTResultsDisplay system | |preferences - it was | |appearing in all XSLT | |system preferences, when it | |only applies for results | |pages. (The note is removed | |from OPACXSLTListsDisplay, | |XSLTListsDisplay, | |OPACXSLTDetailsDisplay, and | |XSLTDetailsDisplay system | |preferences.) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:07:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:07:01 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-LkdJMCZ0bd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #26 from David Cook <dcook at prosentient.com.au> --- My test plan: 0. Set up koha-testing-docker with a jboss/keycloak container as per https://hub.docker.com/r/jboss/keycloak/ 0b. Create "test" realm with discovery doc: http://<my_ip>:8082/auth/realms/test/.well-known/openid-configuration 0c. Create condiential OIDC client "koha" in "test" realm 0d. Create "test" user with email "test at test.test", first name "test1", last name "test2", password "test" 0e. Fix "OPACBaseURL" so that it resolves to localhost instead of a non-existent domain name 1. Apply patch 2. koha-plack --restart kohadev 3. koha-upgrade-schema kohadev 4. Set "OIDC" syspref to "Yes" 5. Set "OIDCAutoRegister" to "Allow" 6. Set "OIDCConfigURL" to "http://<my_ip>:8082/auth/realms/test/.well-known/openid-configuration" 7. Set "OIDCDefaultBranch" to "CPL" 8. Set "OIDCDefaultCategory" to "Patron" 9. Set "OIDCOAuth2ClientID" to my Keycloak client id 10. Set "OIDCOAuth2ClientSecret" to my Keycloak client secret 11. Go to http://localhost:8080/cgi-bin/koha/opac-main.pl 12. Click "Log in to your account" 13. Fill out your username and password in Keycloak 14. Success! Returned to a logged in OPAC with new auto-registered borrower -- Remaining issues: 1) - installer/data/mysql/atomicupdate/bug_30988-add_oidc_syspref.pl - installer/data/mysql/mandatory/sysprefs.sql - koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref "URL to identity provider's OpenID config" should be "URL to identity provider's OpenID Connect config" ("OIDCOAuth2ClientID" and "OIDCOAuth2ClientSecret" shouldn't include "OAuth2" as it's redundant but not really an issue I suppose.) 2) - koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref 4 instances of "OpenID" instead of "OpenID Connect" 3) - koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc - koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt - koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt I think the following text is totally unnecessary (and somewhat inaccurate since the protocol is OpenID Connect but the account isn't): "If you do not have an OpenID account from the provider specified in this library, but do have a local account, you can still log in:" Personally, I envision a login area like the following: https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=97684. Without that text, we'd have something like that. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:07:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:07:16 +0000 Subject: [Koha-bugs] [Bug 10517] koha-restore fails to create mysqluser@mysql_hostname so zebra update fails In-Reply-To: <bug-10517-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10517-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10517-70-v2iCDl6zLH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10517 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting --- Comment #48 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:16:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:16:34 +0000 Subject: [Koha-bugs] [Bug 23073] wiki.koha-community.org needs updating to a later version In-Reply-To: <bug-23073-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23073-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23073-70-czytU3fJzy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23073 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #25 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Issue found. 1. https://koha-mw-my-test01-upgr.agogme.com/wiki/Community_Facebook 2. click on a image 3. File not found. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:18:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:18:55 +0000 Subject: [Koha-bugs] [Bug 23073] wiki.koha-community.org needs updating to a later version In-Reply-To: <bug-23073-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23073-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23073-70-X8IhCSVnXY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23073 --- Comment #26 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Why do we need «-"[[Category:Obsolete]]" AND» added automatically on searches again? I already heard about that a long time ago but forgot. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:21:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:21:40 +0000 Subject: [Koha-bugs] [Bug 10988] Allow login via Google OAuth2 (OpenID Connect) In-Reply-To: <bug-10988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10988-70-IcpKXRYKxg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10988 --- Comment #77 from David Cook <dcook at prosentient.com.au> --- When bug 30988 is ready, which will be very soon, I think that it could replace this Google-specific functionality. Then we could just maintain the 1 generic OpenID Connect client. In the past, I've had libraries that need multiple Open ID Connect clients supported and I used bug 21586 for that, but I could develop that functionality later for bug 30988 if necessary. Actually, if I did that, then we could seamlessly migrate the googleopenidconnect to the generic model just by adding it as a generic provider. Something to think about at some point... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:36:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:36:42 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-kWnKZLzYii@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #27 from David Cook <dcook at prosentient.com.au> --- I think that this is very very close! -- By the way, when this is pushed and I adopt the pushed version, I'll move my existing libraries off the bug 21586 version. At that point, I'll port and upstream my work on the Logout endpoint, claims mapping, etc. If you do any OIDC work at all, feel free to add my email to the CC and I'll take a look. (I don't know if it's of interest to you, but we recently wrote and implemented a Keycloak extension to use Koha as the user/password storage for Keycloak. Keycloak acts as the SAML/OIDC IdP at the protocol level for Koha and other third-party systems, but Koha is the authoritative user database. Always happy to talk about that too.) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 04:55:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 02:55:10 +0000 Subject: [Koha-bugs] [Bug 15326] Add CMS feature In-Reply-To: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15326-70-kAtTJKXxza@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15326 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This enhancement utilises |This enhancement utilises release notes|the Additional Contents |the Additional Contents |feature to add custom pages |feature to add custom pages |to the staff client and the |to the staff interface and |OPAC in the user's desired |the OPAC in the user's |language. |desired language. Status|Needs Signoff |Failed QA CC| |david at davidnind.com --- Comment #159 from David Nind <david at davidnind.com> --- 1. Actions menu for pages: "View on staff client" should be "View on staff interface" (see terminology list). 2. If I have a default version and an English version, when the English version has a different title: - View - without selecting from the drop down list, View on OPAC, and View on staff client: get a "This page does not exist." error, but the title is listed under the pages heading - the URLs are different (for example in the OPAC the page opens to this URL http://127.0.0.1:8080/cgi-bin/koha/opac-page.pl?page_id=3 and for the link under Pages it is http://127.0.0.1:8080/cgi-bin/koha/opac-page.pl?page_id=4) - If the titles are the same, it appears as expected. 3. The bulleted list of pages is not indetned/aligned under "Write custom pages" Just some thoughts:* 1. Is it necessary to list the pages under Tools > Additional tools > Pages? (Unless this is the only way to view them.) Couldn't these just be accessed from the filter like you see when you go into the pages page? 2. When viewing the pages from the bulleted list under Pages, I found the listing of pages in the left side bar as well a bit confusing. Is this the only way to see the pages targeted for the staff interface? 3. Preview - it just shows the default, should the other languages be shown? 4. If you have a lot of pages, being listed in the OPAC in the masthead could get rather long. * Just some additional things I noticed - I'm not tied to them in any way, just some first impressions! I didn't install and test with another language installed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 05:08:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 03:08:59 +0000 Subject: [Koha-bugs] [Bug 22379] ILS-DI Method "CancelHold" don't check CanReserveBeCanceledFromOpac In-Reply-To: <bug-22379-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22379-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22379-70-HFtSUyIL1d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22379 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This adds checks so that release notes| |borrowers can't cancel | |holds that have a transit | |or waiting status when | |using the ILS-DI web | |service's CancelHold | |method. These checks now | |reflect the same behaviour | |seen on the OPAC. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 07:23:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 05:23:59 +0000 Subject: [Koha-bugs] [Bug 23073] wiki.koha-community.org needs updating to a later version In-Reply-To: <bug-23073-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23073-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23073-70-iT0ziiHXfP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23073 Mason James <mtj at kohaaloha.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mtj at kohaaloha.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 08:18:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 06:18:50 +0000 Subject: [Koha-bugs] [Bug 31021] New: Part of C4::Search::searchResults() is only for staff interface Message-ID: <bug-31021-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31021 Bug ID: 31021 Summary: Part of C4::Search::searchResults() is only for staff interface Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Searching Assignee: koha-bugs at lists.koha-community.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org Since non-XSLT has been removed, looks like part of C4::Search::searchResults() is only for staff interface. It whould be a better performance to skip it for OPAC. It concerns items loops @onloan_items_loop, @other_items_loop, @available_items_loop, starting around : https://git.koha-community.org/Koha-community/Koha/src/commit/7a7bee59021728a30c631e2ee51f9b7778217a9f/C4/Search.pm#L1833 We should try to add a 'unless $is_opac'. Maybe we could go further and move this to catalogue/search.pl, it would be more clear. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 08:19:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 06:19:03 +0000 Subject: [Koha-bugs] [Bug 31021] Part of C4::Search::searchResults() is only for staff interface In-Reply-To: <bug-31021-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31021-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31021-70-LsOuMqc889@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31021 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|koha-bugs at lists.koha-commun |fridolin.somers at biblibre.co |ity.org |m -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 08:19:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 06:19:17 +0000 Subject: [Koha-bugs] [Bug 31021] Part of C4::Search::searchResults() is only for staff interface In-Reply-To: <bug-31021-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31021-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31021-70-YG0bjcFV8h@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31021 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |15262 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15262 [Bug 15262] Run Koha Run. Koha search should be fast again. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 08:19:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 06:19:17 +0000 Subject: [Koha-bugs] [Bug 15262] Run Koha Run. Koha search should be fast again. In-Reply-To: <bug-15262-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15262-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15262-70-y69DlzlNVM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15262 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |31021 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31021 [Bug 31021] Part of C4::Search::searchResults() is only for staff interface -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 08:19:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 06:19:28 +0000 Subject: [Koha-bugs] [Bug 31021] Part of C4::Search::searchResults() is only for staff interface In-Reply-To: <bug-31021-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31021-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31021-70-sgl0zOe3am@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31021 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=28373 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 08:19:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 06:19:28 +0000 Subject: [Koha-bugs] [Bug 28373] Items fields not used in default XSLT In-Reply-To: <bug-28373-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28373-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28373-70-T1bf8hM04b@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28373 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=31021 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 08:56:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 06:56:00 +0000 Subject: [Koha-bugs] [Bug 30610] The 'Print receipt' button on cash management registers page fails on second datatables page In-Reply-To: <bug-30610-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30610-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30610-70-whRJ3JR85M@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30610 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Documentation| |Martin Renvoize contact| | Status|Needs documenting |RESOLVED --- Comment #8 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Bugfix only, no functional changes so no documentation update required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 08:56:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 06:56:01 +0000 Subject: [Koha-bugs] [Bug 13985] Cash Management - Koha as 'Point of Sale' In-Reply-To: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-13985-70-pkYhwPn2xi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 Bug 13985 depends on bug 30610, which changed state. Bug 30610 Summary: The 'Print receipt' button on cash management registers page fails on second datatables page https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30610 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:07:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:07:56 +0000 Subject: [Koha-bugs] [Bug 11031] Delete useless 9XX field in french unimarc public library default Framework In-Reply-To: <bug-11031-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11031-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11031-70-dMgNWl2uz9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11031 mathieu saby <mathsabypro at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|mathsabypro at gmail.com |koha-bugs at lists.koha-commun | |ity.org -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:08:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:08:39 +0000 Subject: [Koha-bugs] [Bug 11031] Delete useless 9XX field in french unimarc public library default Framework In-Reply-To: <bug-11031-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11031-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11031-70-667JRZDzbB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11031 mathieu saby <mathsabypro at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEW -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:13:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:13:23 +0000 Subject: [Koha-bugs] [Bug 11206] Factorize code for getting orders in C4::Acquisitions In-Reply-To: <bug-11206-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11206-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11206-70-TM06tICI0r@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11206 mathieu saby <mathsabypro at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|mathsabypro at gmail.com |koha-bugs at lists.koha-commun | |ity.org -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:13:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:13:27 +0000 Subject: [Koha-bugs] [Bug 10135] Adding the ability to define customised basketgroups pdf layouts In-Reply-To: <bug-10135-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10135-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10135-70-VxN5NwBgYT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10135 mathieu saby <mathsabypro at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|mathsabypro at gmail.com |koha-bugs at lists.koha-commun | |ity.org -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:13:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:13:34 +0000 Subject: [Koha-bugs] [Bug 10555] overdue_notices -h does not list all options In-Reply-To: <bug-10555-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10555-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10555-70-86nd5SICBn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10555 mathieu saby <mathsabypro at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|mathsabypro at gmail.com |koha-bugs at lists.koha-commun | |ity.org -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:13:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:13:42 +0000 Subject: [Koha-bugs] [Bug 9352] Zebra indexes useless subfields in UNIMARC 7XX In-Reply-To: <bug-9352-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-9352-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-9352-70-qDv9CF4M60@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9352 mathieu saby <mathsabypro at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|mathsabypro at gmail.com |koha-bugs at lists.koha-commun | |ity.org -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:13:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:13:56 +0000 Subject: [Koha-bugs] [Bug 9828] Zebra indexes useless subfields in UNIMARC 6XX In-Reply-To: <bug-9828-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-9828-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-9828-70-NipJdQbQGt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9828 mathieu saby <mathsabypro at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|mathsabypro at gmail.com |koha-bugs at lists.koha-commun | |ity.org -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:13:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:13:56 +0000 Subject: [Koha-bugs] [Bug 30718] Use flatpickr's altInput option everywhere In-Reply-To: <bug-30718-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30718-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30718-70-nHE3U7mJTz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30718 --- Comment #5 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- (In reply to Katrin Fischer from comment #4) > I'm happy to help testing, but it would be nice it could be broken up a bit > so templates can be tested in smaller 'chunks'. I don't think it's a good idea. The flatpickr's config change is done for all the instances, so we will need to flag the instances that have been fixed to differentiate them from others (and when all fixed, remove the flag?). There is a lot of occurrences, and I think we can catch easily missing ones with `git grep` (KohaDates from tt/inc and output_pref from pl/pm), but it will be hard if only part of the job is done. Finally I think we need a moment when devs know that we did the switch, or we will never know if we need to escape using KohaDates or html. Also, I am pretty sure this change will take years if we split it into dozens of reports. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:16:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:16:55 +0000 Subject: [Koha-bugs] [Bug 10869] Can't cancel order line if title deleted In-Reply-To: <bug-10869-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10869-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10869-70-P15NJ4yjB7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10869 mathieu saby <mathsabypro at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|mathsabypro at gmail.com |koha-bugs at lists.koha-commun | |ity.org --- Comment #98 from mathieu saby <mathsabypro at gmail.com> --- Hi This bug is assigned to me since 2013 but I have not been involved in the development of Koha for years, so I'm reseting Assignee to default. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:20:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:20:04 +0000 Subject: [Koha-bugs] [Bug 25706] Suggestions: Make fields for the items table available in AVAILABLE notice In-Reply-To: <bug-25706-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25706-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25706-70-14S8ozHTjx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25706 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I realize my mistake here - it could have been multiple items that are linked to a suggestion. But maybe there is still a way to access and loop through them? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:42:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:42:10 +0000 Subject: [Koha-bugs] [Bug 11206] Factorize code for getting orders in C4::Acquisitions In-Reply-To: <bug-11206-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11206-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11206-70-PRte0DIUpb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11206 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |WONTFIX Status|In Discussion |RESOLVED -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 09:59:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 07:59:56 +0000 Subject: [Koha-bugs] [Bug 31022] New: 400/404 actually returns 500 Message-ID: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31022 Bug ID: 31022 Summary: 400/404 actually returns 500 Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: REST API Assignee: koha-bugs at lists.koha-community.org Reporter: jonathan.druart+koha at gmail.com CC: martin.renvoize at ptfs-europe.com, tomascohen at gmail.com Not sure if I am missing something, but I don't manage to get a 400 with the syntax we are using all around our REST API code. return $c->render( status => 400, openapi => { error => "this is an error" } ); I am getting a 500 with, in Koha logs: [{"message":"Missing property.","path":"\/body\/errors"}] So yes, it is working with: return $c->render( status => 400, openapi => { errors => [ {message => 'this is an error'}] } ); But it's not at all what we are doing in our REST API module. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 10:48:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 08:48:42 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-wHCqE90plM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 --- Comment #47 from Fridolin Somers <fridolin.somers at biblibre.com> --- (In reply to Nick Clemens from comment #46) > (In reply to Fridolin Somers from comment #45) > > Created attachment 136381 [details] [review] [review] > > Bug 28327: Unify CSV delimiter special behavior for tabulation > > It looks like you default to ';' but the majority of code you change > defaulted to ',' - can you explain what made you choose seimcolon? I would > think comma makes a better default Mmm it is the default value in installer/data/mysql/mandatory/sysprefs.sql. Actual fallback values is often comma indeed : > git grep "CSVDelimiter') ||" | grep -v misc/translator/ koha-tmpl/intranet-tmpl/prog/en/includes/csv_headers/acqui/lateorders.tt:[%- SET delimiter = Koha.Preference('CSVDelimiter') || ',' -%] koha-tmpl/intranet-tmpl/prog/en/includes/csv_headers/catalogue/itemsearch.tt:[%- SET delimiter = Koha.Preference('CSVDelimiter') || ',' -%] misc/cronjobs/fines.pl:my $delim = "\t"; # ? C4::Context->preference('CSVDelimiter') || "\t"; misc/cronjobs/overdue_notices.pl: my $sep_char = C4::Context->preference('CSVDelimiter') || ';'; misc/cronjobs/overdue_notices.pl: my $delimiter = C4::Context->preference('CSVDelimiter') || ';'; misc/export_borrowers.pl: $separator = C4::Context->preference('CSVDelimiter') || ','; reports/bor_issues_top.pl:our $sep = $input->param("sep") || C4::Context->preference('CSVDelimiter') || ','; reports/cash_register_stats.pl: my $delimiter = C4::Context->preference('CSVDelimiter') || ','; reports/guided_reports.pl: my $delimiter = C4::Context->preference('CSVDelimiter') || ','; tools/viewlog.pl: my $delimiter = C4::Context->preference('CSVDelimiter') || ','; May we change installer ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 10:53:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 08:53:40 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-pEXPtWU4zA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136383|0 |1 is obsolete| | --- Comment #18 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136437 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136437&action=edit Bug 30903: Fix POST /quote quote_id should not be required Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 10:53:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 08:53:55 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-wOP2oGrpuX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136336|0 |1 is obsolete| | --- Comment #19 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136438 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136438&action=edit Bug 30903: Fix UI glitch on the quotes upload view Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 10:54:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 08:54:09 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-jBMFkw0UJ6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136384|0 |1 is obsolete| | --- Comment #20 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136439 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136439&action=edit Bug 30903: (follow-up) Fix error message class -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 11:00:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 09:00:24 +0000 Subject: [Koha-bugs] [Bug 31022] 400/404 actually returns 500 In-Reply-To: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31022-70-FepPdYHK7Z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31022 --- Comment #1 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- We narrowed this one down.. it's the patrons search (GET) we're looking at and it appears we're missing our local '400' definition in the spec file /paths/patrons.yaml -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 11:01:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 09:01:26 +0000 Subject: [Koha-bugs] [Bug 31022] 400/404 actually returns 500 In-Reply-To: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31022-70-EwzfjyXFft@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31022 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |normal --- Comment #2 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Shouldn't we add the different errors for each route? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 11:02:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 09:02:29 +0000 Subject: [Koha-bugs] [Bug 31022] 400/404 actually returns 500 In-Reply-To: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31022-70-IfFlpsJl9N@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31022 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major --- Comment #3 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- I do however find it really weird still that you can define more than one definition for the same response status on the endpoint... i.e. the internal 400 definitions for the validator software and then our own one for our own errors. I would have expected our definition to take precedence over the internal one and thus need it to be a superset of the built-in one. Interesting. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 11:20:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 09:20:46 +0000 Subject: [Koha-bugs] [Bug 31022] 400/404 actually returns 500 In-Reply-To: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31022-70-SR2RD78gDT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31022 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |normal -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:08:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:08:29 +0000 Subject: [Koha-bugs] [Bug 31023] New: Cannot create new GENRE/FORM authorities when QueryRegexEscapeOptions set to 'Unescape escaped' Message-ID: <bug-31023-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31023 Bug ID: 31023 Summary: Cannot create new GENRE/FORM authorities when QueryRegexEscapeOptions set to 'Unescape escaped' Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Searching - Elasticsearch Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com Bug 24286 and bug 24264 added some escaping for the forward slash in this authtype, however, when we unescape escaped characters for regex, it appears we break the escaping in FindDuplicateAuthority To test: 0 - Have Koha using Elasticsearch 1 - Set QueryRegexEscapeOptions to 'unescape escaped' 2 - Attempt to add a new 'GENRE/FORM' authority record 3 - On save you get a 500 error Unable to understand your search query, please rephrase and try again. at /kohadevbox/koha/Koha/SearchEngine/Elasticsearch/Search.pm line 102 [2022/06/23 10:07:02] [WARN] [Request] ** [http://es:9200]-[400] [query_shard_exception] Failed to parse query [(authtype:GENRE/FORM* AND heading:"ddddd")], with: {"index":"koha_kohadev_authorities","index_uuid":"I00T6jgPTKynx5kKc8heNQ"}, called from sub Search::Elasticsearch::Role::Client::Direct::__ANON__ at /kohadevbox/koha/Koha/SearchEngine/Elasticsearch/Search.pm line 95. With vars: {'request' => {'body' => {'query' => {'query_string' => {'query' => '(authtype:GENRE/FORM* AND heading:"ddddd")','analyze_wildcard' => bless( do{\(my $o = 1)}, 'JSON::PP::Boolean' ),'default_operator' => 'AND','fuzziness' => 'auto','type' => 'cross_fields','lenient' => $VAR1->{'request'}{'body'}{'query'}{'query_string'}{'analyze_wildcard'},'fields' => ['lc-card-number','local-number','record-source','personal-name','meeting-name','personal-name-see-also-from','see-from','authtype','meeting-name-see-also-from','match-heading-see-from','heading-use-main-or-added-entry','subject-heading-thesaurus','match','heading-use-series-added-entry','kind-of-record','see-also-from','heading','corporate-name-see-also-from','descriptive-cataloging-rules','meeting-name-see-from','corporate-name-see-from','heading-use-subject-added-entry','personal-name-see-from','personal-name-heading','meeting-name-heading','heading-main']}},'size' => 1,'aggregations' => {'su-geo' => {'terms' => {'size' => '20','field' => 'su-geo__facet'}},'location' => {'terms' => {'size' => '20','field' => 'location__facet'}},'author' => {'terms' => {'field' => 'author__facet','size' => '20'}},'ln' => {'terms' => {'field' => 'ln__facet','size' => '20'}},'holdingbranch' => {'terms' => {'size' => '20','field' => 'holdingbranch__facet'}},'subject' => {'terms' => {'field' => 'subject__facet','size' => '20'}},'itype' => {'terms' => {'field' => 'itype__facet','size' => '20'}},'title-series' => {'terms' => {'field' => 'title-series__facet','size' => '20'}},'ccode' => {'terms' => {'field' => 'ccode__facet','size' => '20'}}},'from' => 0},'mime_type' => 'application/json','serialize' => 'std','method' => 'GET','ignore' => [],'path' => '/koha_kohadev_authorities/_search','qs' => {'track_total_hits' => 'true'}},'status_code' => 400,'body' => {'error' => {'reason' => 'all shards failed','phase' => 'query','type' => 'search_phase_execution_exception','grouped' => bless( do{\(my $o = 1)}, 'JSON::PP::Boolean' ),'failed_shards' => [{'node' => '8aathbKCRVmwFPakemaNEA','index' => 'koha_kohadev_authorities','reason' => {'reason' => 'Failed to parse query [(authtype:GENRE/FORM* AND heading:"ddddd")]','index' => 'koha_kohadev_authorities','type' => 'query_shard_exception','caused_by' => {'type' => 'parse_exception','caused_by' => {'type' => 'token_mgr_error','reason' => 'Lexical error at line 1, column 43. Encountered: <EOF> after : "/FORM* AND heading:\\"ddddd\\")"'},'reason' => 'Cannot parse \'(authtype:GENRE/FORM* AND heading:"ddddd")\': Lexical error at line 1, column 43. Encountered: <EOF> after : "/FORM* AND heading:\\"ddddd\\")"'},'index_uuid' => 'I00T6jgPTKynx5kKc8heNQ'},'shard' => 0}],'root_cause' => [{'index' => 'koha_kohadev_authorities','reason' => 'Failed to parse query [(authtype:GENRE/FORM* AND heading:"ddddd")]','index_uuid' => 'I00T6jgPTKynx5kKc8heNQ','type' => 'query_shard_exception'}]},'status' => 400}} -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:10:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:10:07 +0000 Subject: [Koha-bugs] [Bug 29173] Button "replace authority record via Z39/50/SRU" doesn't pre-fill In-Reply-To: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29173-70-FwudoTo7tv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29173 Thibaud Guillot <thibaud.guillot at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:10:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:10:10 +0000 Subject: [Koha-bugs] [Bug 29173] Button "replace authority record via Z39/50/SRU" doesn't pre-fill In-Reply-To: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29173-70-NMa59vF6cq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29173 Thibaud Guillot <thibaud.guillot at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136411|0 |1 is obsolete| | --- Comment #31 from Thibaud Guillot <thibaud.guillot at biblibre.com> --- Created attachment 136440 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136440&action=edit Bug 29173: Fixed pre-filling of the search form from the "Replace record with ZR39.50/SRU" (Authority page detail) Now this action has the same pre-filling behaviour as the "Edit" -> "Edit Record" -> "Replace Record via Z39.50/SRU Search" action. Author Personal - Author Meeting/Conf. - Uniform Title and Subject are filled in if the subfield contains data (like the "Edit->Replace" action). Unimarc and Marc21 specificities are supported. Test Plan : 1) You must have a Z39.50/SRU server for authorities 2) Go to an authority detail page (Author - Uniform title - Subject) 3) First go to "Edit"-> "Edit record" -> "Replace record via..." 4) See that form is prefilled with form data 5) Go back and now click on "Replace Record.." directly 6) See that form is also prefilled with data now -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:11:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:11:29 +0000 Subject: [Koha-bugs] [Bug 29173] Button "replace authority record via Z39/50/SRU" doesn't pre-fill In-Reply-To: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29173-70-rPEfTcKSuU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29173 --- Comment #32 from Thibaud Guillot <thibaud.guillot at biblibre.com> --- (In reply to David Nind from comment #30) > I'm getting this error after applying the patch: > > The method Koha::Authority->record is not covered by tests! > > Trace begun at /kohadevbox/koha/Koha/Object.pm line 875 > Koha::Object::AUTOLOAD('Koha::Authority=HASH(0x55aa079a8cf0)') called at > /kohadevbox/koha/cataloguing/z3950_auth_search.pl line 37 > eval {...} at /kohadevbox/koha/cataloguing/z3950_auth_search.pl line 2 > CGI::Compile::ROOT::kohadevbox_koha_cataloguing_z3950_auth_search_2epl:: > __ANON__('CGI::Compile=HASH(0x55aa07855ba0)', '', > '/kohadevbox/koha/cataloguing/z3950_auth_search.pl', > '/kohadevbox/koha/cataloguing', 'ARRAY(0x55aa07853d88)') called at > /usr/share/perl5/CGI/Compile.pm line 151 > CGI::Compile::ROOT::kohadevbox_koha_cataloguing_z3950_auth_search_2epl:: > z3950_auth_search_2epl at /usr/share/perl5/CGI/Emulate/PSGI.pm line 30 > CGI::Emulate::PSGI::__ANON__('HASH(0x55aa07ea9998)') called at > /usr/share/perl5/Plack/App/WrapCGI.pm line 95 > Plack::App::WrapCGI::call('Plack::App::WrapCGI=HASH(0x55aa07884ad0)', > 'HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/Component.pm line 50 > Plack::Component::__ANON__('HASH(0x55aa07ea9998)') called at > /usr/share/perl5/Plack/App/CGIBin.pm line 50 > Plack::App::CGIBin::serve_path('Plack::App::CGIBin=HASH(0x55a9fcf2d7b8)', > 'HASH(0x55aa07ea9998)', '/kohadevbox/koha/cataloguing/z3950_auth_search.pl') > called at /usr/share/perl5/Plack/App/File.pm line 34 > Plack::App::File::call('Plack::App::CGIBin=HASH(0x55a9fcf2d7b8)', > 'HASH(0x55aa07ea9998)') called at /usr/share/perl5/Plack/Component.pm line 50 > Plack::Component::__ANON__('HASH(0x55aa07ea9998)') called at > /usr/share/perl5/Plack/Middleware/LogWarn.pm line 22 > Plack::Middleware::LogWarn::call('Plack::Middleware:: > LogWarn=HASH(0x55aa0666c2e0)', 'HASH(0x55aa07ea9998)') called at > /usr/share/perl5/Plack/Component.pm line 50 > Plack::Component::__ANON__('HASH(0x55aa07ea9998)') called at > /usr/share/perl5/Plack/Middleware/Log4perl.pm line 30 > Plack::Middleware::Log4perl::call('Plack::Middleware:: > Log4perl=HASH(0x55aa0666c670)', 'HASH(0x55aa07ea9998)') called at > /usr/share/perl5/Plack/Component.pm line 50 > Plack::Component::__ANON__('HASH(0x55aa07ea9998)') called at > /usr/share/perl5/Plack/Middleware/HTTPExceptions.pm line 20 > Plack::Middleware::HTTPExceptions::try {...} at > /usr/share/perl5/Try/Tiny.pm line 100 > ....... Maybe I miss the rebase, can you test it now and tell me if you have the same issue ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:12:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:12:56 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-K14chnLZhA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha at gmail. | |com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:25:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:25:58 +0000 Subject: [Koha-bugs] [Bug 23991] Move SearchSuggestion to Koha::Suggestions In-Reply-To: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23991-70-LRyy7ljDLT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23991 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134922|0 |1 is obsolete| | --- Comment #56 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136441 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136441&action=edit Bug 23991: Move SearchSuggestion to Koha::Suggestions The C4::Suggestions::SearchSuggestion subroutine is badly written and can be replaced by calls to Koha::Suggestions->search. The hard part in this patch is suggestion.pl, the other occurrences have been replaced easily. Test plan: The idea is to test the whole suggestion workflow. 1. Create a suggestion on OPAC 2. Create a suggestion on the staff interface 3. Edit suggestions 4. Filter suggestions (use the different filters and "organize by" values) Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Bug 23991: Remove SearchSuggestion tests Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Bug 23991: (QA follow-up) Save some DB queries This patch makes the suggestion-related pages rely on array size instead of querying the DB each time they need to. In the case of suggestion/suggestion.pl it goes from 4 COUNT(*) to 1. To test, with KTD: 1. Run on the host machine: $ docker exec -ti koha_db_1 bash $ mysql -ppassword > SET GLOBAL general_log_file='/var/log/mysql/mycustom.log'; > SET GLOBAL log_output = 'FILE'; > SET GLOBAL general_log = 'ON'; > \q $ tail -f /var/log/mysql/mycustom.log | grep suggestions 2. Visit the different pages changed on this bug => SUCCESS: Some queries 3. Apply this patch 4. Repeat 2 => SUCCESS: Less queries! 5. Sign off :-D Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Bug 23991: Fix branchcode and budgetid filtering Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Bug 23991: Fix conflict with bug 28941 Well, this patchset fixed the security bug... Redoing on top of bug 28941 Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Bug 23991: (follow-up) Missing semicolon Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Bug 23991: Fix 'all' libraries Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Bug 23991: (follow-up) Add value to filter_archived Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:26:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:26:03 +0000 Subject: [Koha-bugs] [Bug 23991] Move SearchSuggestion to Koha::Suggestions In-Reply-To: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23991-70-3zI91WbSCk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23991 --- Comment #57 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136442 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136442&action=edit Bug 23991: (QA follow-up) Fix tabbing It looks like during one of the many rebases we lost some of the tabn handling, likely due to the conversion from jquery-ui to bootstrap tabs. Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:27:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:27:39 +0000 Subject: [Koha-bugs] [Bug 23991] Move SearchSuggestion to Koha::Suggestions In-Reply-To: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23991-70-A0WsFDjmG2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23991 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #58 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Everything working as far as I can tell... Code is looking good and with my minor follow-up fixing a rebase issue somewhere along the line I think we're good to go. Passing QA. PS.. I would love to see a switch to API driven tables etc here as suggested earlier in the bug.. the UX is a bit wierd. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:27:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:27:50 +0000 Subject: [Koha-bugs] [Bug 23991] Move SearchSuggestion to Koha::Suggestions In-Reply-To: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23991-70-IL10HGpkn5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23991 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|tomascohen at gmail.com |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:29:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:29:04 +0000 Subject: [Koha-bugs] [Bug 31024] New: Switch to the REST Datatables for Suggestion Management Message-ID: <bug-31024-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31024 Bug ID: 31024 Summary: Switch to the REST Datatables for Suggestion Management Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff Client Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com The UX on the manage suggestions page is a little out of place and performance isn't great with a large number of suggestions. I'm sure we can do better by adopting some of our more modern practices using the REST API and DataTables Wrapper. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:29:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:29:17 +0000 Subject: [Koha-bugs] [Bug 31024] Switch to the REST Datatables for Suggestion Management In-Reply-To: <bug-31024-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31024-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31024-70-vi84yrMn7s@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31024 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |23991 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23991 [Bug 23991] Move SearchSuggestion to Koha::Suggestions -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:29:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:29:17 +0000 Subject: [Koha-bugs] [Bug 23991] Move SearchSuggestion to Koha::Suggestions In-Reply-To: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23991-70-wkJ0aJNsfD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23991 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31024 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31024 [Bug 31024] Switch to the REST Datatables for Suggestion Management -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 12:31:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 10:31:41 +0000 Subject: [Koha-bugs] [Bug 31025] New: Reports with too many params can exceed length limit of URI Message-ID: <bug-31025-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31025 Bug ID: 31025 Summary: Reports with too many params can exceed length limit of URI Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Reports Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org Our reports submit the form as a GET request - this is useful for saving links to report results, however, when using the <<Param|list>> feature, too much data can be submitted to the form and cause a 414 error: Request-URI Too Long The requested URL's length exceeds the capacity limit for this server. Apache/2.4.53 (Debian) Server at kohadev-intra.myDNSname.org Port 80 We should, optionally, submit large requests as 'POST' Dirty sample code: $("#rep_guided_reports_start textarea[id^='sql_params']").change(function(){ console.log('Garsh'); let param_length = 0; $("textarea[id^='sql_params']").each(function(index,value){ param_length += $(this).val().length; }); if( param_length > 900 ){ $("#rep_guided_reports_start form").attr('method','post'); $("#rep_guided_reports_start form input[type='submit']").after('<p>Too much params! Wil submit as post!</p>'); } }); -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:02:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:02:54 +0000 Subject: [Koha-bugs] [Bug 31017] Add type field for vendors In-Reply-To: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31017-70-6OzbjYrYxh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31017 Nick Clemens <nick at bywatersolutions.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. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:02:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:02:59 +0000 Subject: [Koha-bugs] [Bug 31017] Add type field for vendors In-Reply-To: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31017-70-PHkcWEeprQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31017 --- Comment #1 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136443 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136443&action=edit Bug 31017: DB Updates -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:03:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:03:03 +0000 Subject: [Koha-bugs] [Bug 31017] Add type field for vendors In-Reply-To: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31017-70-KqFX6MG90p@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31017 --- Comment #2 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136444 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136444&action=edit Bug 31017: DO NOT PUSH - Schema updates -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:03:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:03:06 +0000 Subject: [Koha-bugs] [Bug 31017] Add type field for vendors In-Reply-To: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31017-70-1k01Dx24oW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31017 --- Comment #3 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136445 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136445&action=edit Bug 31017: Add new vendor_type field to edit screena dn display This patch adds a new vendor_type field when creating/editing vendors and displays the field on search and details for a vendor To test: 1 - Apply patch, update database 2 - Edit/create a vendor in acquisitions 3 - Note new 'Vendor type' field, free text in editor 4 - Save a value 5 - Confirm it displays in vendor search results and vendor main page 6 - In Authorised values add a new value to 'VENDOR_TYPE' category 7 - Add/Edit a vendor, note the vendor type is now a dropdown selection 8 - Save with a value 9 - Confirm the description shows in results and vendor page -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:03:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:03:28 +0000 Subject: [Koha-bugs] [Bug 31017] Add type field for vendors In-Reply-To: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31017-70-PnocdixEO0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31017 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |katrin.fischer at bsz-bw.de Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:04:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:04:55 +0000 Subject: [Koha-bugs] [Bug 27272] Move C4::Items::GetItemsInfo to Koha namespace In-Reply-To: <bug-27272-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27272-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27272-70-FeuNfy8cb8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27272 --- Comment #42 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Jonathan Druart from comment #32) > Ha, and question, see catalogue/detail.pl > We are using an order_by that was initially used in GetItemsInfo. Should it > be the default order by for all item searches? > I am also stuck trying to replicate the previous order_by behaviour for > serials (see the FIXME there) I wonder if we should add ordering into the Koha::Biblio->items method? I'm not sure how it would/could affect embedding/prefetching/joining/caching... But it would be nice to consistently order.. binding on whether the bib is a serial or otherwise to get the 'right' ordering? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:09:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:09:22 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-W1RSbXalxq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131998|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:10:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:10:28 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-HfyCjvbY2p@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:10:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:10:32 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-AqFipq03Mh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135730|0 |1 is obsolete| | Attachment #136256|0 |1 is obsolete| | --- Comment #29 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136446 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136446&action=edit Bug 30327: Fix tests Corrected variable name on update to match everywhere else Added a default value for limit in buildQuery and only append limit if it has content -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:10:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:10:43 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-YDWFuu99Sn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|johanna.raisa at koha-suomi.fi |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:11:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:11:10 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-E48xa1Fune@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136446|0 |1 is obsolete| | --- Comment #30 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136447 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136447&action=edit Bug 30327: Add options for sorting components This patch adds two new sysprefs: ComponentSortField ComponentSortOrder These allow the user to choose how components should be sorted when displaying on the details page of a record, and the corresponding search for all components This also updates our search from simple_search_compat to search_compat to allow for sorting options Note: Some sorting under ES is unclear - this is a separate issue to be invesitgated Our Zebra index does not offer 'record number' sorting, I will file a bug for that To test: 1 - Enable UseControlNumber (or not) 2 - Add some components to a record by control number or title depending on above 3 - Enable ShowComponentRecords syspref 4 - View the record that has components 5 - Note they are not sorted 6 - Apply patch, updatedatabase 7 - reload record 8 - Note components are sorted by title ascending 9 - Try different values for ComponentSortField and ComponentSortOrder 10 - Confirm sorting changes with system preferences 11 - Repeat test on staff and opac, with ES and Zebra search engines Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:11:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:11:14 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-mV33oSU9UN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #31 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136448 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136448&action=edit Bug 30327: Fix tests Corrected variable name on update to match everywhere else Added a default value for limit in buildQuery and only append limit if it has content -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:27:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:27:13 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-gQOaK0hdCm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 Simon Hohl <simon.hohl at dainst.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |simon.hohl at dainst.org --- Comment #17 from Simon Hohl <simon.hohl at dainst.org> --- This also affects table filtering in /cgi-bin/koha/acqui/parcel.pl?invoiceid=<number>. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:45:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:45:05 +0000 Subject: [Koha-bugs] [Bug 15048] Genre/Form (655) searches fail on searches with $x 'General subdivision' subfield values In-Reply-To: <bug-15048-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15048-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15048-70-rw1xzjEe0U@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15048 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:45:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:45:10 +0000 Subject: [Koha-bugs] [Bug 15048] Genre/Form (655) searches fail on searches with $x 'General subdivision' subfield values In-Reply-To: <bug-15048-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15048-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15048-70-CMRVRDd1Ut@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15048 --- Comment #17 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136449 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136449&action=edit Bug 15048: Index all possible searched subfields for index-term-genre Currently we only index a - but we can setup the system such that avxyz are searched To test: 1 - define both a 655$a *and* 655$x value in a bib, save, reindex 2 - Set system preferences: TraceSubjectSubdivisions: Include TraceCompleteSubfields: Force 3 - View the record edited above in the opac 4 - Click on the subject heading 5 - No results found 6 - Copy zebra files: sudo cp ./etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml \ /etc/koha/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml sudo cp etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl \ /etc/koha/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl 7 - restart all and reindex 8 - Click on the subject heading in OPAC 9 - Sucess! 10 - Repeat with other fields (vyz) 11 - Repeat under ES, reindexing and resetting mappings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 13:46:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 11:46:14 +0000 Subject: [Koha-bugs] [Bug 15048] Genre/Form (655) searches fail on searches with $x 'General subdivision' subfield values In-Reply-To: <bug-15048-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15048-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15048-70-26Dl2leySp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15048 --- Comment #18 from Nick Clemens <nick at bywatersolutions.com> --- (In reply to Marcel de Rooy from comment #16) > QA Comment: > Thanks for your patch, Mason. > I think it still needs some attention: > [1] You add $x when indexing 655. Please note that the whole field 655 is > already indexed under term Subject. (So you would only add to > Index-term-genre.) But the XSLT just looks at Subject (and only with some > specific settings for UseAuthoritiesForTracings and > TraceSubjectSubdivisions). Normally you would search for the authority > number (an). > So, it does not seem to be necessary to add it. > Please explain why you need it. See updated test plan - with those settings we are specifically searching genre index and fields are needed > [2] If it should be necessary, what about $v $y and $z ? Indeed - added -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 14:00:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 12:00:53 +0000 Subject: [Koha-bugs] [Bug 29173] Button "replace authority record via Z39/50/SRU" doesn't pre-fill In-Reply-To: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29173-70-ZuU2KIayps@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29173 --- Comment #33 from David Nind <david at davidnind.com> --- (In reply to Thibaud Guillot from comment #32) > Maybe I miss the rebase, can you test it now and tell me if you have the > same issue ? I still have the same issue. Testing using koha-testing-docker, current master, flush_memcached, restart_all, and cleared browser cache. For what it's worth: I was getting a similar error with some recalls related bugs, such as bug 30971. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 14:36:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 12:36:41 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-ygZIl4GW5k@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #18 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- (In reply to Victor Grousset/tuxayo from comment #17) > Directly on topic for this ticket: we need in bugzilla to not be able to > choose "push to oldoldstable" because the last RMaint should elect "Needs > documenting", always. I'm not sure that's true. We only document enhancements and new features afaik. We don't document bug fixes, which is usually what is backported to older versions. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:19:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:19:18 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-PaQ5oZyxGs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 --- Comment #48 from David Nind <david at davidnind.com> --- Test fail for t/Koha_Template_Plugin_Koha.t: prove t/Koha_Template_Plugin_Koha.t t/Koha_Template_Plugin_Koha.t .. 1/5 # Failed test 'CSVDelimiter() returns comma when preference is empty string' # at t/Koha_Template_Plugin_Koha.t line 99. # got: ';' # expected: ',' # Failed test 'CSVDelimiter() returns comma when preference is undefined' # at t/Koha_Template_Plugin_Koha.t line 102. # got: ';' # expected: ',' # Looks like you failed 2 tests of 8. # Failed test 'Koha::Template::Plugin::Koha::CSVDelimiter tests' # at t/Koha_Template_Plugin_Koha.t line 115. # Looks like you failed 1 test of 5. t/Koha_Template_Plugin_Koha.t .. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/5 subtests Test Summary Report ------------------- t/Koha_Template_Plugin_Koha.t (Wstat: 256 Tests: 5 Failed: 1) Failed test: 5 Non-zero exit status: 1 Files=1, Tests=5, 0 wallclock secs ( 0.03 usr 0.00 sys + 0.42 cusr 0.04 csys = 0.49 CPU) Result: FAIL Like Nick, I think comma separated makes more sense to me as the default. (comment #46). I tested a couple of places and exported as tab separated - now works as per the test plan (properly tab separated, not the word tabulation). Places tested: Item search, Log viewer. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:31:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:31:09 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-ywZQZoNqDI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136430|0 |1 is obsolete| | --- Comment #28 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136450 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136450&action=edit Bug 30988: Add generic OpenIDConnect client implementation A generic OpenID Connect implementation. Test plan: 1- Set up an OAuth2 provider that has a discovery doc (e.g. for google it's https://accounts.google.com/.well-known/openid-configuration) and note down the client id and client secret. Docs to help setup: google: https://developers.google.com/identity/protocols/oauth2/openid-connect https://koha-community.org/manual/20.11/en/html/administrationpreferences.html gitlab: https://docs.gitlab.com/ee/integration/oauth_provider.html 2- Apply the patch 3- Run atomicupdate to update database 4- Configure system preferences: a- Set OIDC to Yes b- Enter the url to the discovery doc of your OAuth2 provider c- Fill OIDCOAuth2ClientID with noted client id d- Fill OIDCOAuth2ClientSecret with noted client secret e- Change OIDCProviderName to change the text displayed on OIDC login buttons f- Configure the other related system preferences as you wish. They shoud work the same way as the similar googleopenidconnect system preferences. 5- If OIDCAutoRegister is set to Don't allow, have a koha account with the same email as the one used by your OAuth2 provider. 6- In OPAC, sign in using OpenID Connect. 7- You may have to log into your OpenID provider account and accept conditions. It should finally log you into the koha account. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:31:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:31:13 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-OtKfYkiBfp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136431|0 |1 is obsolete| | --- Comment #29 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136451 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136451&action=edit Bug 30988: Moving id token validation code into a module -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:33:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:33:05 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-kS4ooypTme@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:34:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:34:09 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-0vaJduc5Ad@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #19 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- I think the 'Needs documenting' tag serves as a list of all bugs that need an eye cast to make the decision as to whether to document or not.. your right, the majority of bugfixes will likely be a simple switch to 'Resolved Fixed' and thus very quick to remove from the queue (I've already done that to a couple in fact). But there are some bugfixes with minor changes that affect functionality that I feel are worth updating documentation for.. so it's not a hard and fast rule. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:35:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:35:31 +0000 Subject: [Koha-bugs] [Bug 30628] Batch borrower modifications only affect the current page In-Reply-To: <bug-30628-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30628-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30628-70-pzm608QsfJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30628 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED CC| |martin.renvoize at ptfs-europe | |.com Status|Needs documenting |RESOLVED --- Comment #9 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Bugfix with not visual or workflow change. No documentation changes needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:35:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:35:42 +0000 Subject: [Koha-bugs] [Bug 30628] Batch borrower modifications only affect the current page In-Reply-To: <bug-30628-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30628-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30628-70-8FJfgc5197@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30628 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Documentation| |Martin Renvoize contact| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:36:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:36:39 +0000 Subject: [Koha-bugs] [Bug 24001] Cannot edit card template In-Reply-To: <bug-24001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24001-70-waEKLpk8vI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24001 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Documentation| |Martin Renvoize contact| | Resolution|--- |FIXED Status|Needs documenting |RESOLVED --- Comment #63 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Bugfix with not visual or workflow changes, no documentation updates required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:36:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:36:41 +0000 Subject: [Koha-bugs] [Bug 17258] [OMNIBUS] MySQL 5.7 In-Reply-To: <bug-17258-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-17258-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-17258-70-boRcT76Cxw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17258 Bug 17258 depends on bug 24001, which changed state. Bug 24001 Summary: Cannot edit card template https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24001 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:37:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:37:52 +0000 Subject: [Koha-bugs] [Bug 30630] Checking in a waiting hold at another branch when HoldsAutoFill is enabled causes errors In-Reply-To: <bug-30630-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30630-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30630-70-wFct5zaLXM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30630 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED CC| |martin.renvoize at ptfs-europe | |.com --- Comment #9 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Bugfix, no workflow of visual changes.. No documentation updates required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:37:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:37:59 +0000 Subject: [Koha-bugs] [Bug 30630] Checking in a waiting hold at another branch when HoldsAutoFill is enabled causes errors In-Reply-To: <bug-30630-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30630-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30630-70-u3jH8uvP7g@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30630 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Documentation| |Martin Renvoize contact| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:38:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:38:52 +0000 Subject: [Koha-bugs] [Bug 29537] Simplify auto-renewal code in CanBookBeRenewed In-Reply-To: <bug-29537-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29537-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29537-70-gWjldYsrv3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29537 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Status|Needs documenting |RESOLVED Documentation| |Martin Renvoize contact| | Resolution|--- |FIXED --- Comment #14 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Architectural change, no workflow differences. No documentation changes required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:38:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:38:53 +0000 Subject: [Koha-bugs] [Bug 29623] Cache effective circulation rules In-Reply-To: <bug-29623-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29623-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29623-70-mQMM27Zdq0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29623 Bug 29623 depends on bug 29537, which changed state. Bug 29537 Summary: Simplify auto-renewal code in CanBookBeRenewed https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29537 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:39:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:39:46 +0000 Subject: [Koha-bugs] [Bug 30565] Field stockrotationrotas.description should be NOT NULL, title UNIQUE In-Reply-To: <bug-30565-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30565-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30565-70-CyBsSqoyY2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30565 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Needs documenting |RESOLVED CC| |martin.renvoize at ptfs-europe | |.com Documentation| |Martin Renvoize contact| | --- Comment #12 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Architectural fix, no documentation changes required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:39:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:39:46 +0000 Subject: [Koha-bugs] [Bug 30486] [OMNIBUS] Synchronize database schema with (older) database revisions In-Reply-To: <bug-30486-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30486-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30486-70-3Cz7fX2LXS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30486 Bug 30486 depends on bug 30565, which changed state. Bug 30565 Summary: Field stockrotationrotas.description should be NOT NULL, title UNIQUE https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30565 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:44:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:44:56 +0000 Subject: [Koha-bugs] [Bug 30572] Field search_marc_to_field.sort needs syncing too In-Reply-To: <bug-30572-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30572-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30572-70-iQNdWSPj1O@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30572 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Documentation| |Martin Renvoize contact| | Status|Needs documenting |RESOLVED --- Comment #15 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Another background thing, Not documentation changes required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:44:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:44:56 +0000 Subject: [Koha-bugs] [Bug 30486] [OMNIBUS] Synchronize database schema with (older) database revisions In-Reply-To: <bug-30486-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30486-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30486-70-gYIfvKukQm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30486 Bug 30486 depends on bug 30572, which changed state. Bug 30572 Summary: Field search_marc_to_field.sort needs syncing too https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30572 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:45:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:45:48 +0000 Subject: [Koha-bugs] [Bug 30143] OAI-PMH provider may end up in an eternal loop due to missing sort In-Reply-To: <bug-30143-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30143-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30143-70-1mibnsAfZe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30143 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Resolution|--- |FIXED Status|Needs documenting |RESOLVED Documentation| |Martin Renvoize contact| | --- Comment #10 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Architectural fix, no documentation change required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:46:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:46:36 +0000 Subject: [Koha-bugs] [Bug 30449] Missing FK constraint on borrower_attribute_types In-Reply-To: <bug-30449-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30449-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30449-70-BwRRp5F17i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30449 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Documentation| |Martin Renvoize contact| | Resolution|--- |FIXED --- Comment #17 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Architectural change, no documentation update required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:46:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:46:37 +0000 Subject: [Koha-bugs] [Bug 30486] [OMNIBUS] Synchronize database schema with (older) database revisions In-Reply-To: <bug-30486-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30486-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30486-70-DlxDPfAw5o@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30486 Bug 30486 depends on bug 30449, which changed state. Bug 30449 Summary: Missing FK constraint on borrower_attribute_types https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30449 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:46:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:46:37 +0000 Subject: [Koha-bugs] [Bug 30899] Upgrade sometimes fails at "Upgrade to 21.11.05.004" In-Reply-To: <bug-30899-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30899-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30899-70-r19lu6OxSA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30899 Bug 30899 depends on bug 30449, which changed state. Bug 30449 Summary: Missing FK constraint on borrower_attribute_types https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30449 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:47:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:47:10 +0000 Subject: [Koha-bugs] [Bug 22379] ILS-DI Method "CancelHold" doesn't check CanReserveBeCanceledFromOpac In-Reply-To: <bug-22379-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22379-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22379-70-EbFMrd0gTd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22379 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|ILS-DI Method "CancelHold" |ILS-DI Method "CancelHold" |don't check |doesn't check |CanReserveBeCanceledFromOpa |CanReserveBeCanceledFromOpa |c |c -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:47:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:47:42 +0000 Subject: [Koha-bugs] [Bug 31026] New: Error while upgrading Message-ID: <bug-31026-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31026 Bug ID: 31026 Summary: Error while upgrading Change sponsored?: --- Product: Koha Version: 21.11 Hardware: All OS: All Status: NEW Severity: blocker Priority: P5 - low Component: Database Assignee: koha-bugs at lists.koha-community.org Reporter: keith at thesorbos.com QA Contact: testopia at bugs.koha-community.org While upgrading my database, I get the following error: Updating database structure Update errors : Upgrade to 21.12.00.016 [13:43:24]: Bug 30060 - Update user_permissions to add primary key and remove null option from code column ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate column name 'temp' at /usr/share/koha/lib/C4/Installer.pm line 739 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:48:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:48:00 +0000 Subject: [Koha-bugs] [Bug 31026] Error while upgrading In-Reply-To: <bug-31026-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31026-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31026-70-u5AoUZxhxC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31026 Keith Sorbo <keith at thesorbos.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |keith at thesorbos.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:48:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:48:30 +0000 Subject: [Koha-bugs] [Bug 22379] ILS-DI Method "CancelHold" doesn't check CanReserveBeCanceledFromOpac In-Reply-To: <bug-22379-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22379-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22379-70-ikmTWyN8L6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22379 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED Documentation| |Martin Renvoize contact| | --- Comment #18 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- API code correction, no documentation change required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:49:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:49:13 +0000 Subject: [Koha-bugs] [Bug 30366] Warn when running automatic_item_modification_by_age.pl In-Reply-To: <bug-30366-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30366-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30366-70-8HEwGEWjBC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30366 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Documentation| |Martin Renvoize contact| | Resolution|--- |FIXED --- Comment #8 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Warning cleanup, no documentation change required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:49:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:49:13 +0000 Subject: [Koha-bugs] [Bug 25790] [OMNIBUS] warnings removal In-Reply-To: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25790-70-cQXStJ7bFI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 Bug 25790 depends on bug 30366, which changed state. Bug 30366 Summary: Warn when running automatic_item_modification_by_age.pl https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30366 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:50:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:50:52 +0000 Subject: [Koha-bugs] [Bug 30620] Add a warning close to /*!VERSION lines in kohastructure.sql In-Reply-To: <bug-30620-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30620-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30620-70-Hi1gXsN1h5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30620 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Documentation| |Martin Renvoize contact| | Resolution|--- |FIXED --- Comment #10 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Documentation for developers/administrators.. no wider documentation change is required. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 15:54:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 13:54:57 +0000 Subject: [Koha-bugs] [Bug 30599] Allow archiving multiple suggestions In-Reply-To: <bug-30599-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30599-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30599-70-3rPf3cZYC5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30599 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Documentation| |Martin Renvoize contact| | CC| |martin.renvoize at ptfs-europe | |.com --- Comment #10 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- First one I've come across that's backported and affects documentation.. https://koha-community.org/manual/22.05/en/html/acquisitions.html?highlight=suggestion#managing-purchase-suggestions The screenshot of the 'Suggestions management' page will need replacing to include the new 'Archive selected' box that appears. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:01:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:01:09 +0000 Subject: [Koha-bugs] [Bug 31016] Highlight item in holdings when searching by barcode In-Reply-To: <bug-31016-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31016-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31016-70-pJardd39XB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31016 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:25:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:25:35 +0000 Subject: [Koha-bugs] [Bug 31027] New: Incorrect col sizing for Suggestions Management Message-ID: <bug-31027-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31027 Bug ID: 31027 Summary: Incorrect col sizing for Suggestions Management Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff Client Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Bug 30599 introduced a new 'Archive selected' form set into the Suggestion management area.. however it did not adapt the existing elements to fit on the page properly and thus it wraps. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:26:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:26:31 +0000 Subject: [Koha-bugs] [Bug 31013] Reserved words as branchcodes cause search error in Elasticsearch In-Reply-To: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31013-70-yh9G06Ya5m@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:29:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:29:01 +0000 Subject: [Koha-bugs] [Bug 31027] Incorrect col sizing for Suggestions Management In-Reply-To: <bug-31027-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31027-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31027-70-z6rgwmJhB0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31027 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |oleonard at myacpl.org |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:29:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:29:10 +0000 Subject: [Koha-bugs] [Bug 31027] Incorrect col sizing for Suggestions Management In-Reply-To: <bug-31027-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31027-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31027-70-7lAnZxK97e@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31027 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30599 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30599 [Bug 30599] Allow archiving multiple suggestions -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:29:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:29:10 +0000 Subject: [Koha-bugs] [Bug 30599] Allow archiving multiple suggestions In-Reply-To: <bug-30599-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30599-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30599-70-aNrNGOEnsT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30599 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31027 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31027 [Bug 31027] Incorrect col sizing for Suggestions Management -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:29:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:29:41 +0000 Subject: [Koha-bugs] [Bug 30599] Allow archiving multiple suggestions In-Reply-To: <bug-30599-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30599-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30599-70-kaaxli0oiK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30599 --- Comment #11 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Holding off on updating the docs screenshots whilst we consider bug 31027 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:32:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:32:12 +0000 Subject: [Koha-bugs] [Bug 30599] Allow archiving multiple suggestions In-Reply-To: <bug-30599-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30599-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30599-70-4VkcSnN8sk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30599 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:33:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:33:52 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-zdYkmGGVZb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #20 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Found a clear example for this.. bug 30599.. backported and does require some docs updates. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:34:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:34:39 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-pvg8VFN6oG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:34:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:34:43 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-uhm2w4Wucp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136417|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:34:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:34:47 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-GNw0k2Jd93@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136418|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:35:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:35:12 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-WSO8GxeAMB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 --- Comment #40 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136452 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136452&action=edit Bug 25669: Use include_type_name parameter in ES calls This patch includes the parameter: include_type_name on our ES calls It removes the deprecation warning we are seeing, and should allow using ES7 with no other chnages. For ES8 we will need to remove the hardcoded type, I would suggest a second patch, with a new syspref "ElasticsearchLegacyType" set to 'True' by default. Description can explain that this must be set to false, and data reindexed after upgrading to ES7 and before upgrading to ES8 - then we can drop this pref when we drop ES7 support When we drop ES6 support the pref can be set default true for upgrades, default 'false' for new installs Signed-off-by: Julian Maurice <julian.maurice at biblibre.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:35:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:35:19 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-FzRkvnmOvX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 --- Comment #41 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136453 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136453&action=edit Bug 25669: (follow-up) Minor fixes Bulk doesn't support include_type_name, update requirement to Search::Elasticseach at 6.80, and remove data type name from tests. Signed-off-by: Julian Maurice <julian.maurice at biblibre.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:36:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:36:18 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-f7IEdgQaSI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:36:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:36:21 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-A0xIEW8xi0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 --- Comment #42 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:36:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:36:24 +0000 Subject: [Koha-bugs] [Bug 31013] Reserved words as branchcodes cause search error in Elasticsearch In-Reply-To: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31013-70-IuUB3ja2G8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:36:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:36:27 +0000 Subject: [Koha-bugs] [Bug 31013] Reserved words as branchcodes cause search error in Elasticsearch In-Reply-To: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31013-70-dJSPwIMjGm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 --- Comment #4 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:36:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:36:31 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-lkMIWx2DLK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #21 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Jonathan has highlighted that this may create a bit of bugzilla spam as part of the process.. if every bug goes through this new state those of us that are cc on a metric tonne of bugs will get an email for the change to 'Resolved fixed' I like that we're encouraging 'someone' to look at every bug and assess whether it needs a docs change or not.. but perhaps we could 'burden' the rmaints to be a little picky and do some of the obvious filterings at 'Not backporting' time.. when it's obviously a behind-the-scenes change that doesn't affect workflow, UX or UI they could just skip straight to Resolved Fixed still instead of using the middle 'Needs documenting' ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:41:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:41:49 +0000 Subject: [Koha-bugs] [Bug 30947] Simplify date handling in CanbookBeIssued In-Reply-To: <bug-30947-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30947-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30947-70-eyUnw7b2IL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30947 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:41:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:41:52 +0000 Subject: [Koha-bugs] [Bug 30947] Simplify date handling in CanbookBeIssued In-Reply-To: <bug-30947-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30947-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30947-70-x5L44YWhKB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30947 --- Comment #10 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 16:45:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 14:45:46 +0000 Subject: [Koha-bugs] [Bug 31028] New: Enhance 'Report a problem' to specify catalogue problems Message-ID: <bug-31028-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31028 Bug ID: 31028 Summary: Enhance 'Report a problem' to specify catalogue problems Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org Currently we have a generic 'Report a problem' link at the bottom of all pages on the OPAC.. however there's no easy way to report a problem about a specific biblio. We could add a more specific 'Report a problem with this record' option on the details display and record the biblionumber so staff can quickly see the record in context. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 17:00:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 15:00:12 +0000 Subject: [Koha-bugs] [Bug 31028] Enhance 'Report a problem' to specify catalogue problems In-Reply-To: <bug-31028-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31028-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31028-70-tVCvgm4qBk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31028 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |4461 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4461 [Bug 4461] Add a context-sensitive report a problem process -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 17:00:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 15:00:12 +0000 Subject: [Koha-bugs] [Bug 4461] Add a context-sensitive report a problem process In-Reply-To: <bug-4461-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-4461-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-4461-70-iQdxW5qwV2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4461 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31028 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31028 [Bug 31028] Enhance 'Report a problem' to specify catalogue problems -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 17:01:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 15:01:38 +0000 Subject: [Koha-bugs] [Bug 31028] Enhance 'Report a problem' to specify catalogue problems In-Reply-To: <bug-31028-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31028-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31028-70-YNLWWKixeV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31028 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=25466 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 17:01:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 15:01:38 +0000 Subject: [Koha-bugs] [Bug 25466] Review 'problem_reports' column names and types In-Reply-To: <bug-25466-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25466-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25466-70-MSaL05JrDD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25466 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=31028 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 17:05:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 15:05:25 +0000 Subject: [Koha-bugs] [Bug 23838] Add ability to view item renew history In-Reply-To: <bug-23838-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23838-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23838-70-wOa5CTVl6w@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23838 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|tomascohen at gmail.com |testopia at bugs.koha-communit | |y.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 17:35:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 15:35:46 +0000 Subject: [Koha-bugs] [Bug 31029] New: ILL request ID in ILL history table should link to the ILL request if permissions allow for it Message-ID: <bug-31029-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31029 Bug ID: 31029 Summary: ILL request ID in ILL history table should link to the ILL request if permissions allow for it Change sponsored?: --- Product: Koha Version: 20.11 Hardware: All OS: All Status: NEW Keywords: Academy Severity: enhancement Priority: P5 - low Component: ILL Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de When a patron has placed ILL requests, they are shown in the patron account in a new tab "ILL request history". >From this table, there is no way to get to the ILL request in the ILL module. We should link the request ID if the user has permissions to access the module. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 17:38:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 15:38:35 +0000 Subject: [Koha-bugs] [Bug 31030] New: Add a tab in patron account for pending ILL requests (staff) Message-ID: <bug-31030-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31030 Bug ID: 31030 Summary: Add a tab in patron account for pending ILL requests (staff) Change sponsored?: --- Product: Koha Version: 20.11 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: ILL Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de When a user has placed ILL requests the open requests are only visible in the ILL request history tab. This table can grow over time and is not a good way to quickly see any outstanding requests. We should add a new tab to the table at the bottom of the checkouts and details tabs that displays the pending/awaiting pick-up ILL requests. The status to display might need to be defined in a system preference, as not all backends do have a 'awaiting pickup' status. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 18:21:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 16:21:10 +0000 Subject: [Koha-bugs] [Bug 31031] New: MarkLostItemsAsReturned does not work with batch item modification Message-ID: <bug-31031-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31031 Bug ID: 31031 Summary: MarkLostItemsAsReturned does not work with batch item modification Change sponsored?: --- Product: Koha Version: 21.11 Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: System Administration Assignee: koha-bugs at lists.koha-community.org Reporter: cbrannon at cdalibrary.org QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com If you choose the "from the batch item modification tool" in the MarkLostItemsAsReturned preference, it does not work. Status is changed as usual, but it does not check the item(s) in. This means for now, staff have to do this manually, one item at a time! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 18:51:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 16:51:08 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: <bug-12446-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12446-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12446-70-14QEZ3mhkD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 18:51:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 16:51:13 +0000 Subject: [Koha-bugs] [Bug 12446] Enable an adult to have a guarantor In-Reply-To: <bug-12446-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12446-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12446-70-iWiUVARXQj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12446 --- Comment #216 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 18:51:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 16:51:18 +0000 Subject: [Koha-bugs] [Bug 30950] timepicker.inc is no longer used and should be removed In-Reply-To: <bug-30950-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30950-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30950-70-v9yTiLa5og@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30950 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 18:51:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 16:51:21 +0000 Subject: [Koha-bugs] [Bug 30950] timepicker.inc is no longer used and should be removed In-Reply-To: <bug-30950-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30950-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30950-70-j0hvRW0RNf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30950 --- Comment #5 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 18:56:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 16:56:40 +0000 Subject: [Koha-bugs] [Bug 31031] MarkLostItemsAsReturned does not work with batch item modification In-Reply-To: <bug-31031-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31031-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31031-70-gvIPOggaGf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31031 --- Comment #1 from Christopher Brannon <cbrannon at cdalibrary.org> --- FYI, what we expect with the batch item modification is the same behavior we get if we change the lost status on an individual item in the items tab. With this setting set, we can change the lost status of the item, and the item is checked in, but the item charge is left on the patron account. This is ultimately what we want so that we can delete the item without removing the charge. We do this for long lost items that we need to get out of the system, but still want the patron to pay for. Currently, with just that setting set, it changes the status, but doesn't check the item in. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 19:32:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 17:32:00 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-MIKKzkbq8C@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 19:32:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 17:32:04 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-nD6L8YIJgv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 --- Comment #1 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136454 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136454&action=edit Bug 31005: Unit test -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 19:32:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 17:32:08 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-5FfLv92nfb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 --- Comment #2 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136455 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136455&action=edit Bug 31005: Don't inlcude attributes only required for other categories To test: 1 - Create a new patron attribute - check boxes to make it mandatory and visible etc. 2 - Limit it to 'Patron' or other category 3 - Edit a patron not in that category 4 - Attempt to save 5 - 500 Error 6 - Missing mandatory extended attribute (type=MAND) 7 - Apply patch 8 - Attempt aedit again 9 - It succeeds! 10 - Edit a patron in the category with MAND required 11 - on the edit page, right click teh attribute - click 'delete node' 12 - Submit the form 13 - 500 error, but this time that's good, the attribute check works -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 19:32:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 17:32:28 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-kYbZxZBeSK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | Severity|normal |critical -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 19:40:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 17:40:24 +0000 Subject: [Koha-bugs] [Bug 31031] MarkLostItemsAsReturned does not work with batch item modification In-Reply-To: <bug-31031-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31031-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31031-70-QNGgY5GDzi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31031 Sara Brown <sbrown at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sbrown at bywatersolutions.com --- Comment #2 from Sara Brown <sbrown at bywatersolutions.com> --- In my testing, it depends on the lost status prior to the batch modification: -If I add a lost status via batch item modification on an item that is checked out but not currently lost, it *does* check the item in -If I run batch item modification on a lost item that is still checked out to change it to a different lost status, it *doesn't* check the item in -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 19:40:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 17:40:43 +0000 Subject: [Koha-bugs] [Bug 31031] MarkLostItemsAsReturned does not work with batch item modification In-Reply-To: <bug-31031-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31031-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31031-70-M7zXypMrqd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31031 Sara Brown <sbrown at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30478 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 19:40:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 17:40:43 +0000 Subject: [Koha-bugs] [Bug 30478] Unexpected behavior in patrons' accounts when un-losing items via batch item modification In-Reply-To: <bug-30478-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30478-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30478-70-wKQPd1AwdB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30478 Sara Brown <sbrown at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=31031 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 19:47:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 17:47:28 +0000 Subject: [Koha-bugs] [Bug 31032] New: Patron attributes branch limitations are unclear Message-ID: <bug-31032-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31032 Bug ID: 31032 Summary: Patron attributes branch limitations are unclear Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com When a patron attribute is limited to some branches it seems to mean: 1 - That attribute shows on moremember, and on opac to patron, but not in patron edit screen if signed in at a different branch 2 - It can be set for any patron from any branch on staff side, but only by libraries from the limited list 3 - The code in extended_attributes appears to ignore all branch specific mandatory attributes: 1707 my @required_attribute_types = 1708 Koha::Patron::Attribute::Types->search( 1709 { 1710 mandatory => 1, 1711 category_code => [ undef, $self->categorycode ], 1712 'borrower_attribute_types_branches.b_branchcode' => 1713 undef, 1714 }, 1715 { join => 'borrower_attribute_types_branches' } 1716 )->get_column('code'); -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 19:47:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 17:47:44 +0000 Subject: [Koha-bugs] [Bug 31032] Patron attributes branch limitations are unclear In-Reply-To: <bug-31032-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31032-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31032-70-3wGCEBuimo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31032 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha at gmail. | |com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 20:06:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 18:06:55 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-CumWFpEH7F@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133409|0 |1 is obsolete| | --- Comment #75 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136456 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136456&action=edit Bug 27113: ElasticSearch: Autocomplete in input search Usually the user knows only part of the title of the book or only the name of the author, etc. When he start search something Koha (ElasticSearch) predicts the rest of a word or expression which user is typing. Autocomplete predicts that thanks to index of ElasticSearch. TEST PLAN Important! In this patch we need to do reindex ElasticSearch. ElasticSearch must have all information in his index. 1. Go Intranet -> Preference -> SearchEngine -> ElasticSearch !! APPLY PATCH !! 2. Mapping is good (Intranet -> Catalog -> Search engine configuration (Elasticsearch) ). !Recommended 'Reset Mapping' -> 'Yes' 3. In your koha-conf.xml file you must have good <index_name> for <elasticsearch> and version ES 4. Update Preference: ./installer/data/mysql/updatedatabase.pl If that passe good you can look the lines: - DEV atomic update: bug_27113-elasticsearch_autocomplete_input_search.perl - Upgrade to XXX done : Bug 27113 - Autocomplete input on main page with elasticsearch 5. After that we can look two options in the preferences: - IntranetAutocompleteElasticSearch; - OPACAutocompleteElasticSearch; 4. For add information in the index we must run script for reindexing: ./misc/search_tools/rebuild_elasticsearch.pl -v -d 5. Waiting for the end of indexing 6. Go on Preference and find : - IntranetAutocompleteElasticSearch; - OPACAutocompleteElasticSearch; Value "Show" turn on autocomplete. 7. Now we have Autocomplete for Intranet/OPAC search input (advanced search also). Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 20:07:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 18:07:00 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-KD0RBNrItt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133410|0 |1 is obsolete| | --- Comment #76 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136457 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136457&action=edit Bug 27113: (follow-up) Move new CSS to main SCSS files This patch removes the separate CSS files added for the autocomplete feature and puts them into the "main" SCSS files. I think a separate file isn't necessary because the amount of CSS it adds is so small. I've also tweaked the style of the autocomplete menu shown when you use the arrow keys to navigate through the autocomplete choices. I think the previous white-on-light-green didn't have enough contrast. To test you must rebuild the OPAC and staff client CSS: https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client Follow the previous test plan, being careful to observe how it works when the autocomplete menu has been triggered and you use the arrow keys to navigate through the results. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 20:26:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 18:26:39 +0000 Subject: [Koha-bugs] [Bug 31018] Allow patrons to batch cancel holds In-Reply-To: <bug-31018-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31018-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31018-70-ynWIrw0HSx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31018 Barbara Johnson <barbara.johnson at bedfordtx.gov> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |barbara.johnson at bedfordtx.g | |ov --- Comment #1 from Barbara Johnson <barbara.johnson at bedfordtx.gov> --- +1 That would be a great feature. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 20:45:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 18:45:38 +0000 Subject: [Koha-bugs] [Bug 24239] Let the ILL module set ad hoc hard due dates In-Reply-To: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24239-70-pyfSiPvAGI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24239 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135943|0 |1 is obsolete| | --- Comment #28 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136458 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136458&action=edit Bug 24239: Add column illrequests.date_due Signed-off-by: Katrin Fischer <katrin.fischer at bsz-bw.de> Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 20:45:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 18:45:43 +0000 Subject: [Koha-bugs] [Bug 24239] Let the ILL module set ad hoc hard due dates In-Reply-To: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24239-70-okpLRZib6S@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24239 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135944|0 |1 is obsolete| | --- Comment #29 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136459 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136459&action=edit Bug 24239: Unit tests Signed-off-by: Katrin Fischer <katrin.fischer at bsz-bw.de> Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 20:45:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 18:45:48 +0000 Subject: [Koha-bugs] [Bug 24239] Let the ILL module set ad hoc hard due dates In-Reply-To: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24239-70-RMxLABmYhP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24239 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135945|0 |1 is obsolete| | --- Comment #30 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136460 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136460&action=edit Bug 24239: Let the ILL module set ad hoc hard due dates The Swedish Libris ILL backend lets librarians store a specific due date when an ILL loan is received. This patch set adds a new date_due column to the illrequets table that can be used by the different backends to store a due date. If an illrequest has the date due set, it will be used when the item is checked out instead of the calculation using the circulation conditions. To test: - Apply the patch and make sure the atomic database update is run - Use the FreeForm backend to add one ILL request. Take note of the illrequest_id of the request you created. We refer to this as "x" below. - Connect a biblio (with biblionumber y), that has an item with a barcode, to the ILL request directly in the database: UPDATE illrequests SET biblio_id = y WHERE illrequest_id = x; - Next we set the due date, this would normally be done by or from the backend. UPDATE illrequests SET date_due = "2023-01-01" WHERE illrequest_id = x; - Go to circulation and issue the barcode of the item to the patron associated with the FreeForm ILL request. Verify that the loan gets a due date of 2023-01-01. - Ideally: return the item and issue it again through SIP2 and SCO, and verify that the due date is still 2023-01-01. - Verify that there are no regressions, so that regular calculation of due dates still work. - prove t/db_dependent/Circulation.t (Patch description, test plan and partial code credits to Magnus Enger) Signed-off-by: Katrin Fischer <katrin.fischer at bsz-bw.de> (Patch description and test plan rewritten to reflect changes in development) Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 20:45:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 18:45:54 +0000 Subject: [Koha-bugs] [Bug 24239] Let the ILL module set ad hoc hard due dates In-Reply-To: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24239-70-UnBY4HQ7mg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24239 --- Comment #31 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136461 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136461&action=edit Bug 24239: (QA follow-up) Rename date_due => due_date Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 20:46:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 18:46:02 +0000 Subject: [Koha-bugs] [Bug 24239] Let the ILL module set ad hoc hard due dates In-Reply-To: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24239-70-KAno4i4NAz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24239 --- Comment #32 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136462 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136462&action=edit Bug 24239: DBIC update Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 20:54:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 18:54:23 +0000 Subject: [Koha-bugs] [Bug 24239] Let the ILL module set ad hoc hard due dates In-Reply-To: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24239-70-ISPqjOyDy3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24239 --- Comment #33 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136463 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136463&action=edit Bug 24239: (QA follow-up) Make dbrev idempotent Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 20:54:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 18:54:47 +0000 Subject: [Koha-bugs] [Bug 31031] MarkLostItemsAsReturned does not work with batch item modification In-Reply-To: <bug-31031-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31031-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31031-70-hjSO7XfpUV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31031 --- Comment #3 from Christopher Brannon <cbrannon at cdalibrary.org> --- (In reply to Sara Brown from comment #2) > In my testing, it depends on the lost status prior to the batch modification: > > -If I add a lost status via batch item modification on an item that is > checked out but not currently lost, it *does* check the item in > -If I run batch item modification on a lost item that is still checked out > to change it to a different lost status, it *doesn't* check the item in Yes. This is contrary to how the feature works on the item tab. We take advantage of the behavior (how it works on the item tab) so we can leave the charge but check the item in so it can be deleted. Doing this in the batch tool would make this process easier. However, the batch tool isn't working the same way. AND, if there is a way to delete items without removing the charge that is less complicated, I welcome that. But for now, this is what we have to do to retain that charge. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 21:00:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 19:00:23 +0000 Subject: [Koha-bugs] [Bug 24239] Let the ILL module set ad hoc hard due dates In-Reply-To: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24239-70-YJ2iMeNkC0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24239 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 21:00:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 19:00:25 +0000 Subject: [Koha-bugs] [Bug 24239] Let the ILL module set ad hoc hard due dates In-Reply-To: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24239-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24239-70-bo4YLes9j6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24239 --- Comment #34 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 21:00:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 19:00:29 +0000 Subject: [Koha-bugs] [Bug 29057] Use font awesome icons on request.pl In-Reply-To: <bug-29057-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29057-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29057-70-0qFaYULWZT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29057 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 21:00:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 19:00:32 +0000 Subject: [Koha-bugs] [Bug 29057] Use font awesome icons on request.pl In-Reply-To: <bug-29057-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29057-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29057-70-AkzMcZ3tzr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29057 --- Comment #28 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 21:34:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 19:34:58 +0000 Subject: [Koha-bugs] [Bug 31033] New: SIP2 does not correctly handle multiple simultaneous connections Message-ID: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31033 Bug ID: 31033 Summary: SIP2 does not correctly handle multiple simultaneous connections Change sponsored?: --- Product: Koha Version: 21.11 Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: SIP2 Assignee: koha-bugs at lists.koha-community.org Reporter: marka at pobox.com QA Contact: testopia at bugs.koha-community.org If two connections are made to the SIP2 server simultaneously, the second connection does not receive any replies until the first connection is closed. Here is how I reproduced the problem: In terminal #1, use 'telnet koha.ourlibrary.com 6001' to connect to the SIP2 server. Send a 9300CN message to log into SIP2. The SIP2 server sends back the expected 941 response. In terminal #2, use telnet in the same way to connect to the SIP2 server. Then try sending the 9300CN message to log in. The SIP2 does not send any response. In terminal #1, close the telnet connection. Now terminal #2 receives its expected 941 message. This problem was discovered by Lyrasis, a content provider that we are trying to integrate with our library's Koha installation. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 21:40:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 19:40:37 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-uU6Rc3AdRE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #22 from David Nind <david at davidnind.com> --- (In reply to Martin Renvoize from comment #21) > I like that we're encouraging 'someone' to look at every bug and assess > whether it needs a docs change or not.. but perhaps we could 'burden' the > rmaints to be a little picky and do some of the obvious filterings at 'Not > backporting' time.. when it's obviously a behind-the-scenes change that > doesn't affect workflow, UX or UI they could just skip straight to Resolved > Fixed still instead of using the middle 'Needs documenting' ? I think that would work - ideally, they should add a comment about why documentation updates are not required (as you have been doing), -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 22:06:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 20:06:52 +0000 Subject: [Koha-bugs] [Bug 30998] [DOCS] Managing documentation tasks - simplify processes and integrate more with the development process In-Reply-To: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30998-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30998-70-LaKZgbK0Qj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30998 --- Comment #23 from David Nind <david at davidnind.com> --- Comments on comment #15 (Arthur) and comment #16 (Victor). I think Martin has tried to encourage that type of work flow - where a bug isn't pushed until the docs are done, but that hasn't worked that well for Koha. I'd more than welcome, and certainly encourage, contributions from developers for their bugs, but I realise that this may not necessarily be a strength or something they are interested in doing. Everyone can contribute to the docs, but there is a bit of a learning curve (although developers are at least familiar with git, so that is once less hurdle!). I'll take a look at updating our instructions and guidance, which I'm trying to cover in a "Content Development Guide". Slightly off-topic, but I'd probably like developers to focus on adding release notes before they tackle the documentation, for example: - This new feature [does XYZ]. - This enhancement [adds X and Y to Z]. - This fixes [XYZ] so that it does [expected behaviour], [instead of whatever error or problem was happening]. That way, it makes it much easier to identify if documentation updates are required (instead of having to read through the bug history/latest patches). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 22:12:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 20:12:22 +0000 Subject: [Koha-bugs] [Bug 28696] Point of sale: attempting to pay with the "Enter" key cause an overcharge in the database In-Reply-To: <bug-28696-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28696-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28696-70-w32gk002Az@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28696 --- Comment #5 from Marie-Luce Laflamme <marie-luce.laflamme at inlibro.com> --- I can no longer reproduce the problem in Koha 20.05. I'm not sure what went wrong before, maybe some old sales were left in my cache. However, the point-of-sale behaviour has changed since my first test. In 21.05, you are now forced to choose a cash register before the payment confirmation. This new behaviour seems to fix the problem. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 22:35:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 20:35:46 +0000 Subject: [Koha-bugs] [Bug 31034] New: Bib image hidden after changes in bib detail Message-ID: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31034 Bug ID: 31034 Summary: Bib image hidden after changes in bib detail Change sponsored?: --- Product: Koha Version: 21.11 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: sbrown at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org Hiding the Content type line in opacusercss with #content_type { display: none; } somehow is causing the bib image to also be hidden once the page reloads. It doesn't show even if the code is removed but does display again if the cache is cleared. Hiding LOC and DDC details didn't affect the image in this way. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 23:28:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 21:28:47 +0000 Subject: [Koha-bugs] [Bug 28696] Point of sale: attempting to pay with the "Enter" key cause an overcharge in the database In-Reply-To: <bug-28696-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28696-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28696-70-xs3ceiWtsO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28696 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WORKSFORME -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 23:30:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 21:30:58 +0000 Subject: [Koha-bugs] [Bug 31034] Bib image hidden after changes in bib detail In-Reply-To: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31034-70-Z1P7kLEmcb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31034 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com --- Comment #1 from Lucas Gass <lucas at bywatersolutions.com> --- (In reply to Sara Brown from comment #0) > Hiding the Content type line in opacusercss with > > #content_type { > display: none; > } I think this CSS is a red herring. Whats is happening for me, on the OPAC detail page, is this: 1. Turn on Coce and all the image providers 2. Enable Coce for the OPAC 3. Go to a results set and choose a record that clearly shows an image on the results page. 4. Now click on that records detail page, you may see the '#biblio-cover-slider' appear for a second before it disappears. If you have to clear your cache, and reload. 5. View the page source. The #biblio-cover-slider element is present in the source but has been removed when you inspect with your browsers dev tools. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 23 23:31:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 21:31:13 +0000 Subject: [Koha-bugs] [Bug 31034] Bib image hidden after changes in bib detail In-Reply-To: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31034-70-aBG3K4fs0F@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31034 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal Version|21.11 |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 00:45:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 22:45:33 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-E3mICJGnUl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 --- Comment #77 from David Nind <david at davidnind.com> --- Created attachment 136464 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136464&action=edit Bug 27113: (follow-up) Update descriptions for system preferences Update the descriptions for the new system preferences - IntranetAutocompleteElasticSearch and OPACAutocompleteElasticSearch. Test plan: 1. Review the descriptions for the IntranetAutocompleteElasticSearch and OPACAutocompleteElasticSearch system preferences. 2. Make sure they are readable and make sense. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 01:17:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 23:17:25 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-nNHtMt8xNq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 --- Comment #78 from David Nind <david at davidnind.com> --- Created attachment 136465 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136465&action=edit Bug 27113 - Advanced search - more options display issue I've added a follow-up with my suggestions for the descriptions for the two new system preferences. I've changed the status to Failed QA as there is a slight issue with the staff interface advanced search > more options after the patch is applied. See the attached screenshots. Also, something for QA to comment on. The spelling for Elasticsearch - the s in search is not capitalised, as it is the product name (not ElasticSearch). Does this need changing for the preference names, and the other code in the patches? Can confirm everything continues to work otherwise, and I like it! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 01:20:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 23:20:49 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-JeW1OauuNT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 01:34:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 23:34:15 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-G8Ot8FOPKi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Depends on| |10195 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10195 [Bug 10195] Records hidden with OpacSuppression can still be accessed -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 01:34:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 23:34:15 +0000 Subject: [Koha-bugs] [Bug 10195] Records hidden with OpacSuppression can still be accessed In-Reply-To: <bug-10195-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10195-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10195-70-nKjWIiiKlt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10195 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |27685 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 01:43:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 23:43:25 +0000 Subject: [Koha-bugs] [Bug 31035] New: Script to update OPACSuppression field depending on hidden items Message-ID: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31035 Bug ID: 31035 Summary: Script to update OPACSuppression field depending on hidden items Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Command-line Utilities Assignee: koha-bugs at lists.koha-community.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org CC: robin at catalyst.net.nz System preference OPACSuppression enables to skip from search results biblio records with a dedicated search field (usually on 942$n). We should have a script to update this MARC field depending if all items of the record are hidden (OpacHiddenItems and hidelostitems). This is independant from OpacHiddenItemsHidesRecord Bug 18989 that has known issues : Bug 17787, Bug 23923 ... See Bug 24403 dependencies -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 01:43:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 23:43:33 +0000 Subject: [Koha-bugs] [Bug 31035] Script to update OPACSuppression field depending on hidden items In-Reply-To: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31035-70-Cxu4kVJWCK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31035 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=24403 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 01:43:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 23:43:33 +0000 Subject: [Koha-bugs] [Bug 24403] [OMNIBUS] OpacHiddenItems should hide items everywhere in the OPAC In-Reply-To: <bug-24403-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24403-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24403-70-rCm6HXQ785@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24403 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=31035 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 01:43:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 23:43:39 +0000 Subject: [Koha-bugs] [Bug 31035] Script to update OPACSuppression field depending on hidden items In-Reply-To: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31035-70-BMnLcYlXzU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31035 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |fridolin.somers at biblibre.co |ity.org |m -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 01:43:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 23:43:46 +0000 Subject: [Koha-bugs] [Bug 31035] Script to update OPACSuppression field depending on hidden items In-Reply-To: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31035-70-4TMMiW5KZR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31035 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 01:52:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 23 Jun 2022 23:52:30 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-Svy0upm5V9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #3 from David Cook <dcook at prosentient.com.au> --- I've been thinking it would be good to have a "suppressed" or "hidden" column in the "biblio" table... it would help prevent this sort of situation I reckon. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:02:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:02:35 +0000 Subject: [Koha-bugs] [Bug 31021] Part of C4::Search::searchResults() is only for staff interface In-Reply-To: <bug-31021-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31021-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31021-70-KVVRN6k7YX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31021 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #1 from David Cook <dcook at prosentient.com.au> --- I haven't deep dived this one (yet) but (re)moving unnecessary code sounds good. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:10:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:10:07 +0000 Subject: [Koha-bugs] [Bug 28420] Allow login via AzureAD OpenID-Connect In-Reply-To: <bug-28420-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28420-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28420-70-uFplaOLwCj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28420 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE --- Comment #24 from David Cook <dcook at prosentient.com.au> --- *** This bug has been marked as a duplicate of bug 30988 *** -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:10:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:10:07 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-6PtqhiXpK3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #30 from David Cook <dcook at prosentient.com.au> --- *** Bug 28420 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:13:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:13:51 +0000 Subject: [Koha-bugs] [Bug 31035] Script to update OPACSuppression field depending on hidden items In-Reply-To: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31035-70-oxDFwvuhtd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31035 --- Comment #1 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136466 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136466&action=edit Bug 31035: Script to update OPACSuppression field depending on hidden items WIP -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:33:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:33:50 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-JdWrn5NuMr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:33:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:33:54 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-VH2U6EN8wH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136450|0 |1 is obsolete| | --- Comment #31 from David Cook <dcook at prosentient.com.au> --- Created attachment 136467 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136467&action=edit Bug 30988: Add generic OpenIDConnect client implementation A generic OpenID Connect implementation. Test plan: 1- Set up an OAuth2 provider that has a discovery doc (e.g. for google it's https://accounts.google.com/.well-known/openid-configuration) and note down the client id and client secret. Docs to help setup: google: https://developers.google.com/identity/protocols/oauth2/openid-connect https://koha-community.org/manual/20.11/en/html/administrationpreferences.html gitlab: https://docs.gitlab.com/ee/integration/oauth_provider.html 2- Apply the patch 3- Run atomicupdate to update database 4- Configure system preferences: a- Set OIDC to Yes b- Enter the url to the discovery doc of your OAuth2 provider c- Fill OIDCOAuth2ClientID with noted client id d- Fill OIDCOAuth2ClientSecret with noted client secret e- Change OIDCProviderName to change the text displayed on OIDC login buttons f- Configure the other related system preferences as you wish. They shoud work the same way as the similar googleopenidconnect system preferences. 5- If OIDCAutoRegister is set to Don't allow, have a koha account with the same email as the one used by your OAuth2 provider. 6- In OPAC, sign in using OpenID Connect. 7- You may have to log into your OpenID provider account and accept conditions. It should finally log you into the koha account. Signed-off-by: David Cook <dcook at prosentient.com.au> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:33:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:33:59 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-PM1kQWv0AS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136451|0 |1 is obsolete| | --- Comment #32 from David Cook <dcook at prosentient.com.au> --- Created attachment 136468 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136468&action=edit Bug 30988: Moving id token validation code into a module Signed-off-by: David Cook <dcook at prosentient.com.au> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:34:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:34:04 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-k1WkzsCNxu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #33 from David Cook <dcook at prosentient.com.au> --- Created attachment 136469 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136469&action=edit Bug 30988: Fix minor formatting issues Signed-off-by: David Cook <dcook at prosentient.com.au> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:35:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:35:27 +0000 Subject: [Koha-bugs] [Bug 21586] Add generic OpenIDConnect client implementation In-Reply-To: <bug-21586-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21586-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21586-70-Owy1pziMOU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21586 --- Comment #16 from David Cook <dcook at prosentient.com.au> --- Just noting that I've signed off Bug 30988 so it would be great to get some QA eyes on it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:36:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:36:35 +0000 Subject: [Koha-bugs] [Bug 10988] Allow login via Google OAuth2 (OpenID Connect) In-Reply-To: <bug-10988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10988-70-W1CwnMDMWj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10988 --- Comment #78 from David Cook <dcook at prosentient.com.au> --- Just noting that I've signed off Bug 30988 so it would be great to get some QA eyes on it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:37:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:37:27 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-xfLck34x4L@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #34 from David Cook <dcook at prosentient.com.au> --- Signed off! Hopefully it'll get through QA soon and we'll have a generic OpenID Connect client in the main Koha codebase! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 02:46:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 00:46:26 +0000 Subject: [Koha-bugs] [Bug 31035] Script to update OPACSuppression field depending on hidden items In-Reply-To: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31035-70-GkhlvNCrbx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31035 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #2 from David Cook <dcook at prosentient.com.au> --- This script would break the functionality introduced by the syspref "OpacHiddenItemsExceptions" though, unfortunately. I thought about this a bunch while working on bug 19704. In theory, you could enqueue a background job, when "OpacHiddenItems" is saved, which could process every record with items and then update a "biblio.hidden" field (so that it can be queried for SQL searches and not just Search Engine searches), if "OpacHiddenItemsHidesRecord" is set. -- Maybe the solution is to get rid of "OpacHiddenItemsExceptions" and then either use a cronjob or a background job to update the 942$n/biblio.hidden. It would be great to be able to eliminate the post-processing of records/items caused by "OpacHiddenItems", so generally speaking I'm on board for what you're trying to do! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 03:21:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 01:21:00 +0000 Subject: [Koha-bugs] [Bug 31033] SIP2 does not correctly handle multiple simultaneous connections In-Reply-To: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31033-70-WjBzHozPzc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31033 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #1 from David Cook <dcook at prosentient.com.au> --- That's quite interesting. Using koha-testing-docker, I ran "telnet localhost 6001" from two different terminals. In a third terminal, I ran the following "ss -l -n -t" and I can see that the SIP process listening on 127.0.0.1:6001 has 1 connection in its TCP "listen" backlog. While the telnet client says it's connected, that just mean it's connected to the server's network stack. Only one connection has actually been accepted by the application. (This would probably be clear from your prod syslog as well.) Looking at the "server-params" in the SIPconfig.xml file, it looks like min_servers = 1 and min_spare_servers = 0. In theory, 0 should be fine because that should just means 0 spare servers... When I change min_spare_servers to = 1, the forking seems to work correctly. If there are no current connections, then there is only 1 child process. If there are current connections, then it keeps 1 extra connection around. I'd say it's a bug/quirk in Net::Server::PreFork which powers the SIP server. Since it looks like the SIP server has accidentally been using a max of 1 child process, we should probably set some limits on maximums since the default max server is 50. The default max spare servers is 10... -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 03:22:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 01:22:43 +0000 Subject: [Koha-bugs] [Bug 31033] SIP2 does not correctly handle multiple simultaneous connections In-Reply-To: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31033-70-fISc2o7y9N@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31033 --- Comment #2 from David Cook <dcook at prosentient.com.au> --- Mark, your problem is solvable by changing your SIPconfig.xml file, but I think this bug is worth keeping open for now, as maybe we should change the defaults for the Koha SIP server, or at least add some comments to make it clear how it works. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 03:42:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 01:42:18 +0000 Subject: [Koha-bugs] [Bug 31033] SIP2 does not correctly handle multiple simultaneous connections In-Reply-To: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31033-70-tCFBzlhcN7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31033 --- Comment #3 from David Cook <dcook at prosentient.com.au> --- It looks like Net::Server::Prefork subclasses Net::Server::PreForkSimple which subclasses Net::Server and I'm not sure that the "max_server" configuration item actually gets passed along correctly... So I'm going to add a default of "1" for Koha since that seems to be what's used in practice... In your case, I'd say just add "max_servers='2'" or whatever you need to support your situation. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 03:47:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 01:47:33 +0000 Subject: [Koha-bugs] [Bug 31033] SIP2 does not correctly handle multiple simultaneous connections In-Reply-To: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31033-70-yCFM8fuctq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31033 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 03:47:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 01:47:36 +0000 Subject: [Koha-bugs] [Bug 31033] SIP2 does not correctly handle multiple simultaneous connections In-Reply-To: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31033-70-AyJ8glNMDp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31033 --- Comment #4 from David Cook <dcook at prosentient.com.au> --- Created attachment 136470 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136470&action=edit Bug 31033: Explicitly define max child processes for SIP server By default, the SIP server appears to only use 1 child process for responding to SIP connections. This change makes this explicit in the configuration, which should make it so that people who need more than 1 simultaneous SIP connection can know to just increase the value for the "max_servers" parameter in the SIPconfig.xml file. Test plan: 1. Add "max_servers='1'" to your SIP configuration file 2. koha-sip --restart kohadev 3. Open 3 terminals 4. Run "telnet localhost 6001" on 2 terminals 5. On the 3rd terminal, run the following: ss -l -n -t ps -efww | grep "sip" 6. Note that there are 2 processes called kohadev-koha-sip: perl /kohadevbox/koha/C4/SIP/SIPServer.pm /etc/koha/sites/kohadev/SIPconfig.xml One of these processes is the parent of the other 7. The Recv-Q in the "ss" output should show 1 (This means that 1 of your telnet connections is in the server's TCP backlog) 8. Celebrate as the configuration works as expected -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 03:48:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 01:48:18 +0000 Subject: [Koha-bugs] [Bug 31033] SIP2 does not correctly handle multiple simultaneous connections In-Reply-To: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31033-70-Bc0z7Am0M7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31033 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |dcook at prosentient.com.au |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 03:48:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 01:48:47 +0000 Subject: [Koha-bugs] [Bug 31033] SIP2 does not correctly handle multiple simultaneous connections In-Reply-To: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31033-70-G5BLy0FLpZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31033 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|21.11 |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 03:51:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 01:51:58 +0000 Subject: [Koha-bugs] [Bug 31013] Reserved words as branchcodes cause search error in Elasticsearch In-Reply-To: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31013-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31013-70-ELcFHUYePO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31013 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #5 from David Cook <dcook at prosentient.com.au> --- Btw, Nick, you made me chuckle with "Orly" heh. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 04:27:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 02:27:08 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-IdO9NJjGTC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 --- Comment #18 from David Cook <dcook at prosentient.com.au> --- Since 30327 has been updated... My test plan: 1 - Apply patches 2 - cp etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl /etc/koha/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl 3a - restart_all 3b - koha-rebuild-zebra -b -f -v kohadev 3c - koha-upgrade-schema kohadev 4 - Browse to: http://localhost:8081/cgi-bin/koha/catalogue/search.pl?idx=kw&q=a&sort_by=biblionumber_dsc&count=20 5 - Confirm records sorted correctly 6 - Browse to http://localhost:8081/cgi-bin/koha/catalogue/search.pl?idx=kw&q=a&sort_by=biblionumber_asc&count=20 7 - Confirm records sorted correctly I don't know how to test the Elasticsearch or UNIMARC changes. I've changed "SearchEngine" to "Elasticsearch" and run "koha-elasticsearch --rebuild kohadev" which spat out the following: Cannot determine authority type for record: 1 at /kohadevbox/koha/Koha/SearchEngine/Elasticsearch.pm line 564. In the logs I'm seeing this error: [2022/06/24 02:25:42] [WARN] [Request] ** [http://es:9200]-[400] [query_shard_exception] No mapping found for [local-number__sort] in order to sort on, with: {"index":"koha_kohadev_biblios","index_uuid":"CVVpzugoRfqw7zsFft1pnQ"} Will need more specific instructions to test this one. I'll leave it as "Needs Signoff" rather than "Failed QA" in the event that someone else can test it correctly. -- The test plan for bug 30327 wasn't very specific in its instruction "Add some components to a record by control number or title depending on above", so I tried a lot of things... many which didn't work. Would've been nice to have more explicit steps there. Additional test plan: 1 - Update ComponentSortField system preference and verify biblionumber is an option 2 - Repeat test plan from 30327 and confirm sorting with biblionumber works This looks OK with Zebra. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 04:30:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 02:30:35 +0000 Subject: [Koha-bugs] [Bug 31022] 400/404 actually returns 500 In-Reply-To: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31022-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31022-70-pNxLeIseY7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31022 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 05:00:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 03:00:39 +0000 Subject: [Koha-bugs] [Bug 31033] SIP2 does not correctly handle multiple simultaneous connections In-Reply-To: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31033-70-ExnnjR7kOb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31033 --- Comment #5 from Mark Alexander <marka at pobox.com> --- Thanks. Setting max_servers to '2' works for my use case with two simultaneous connections. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 05:03:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 03:03:47 +0000 Subject: [Koha-bugs] [Bug 31033] SIP2 does not correctly handle multiple simultaneous connections In-Reply-To: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31033-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31033-70-LHsU3eRHnO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31033 --- Comment #6 from David Cook <dcook at prosentient.com.au> --- (In reply to Mark Alexander from comment #5) > Thanks. Setting max_servers to '2' works for my use case with two > simultaneous connections. Great. Glad I was able to help. I enjoy networking issues heh. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 06:30:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 04:30:30 +0000 Subject: [Koha-bugs] [Bug 10086] No way to go back to the basket on uncertain prices page In-Reply-To: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10086-70-73bNTN61Uv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10086 --- Comment #6 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136471 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136471&action=edit Bug 10086: No way to go back to the basket on uncertain prices page Fixed the edit button placement to the right-most column and fixed the the displayed information in the order column from calling non-existent variables based on the item. To test: 1) Add an item with uncertain prices to a basket 2) Go to the vendor of the basket 3) Click Uncertain prices on the left 4) Notice 'edit' button does not look like a button, and basket name is not a link 5) Apply patch and refresh page 6) Basket name is now a link. Click to confirm it takes you to the right page 7) Edit button is now in edit column. Confirm it works as expected 8) Confirm you cannot sort on Edit column and the button does not wrap on a narrower browser 9) Check that the correct information is displayed for the order column (title, author, publisher code, publication year, copyright date, isbn) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 06:31:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 04:31:30 +0000 Subject: [Koha-bugs] [Bug 10086] No way to go back to the basket on uncertain prices page In-Reply-To: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10086-70-ojBCyAZTlT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10086 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |michalurban177 at gmail.com Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 07:57:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 05:57:21 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-SzFNDQNhKe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 --- Comment #4 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Might be fixed by bug 27272. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 07:58:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 05:58:52 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-czZM9WjXX5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 --- Comment #5 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- (In reply to Jonathan Druart from comment #4) > Might be fixed by bug 27272. Hum, forget that, it won't. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 08:36:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 06:36:51 +0000 Subject: [Koha-bugs] [Bug 31035] Script to update OPACSuppression field depending on hidden items In-Reply-To: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31035-70-xECww0SjHW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31035 --- Comment #3 from Fridolin Somers <fridolin.somers at biblibre.com> --- (In reply to David Cook from comment #2) > This script would break the functionality introduced by the syspref > "OpacHiddenItemsExceptions" though, unfortunately. Indeed I will add this to doc. > > I thought about this a bunch while working on bug 19704. > > In theory, you could enqueue a background job, when "OpacHiddenItems" is > saved, which could process every record with items and then update a > "biblio.hidden" field (so that it can be queried for SQL searches and not > just Search Engine searches), if "OpacHiddenItemsHidesRecord" is set. Sure, a data field in biblio whould be really great. Maybe biblio.opac_hidden. > > -- > > Maybe the solution is to get rid of "OpacHiddenItemsExceptions" and then > either use a cronjob or a background job to update the 942$n/biblio.hidden. Indeed the complexity is hard with this feature. We should ask who uses it. > > It would be great to be able to eliminate the post-processing of > records/items caused by "OpacHiddenItems", so generally speaking I'm on > board for what you're trying to do! With this script actually you can not manually hide on purpose a biblio record. I was thinking we could define a special value for the OPACSuppress field, like "2". Value "1" would be used to manually hide biblio record. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:00:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:00:18 +0000 Subject: [Koha-bugs] [Bug 31035] Script to update OPACSuppression field depending on hidden items In-Reply-To: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31035-70-EBLoMMufOx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31035 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136466|0 |1 is obsolete| | --- Comment #4 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136472 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136472&action=edit Bug 31035: Script to update OPACSuppression field depending on hidden items -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:01:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:01:08 +0000 Subject: [Koha-bugs] [Bug 31035] Script to update OPACSuppression field depending on hidden items In-Reply-To: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31035-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31035-70-tJ4LgteipE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31035 --- Comment #5 from Fridolin Somers <fridolin.somers at biblibre.com> --- Script it still WIP but seems it works. You may test it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:09:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:09:36 +0000 Subject: [Koha-bugs] [Bug 31036] New: Cash management doesn't take SIP00 (Cash via SIP2) transactions into account Message-ID: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036 Bug ID: 31036 Summary: Cash management doesn't take SIP00 (Cash via SIP2) transactions into account Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Fines and fees Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org Currently, all cash management summations are bound to the CASH payment type, but SIP2 devices can also take Cash payments and record them as SIP00. Cash management should be updated to use 'CASH' OR 'SIP00' wherever we currently limit to 'CASH'. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:09:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:09:49 +0000 Subject: [Koha-bugs] [Bug 31036] Cash management doesn't take SIP00 (Cash via SIP2) transactions into account In-Reply-To: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31036-70-1JFuZXFfpJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |13985 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 [Bug 13985] Cash Management - Koha as 'Point of Sale' -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:09:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:09:49 +0000 Subject: [Koha-bugs] [Bug 13985] Cash Management - Koha as 'Point of Sale' In-Reply-To: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-13985-70-3u1xbGXn6j@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |31036 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036 [Bug 31036] Cash management doesn't take SIP00 (Cash via SIP2) transactions into account -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:09:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:09:54 +0000 Subject: [Koha-bugs] [Bug 31036] Cash management doesn't take SIP00 (Cash via SIP2) transactions into account In-Reply-To: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31036-70-gdjHrNHsqw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:09:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:09:59 +0000 Subject: [Koha-bugs] [Bug 31036] Cash management doesn't take SIP00 (Cash via SIP2) transactions into account In-Reply-To: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31036-70-77BkOaXmGC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:10:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:10:14 +0000 Subject: [Koha-bugs] [Bug 31036] Cash management doesn't take SIP00 (Cash via SIP2) transactions into account In-Reply-To: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31036-70-RC4UaF3Ac7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sally.healey at cheshireshared | |services.gov.uk -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:10:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:10:36 +0000 Subject: [Koha-bugs] [Bug 31036] Cash management doesn't take SIP00 (Cash via SIP2) transactions into account In-Reply-To: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31036-70-5abmq1MfMX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |information at newcastle.gov.u | |k -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:42:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:42:46 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-AhRSvxUYmI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136380|0 |1 is obsolete| | --- Comment #49 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136473 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136473&action=edit Bug 28327: Add unit tests -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:43:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:43:09 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-L3fXCthJ1b@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136381|0 |1 is obsolete| | --- Comment #50 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136474 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136474&action=edit Bug 28327: Unify CSV delimiter special behavior for tabulation System preference 'CSVdelimiter' has a special case for tabulation. Preference value contains string 'tabulation' but string '\t' must be used in CSV file. This is OK in many places, for exemple Bug 17590. This patch adds C4::Context->csv_delimiter to add a uniq metod dealing with this behavior. Also create Koha::Template::Plugin::Koha->CSVDelimiter for calls from Toolkit Templates. Test plan : 1) Set system preference 'CSVdelimiter' = 'tabs'. 2) Create CSV export in impacted pages 3) Check columns are separated by tabulation character and not string 'tabulation' 4) Check with another delimiter -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:43:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:43:24 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-lhnjsIQAaY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 --- Comment #51 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136475 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136475&action=edit Bug 28327: (follow-up) Comma as default CSV delimiter Looks like most of existing code wants comma as default value. Also impact installer/data/mysql/mandatory/sysprefs.sql. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:45:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:45:51 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-eSPqOWD9vf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 --- Comment #52 from Fridolin Somers <fridolin.somers at biblibre.com> --- Good catch David and Nick, thanks a lot for your help -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 09:54:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 07:54:17 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-BMOyADkm6R@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl --- Comment #43 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Tomás Cohen Arazi from comment #42) > Pushed to master for 22.11. > > Nice work everyone, thanks! I immediately cannot install master anymore on Debian 10. Thanks ;) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 10:22:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 08:22:35 +0000 Subject: [Koha-bugs] [Bug 31036] Cash management doesn't take SIP00 (Cash via SIP2) transactions into account In-Reply-To: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31036-70-2A2Cbdkqt4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036 --- Comment #1 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136476 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136476&action=edit Bug 31036: Treat SIP00 that same as CASH SIP00 is the code for CASH transactions that have taken place on a SIP client. Cash management treats CASH type transactions as a special case for banking and register requirements. This patch brings SIP00 in line with the CASH handling code of cash management. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 10:26:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 08:26:51 +0000 Subject: [Koha-bugs] [Bug 31036] Cash management doesn't take SIP00 (Cash via SIP2) transactions into account In-Reply-To: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31036-70-oNNj2Jma6M@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 10:31:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 08:31:26 +0000 Subject: [Koha-bugs] [Bug 31036] Cash management doesn't take SIP00 (Cash via SIP2) transactions into account In-Reply-To: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31036-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31036-70-PkMkrDG2PQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31036 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136476|0 |1 is obsolete| | --- Comment #2 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136477 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136477&action=edit Bug 31036: Treat SIP00 that same as CASH SIP00 is the code for CASH transactions that have taken place on a SIP client. Cash management treats CASH type transactions as a special case for banking and register requirements. This patch brings SIP00 in line with the CASH handling code of cash management. Test plan 1) Enable cash management with 'EnablePointOfSale' 2) Enable cash registers with 'UseCashRegisters' 3) Add a cash register via 'Administration > Cash registers' 4) Make some payments against the ash register in the staff client 5) Attempt to make a payment via a SIP client without having associated a cash register to the SIP account config 5a) This should now fail 6) Attach the cash register to the SIP account used above 6a) Payment should now work again on SIP transactions 7) Look at the cash register details page for the cash register 7a) 'Bankale' should now include cash from both SIP and Staff client sales -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 10:53:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 08:53:06 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-l2Mr1AKkDZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #50 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- QA: Having a look here -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 10:54:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 08:54:46 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-bJAmBqRYhH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136398|0 |1 is obsolete| | --- Comment #51 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136478 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136478&action=edit Bug 29325: Fix commit_file.pl This patch fixes the broken commit_file.pl script. It doesn't deal with commiting the import from the UI. To test: 1. Pick a file for staging: $ kshell k$ misc/stage_file.pl --file TestDataImportKoha.mrc => SUCCESS: All good 2. Commit! k$ misc/commit_file.pl --batch-number 1 => FAIL: You see DBIx::Class::Storage::DBI::_exec_txn_begin(): DBI Exception: DBD::mysql::db begin_work failed: Already in a transaction at /kohadevbox/koha/C4/Biblio.pm line 303 3. Apply this patch 4. Repeat 2 => SUCCESS: Commit succeeds 5. Sign off :-D Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 10:54:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 08:54:51 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-f1oaCQA34o@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136399|0 |1 is obsolete| | --- Comment #52 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136479 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136479&action=edit Bug 29325: (QA follow-up) Remove unexisting parameters of BatchRevertRecords There is no interval and callback as in BatchCommitRecords. Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 10:54:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 08:54:56 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-EZ4m83vb1N@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136400|0 |1 is obsolete| | --- Comment #53 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136480 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136480&action=edit Bug 29325: Call progress callback one last time to confirm comppletion Previously after finishing the loop we were still in a transaction that never completed - we should report progress when done one final time to commit the last records To test: 1 - Stage a file with > 100 records 2 - Commit file 3 - Confirm batch is imported and no records left as staged Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 10:55:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 08:55:00 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-TH3Y4rp1fZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136401|0 |1 is obsolete| | --- Comment #54 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136481 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136481&action=edit Bug 29325: Fix import from staff client same test as before, but via the staff client Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 10:55:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 08:55:05 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-ZABffs3j68@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136402|0 |1 is obsolete| | --- Comment #55 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136482 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136482&action=edit Bug 29325: Handle the transaction in BatchCommitRecords Requiring the callback to commit was breaking reversion, and likely elsewhere Let's simplify and say that the routine iteself will handle the txn and commit TO test: 1 - Stage a file 2 - Import a file 3 - Revert a file 4 - Test staff client and command line Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 10:55:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 08:55:28 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-yTgzXgq9T6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #56 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Starting with a trivial rebase -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 11:12:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 09:12:27 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-NQS3nRS03n@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #57 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Nick Clemens from comment #31) > Probably we should squash all this back into one patch Yes, I think so. It is pretty confusing now. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 11:12:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 09:12:53 +0000 Subject: [Koha-bugs] [Bug 31037] New: 'borrower_attribute_types' table contains references to invalid category codes Message-ID: <bug-31037-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31037 Bug ID: 31037 Summary: 'borrower_attribute_types' table contains references to invalid category codes Change sponsored?: --- Product: Koha Version: 22.05 Hardware: All OS: Linux Status: NEW Severity: normal Priority: P5 - low Component: Installation and upgrade (web-based installer) Assignee: koha-bugs at lists.koha-community.org Reporter: justanothermate at gmail.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Created attachment 136483 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136483&action=edit webinterface and putty screenshot While updating getting the error Upgrade to 21.12.00.041 [17:46:08]: Bug 30449 - Check borrower_attribute_types FK constraint ERROR: {UNKNOWN}: The 'borrower_attribute_types' table contains references to invalid category codes: at /usr/share/koha/intranet/cgi-bin/installer/data/mysql/db_revs/211200041.pl line 40. at /usr/share/koha/lib/C4/Installer.pm line 739 result from borrower_attribute_types; see in the attachments no other patron attributes present besides show_bcode -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 11:16:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 09:16:34 +0000 Subject: [Koha-bugs] [Bug 31037] 'borrower_attribute_types' table contains references to invalid category codes In-Reply-To: <bug-31037-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31037-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31037-70-bpVVDQ2nUD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31037 justanothermate at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - low |P4 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 11:20:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 09:20:59 +0000 Subject: [Koha-bugs] [Bug 30449] Missing FK constraint on borrower_attribute_types In-Reply-To: <bug-30449-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30449-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30449-70-WMfTFwXdm0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30449 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha at gmail. | |com Blocks| |31037 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31037 [Bug 31037] 'borrower_attribute_types' table contains references to invalid category codes -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 11:20:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 09:20:59 +0000 Subject: [Koha-bugs] [Bug 31037] 'borrower_attribute_types' table contains references to invalid category codes In-Reply-To: <bug-31037-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31037-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31037-70-0affVDP0NO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31037 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30449 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30449 [Bug 30449] Missing FK constraint on borrower_attribute_types -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 11:21:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 09:21:38 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-XuOu6sQQ7A@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 --- Comment #6 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I think it's a bug and a regression. The direct link by biblionumber should not work - and it didn't in the past. How a direct link behaves, is supposed to be controlled by the OpacSuppressionRedirect system preference. There is something broken here. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 11:21:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 09:21:57 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-qr7LbeBo7b@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major --- Comment #7 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Updating severity. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 11:40:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 09:40:53 +0000 Subject: [Koha-bugs] [Bug 31038] New: Amounts in cashup summary modal no longer properly formatted Message-ID: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 Bug ID: 31038 Summary: Amounts in cashup summary modal no longer properly formatted Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff Client Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com The formatting of amounts in the cashup summary modal are no longer formatted correctly. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 11:51:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 09:51:33 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-hENsDOplh8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |BLOCKED --- Comment #58 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- There may be some issues here still -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 11:55:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 09:55:56 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-L7yqfeixgc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #59 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Funny btw that kind of thing still is in the script: Number of items added: $num_items_deleted Will fix it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:00:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:00:33 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-OSKnIjuWKQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #60 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Marcel de Rooy from comment #58) > There may be some issues here still The main thing I still need to check if why BatchRevert seems to work with the commit_file script but not via tools in interface. Will finish Monday. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:14:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:14:07 +0000 Subject: [Koha-bugs] [Bug 20395] Use Price formatter in more templates (paycollect, request, parcel, smart-rules) In-Reply-To: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20395-70-PQPSGBTOSF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20395 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #73057|0 |1 is obsolete| | --- Comment #12 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136484 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136484&action=edit Bug 20395: Change paycollect to use Price formatter Test plan: 1) Apply patch 2) Go to Home -> Patrons -> Patron details (for any patron) 3) Create manual invoice for the patron 4) Pay fines -> Pay -button 5) Check that the currency values look correct 6) Pay fines -> Pay amount -button 7) Check that the currency values look correct 8) Pay fines -> Pay selected -button 9) Check that the currency values look correct 10) Change the CurrencyFormat setting 11) Repeat 2-9 Signed-off-by: Pasi Kallinen <pasi.kallinen at joensuu.fi> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:14:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:14:11 +0000 Subject: [Koha-bugs] [Bug 20395] Use Price formatter in more templates (paycollect, request, parcel, smart-rules) In-Reply-To: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20395-70-bKJz201tQs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20395 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #73058|0 |1 is obsolete| | --- Comment #13 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136485 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136485&action=edit Bug 20395: Followup to change format to use price filter See comment #1. Signed-off-by: Roch D'Amour <roch.damour at inlibro.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:15:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:15:19 +0000 Subject: [Koha-bugs] [Bug 20395] Use Price formatter in more templates (paycollect, request, parcel, smart-rules) In-Reply-To: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20395-70-MwYtbWFdwp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20395 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Status|Failed QA |Passed QA --- Comment #14 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Wow, can't believe this is still the case.. all sorted now and rebased. Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:27:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:27:14 +0000 Subject: [Koha-bugs] [Bug 22112] Omnibus: Use Price filter everywhere In-Reply-To: <bug-22112-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22112-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22112-70-MpyouuXdBB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22112 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=20395 CC| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:27:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:27:14 +0000 Subject: [Koha-bugs] [Bug 20395] Use Price formatter in more templates (paycollect, request, parcel, smart-rules) In-Reply-To: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20395-70-dwF9Up7BLX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20395 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=22112 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:27:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:27:33 +0000 Subject: [Koha-bugs] [Bug 22112] Omnibus: Use Price filter everywhere In-Reply-To: <bug-22112-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22112-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22112-70-RdnXb9Oogd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22112 --- Comment #2 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Bug 20395 catches a few more.. I just PQA'd it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:38:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:38:06 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-3hdxYiDWC5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 --- Comment #1 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136486 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136486&action=edit Bug 31038: Fix price formating in cashup summary This patch uses the existing format_price JS include to format prices in the cashup summary modal Test plan 1) Create some transactions and a cashup 2) View the cashup summary modal and confirm amounts are not nicely formatted 3) Apply patch 4) Confirm amounts in cashup summary modals are now nicely formatted -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:41:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:41:21 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-XLzQ9G06Zx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:41:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:41:26 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-JEi5G3LBKh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:41:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:41:31 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-CckCutZEJI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 12:41:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 10:41:55 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-Bt5hgIhcIi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |information at newcastle.gov.u | |k, | |katrin.fischer at bsz-bw.de, | |sally.healey at cheshireshared | |services.gov.uk -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:02:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:02:53 +0000 Subject: [Koha-bugs] [Bug 31037] 'borrower_attribute_types' table contains references to invalid category codes In-Reply-To: <bug-31037-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31037-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31037-70-b603IzdLOY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31037 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:09:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:09:44 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-S8gNvGyAeb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 MichaelaSieber <michaela.sieber at kit.edu> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |michaela.sieber at kit.edu -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:20:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:20:57 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-ejs3UC2246@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |13985 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 [Bug 13985] Cash Management - Koha as 'Point of Sale' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:20:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:20:57 +0000 Subject: [Koha-bugs] [Bug 13985] Cash Management - Koha as 'Point of Sale' In-Reply-To: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-13985-70-ZvcbicgxbB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |31038 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 [Bug 31038] Amounts in cashup summary modal no longer properly formatted -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:21:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:21:15 +0000 Subject: [Koha-bugs] [Bug 22028] RecordedBooks integration with audio and magazine titles In-Reply-To: <bug-22028-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22028-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22028-70-fjcvMgHXs0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22028 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |INVALID Status|NEW |RESOLVED --- Comment #1 from Owen Leonard <oleonard at myacpl.org> --- Since rbdigital is now part of OverDrive I think this bug is no longer valid. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:21:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:21:35 +0000 Subject: [Koha-bugs] [Bug 22112] Omnibus: Use Price filter everywhere In-Reply-To: <bug-22112-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22112-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22112-70-EGMDsO0YD6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22112 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |31038 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 [Bug 31038] Amounts in cashup summary modal no longer properly formatted -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:21:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:21:35 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-WLNnojsvtu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |22112 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22112 [Bug 22112] Omnibus: Use Price filter everywhere -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:22:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:22:38 +0000 Subject: [Koha-bugs] [Bug 31039] New: Rebase issues lead to duplicate JS for cash summary modal printing Message-ID: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 Bug ID: 31039 Summary: Rebase issues lead to duplicate JS for cash summary modal printing Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff Client Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com We have duplicate JS for the cashup summary modals and this leads to double print dialogues. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:37:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:37:32 +0000 Subject: [Koha-bugs] [Bug 31040] New: jsTree image being used outside of jsTree plugin Message-ID: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31040 Bug ID: 31040 Summary: jsTree image being used outside of jsTree plugin Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: ASSIGNED Severity: normal Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: oleonard at myacpl.org QA Contact: testopia at bugs.koha-community.org CC: testopia at bugs.koha-community.org Depends on: 11873 Bug 11873 upgraded jsTree to the latest version, which included a change in the plugin's asset directory structure. Unfortunately this now highlights the fact that we were using one of jsTree's images for other aspects of the OPAC. For instance, the spinner image shown when search results show the "Searching OverDrive..." message. These images are now broken. We don't need to depend on the plugin for this image, we have our "own" version. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11873 [Bug 11873] Upgrade jstree jQuery plugin to the latest version -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:37:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:37:32 +0000 Subject: [Koha-bugs] [Bug 11873] Upgrade jstree jQuery plugin to the latest version In-Reply-To: <bug-11873-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11873-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11873-70-eQiSonBEsW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11873 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31040 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31040 [Bug 31040] jsTree image being used outside of jsTree plugin -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:40:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:40:32 +0000 Subject: [Koha-bugs] [Bug 23263] RecordedBooks shows 'Check out' button for unavailable items In-Reply-To: <bug-23263-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23263-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23263-70-TNnCCkWp2d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23263 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |INVALID Status|NEW |RESOLVED --- Comment #2 from Owen Leonard <oleonard at myacpl.org> --- rbdigital is now part of OverDrive. This issue is no longer valid. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:57:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:57:25 +0000 Subject: [Koha-bugs] [Bug 31040] jsTree image being used outside of jsTree plugin In-Reply-To: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31040-70-AYrmRMkTq6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31040 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 13:57:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 11:57:28 +0000 Subject: [Koha-bugs] [Bug 31040] jsTree image being used outside of jsTree plugin In-Reply-To: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31040-70-3bmzshCvT7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31040 --- Comment #1 from Owen Leonard <oleonard at myacpl.org> --- Created attachment 136487 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136487&action=edit Bug 31040: jsTree image being used outside of jsTree plugin This patch corrects OPAC templates which tried to use a jsTree image asset which is missing following the jsTree upgrade (see Bug 11873). Templates should use /images/spinner-small.gif instead. To test, apply the patch and enable OpenLibrarySearch and populate OverDrive and RecordedBooks preferences with credentials (they don't have to be valid). Perform a catalog search in the OPAC. When the search results page first loads you should see messages about the services being queried: Searching OpenLibrary... Searching RecordedBoks... Searching OverDrive... Each should show a working "spinner" image while the queries are being performed. If you have valid OverDrive credentials you can try clicking through to the OverDrive search results page to confirm that the image is working on that page too. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 14:05:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 12:05:14 +0000 Subject: [Koha-bugs] [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing In-Reply-To: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31039-70-6ehf4SbY37@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |13985 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 [Bug 13985] Cash Management - Koha as 'Point of Sale' -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 14:05:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 12:05:14 +0000 Subject: [Koha-bugs] [Bug 13985] Cash Management - Koha as 'Point of Sale' In-Reply-To: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-13985-70-HxrE8w6Bih@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |31039 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 14:13:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 12:13:05 +0000 Subject: [Koha-bugs] [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing In-Reply-To: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31039-70-Wq7jZE58bp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 --- Comment #1 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136488 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136488&action=edit Bug 31039: Remove duplicate modal printing JS This patch removes the erroneos duplication of the modal printing js. Test plan 1) Create some transactions and perform a cashup. 2) Open the cashup summary modal 3) Click 'Print' 4) Cancel the print dialogue 5) Note that the dialogue re-appears 6) Apply the patch 7) Repeat and note the dialogue closes first time now. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 14:13:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 12:13:29 +0000 Subject: [Koha-bugs] [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing In-Reply-To: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31039-70-ad9HHGTX8d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal Status|NEW |Needs Signoff Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 14:13:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 12:13:42 +0000 Subject: [Koha-bugs] [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing In-Reply-To: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31039-70-an0UnUzHwQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |oleonard at myacpl.org, | |sally.healey at cheshireshared | |services.gov.uk -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:04:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:04:20 +0000 Subject: [Koha-bugs] [Bug 31016] Highlight item in holdings when searching by barcode In-Reply-To: <bug-31016-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31016-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31016-70-6BZ5tyyK2m@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31016 Lisette Scheer <lisettepalouse+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisettepalouse+koha at gmail.c | |om --- Comment #1 from Lisette Scheer <lisettepalouse+koha at gmail.com> --- Yes, this would be very helpful, especially with large records such as serial records. Lisette -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:10:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:10:58 +0000 Subject: [Koha-bugs] [Bug 31004] MS Teams notifications In-Reply-To: <bug-31004-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31004-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31004-70-vqjc10sbjU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31004 Lisette Scheer <lisettepalouse+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisettepalouse+koha at gmail.c | |om --- Comment #3 from Lisette Scheer <lisettepalouse+koha at gmail.com> --- Yeah, it looks like you'd have to call "get chat" to get the existing chat and call "create chat" if there wasn't one already saved. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:11:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:11:22 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-wbehcv9tQc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #2 from David Nind <david at davidnind.com> --- Created attachment 136489 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136489&action=edit Before and after screenshots Screenshots before and after patch applied. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:12:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:12:31 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-nGpCszkpbq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:12:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:12:36 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-pgZ5ajZe1L@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136486|0 |1 is obsolete| | --- Comment #3 from David Nind <david at davidnind.com> --- Created attachment 136490 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136490&action=edit Bug 31038: Fix price formating in cashup summary This patch uses the existing format_price JS include to format prices in the cashup summary modal Test plan 1) Create some transactions and a cashup 2) View the cashup summary modal and confirm amounts are not nicely formatted 3) Apply patch 4) Confirm amounts in cashup summary modals are now nicely formatted Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:15:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:15:06 +0000 Subject: [Koha-bugs] [Bug 31034] Bib image hidden after changes in bib detail In-Reply-To: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31034-70-K2TAvAh5PW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31034 --- Comment #2 from Owen Leonard <oleonard at myacpl.org> --- There must be more to the circumstances leading to this... I'm not able to reproduce it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:19:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:19:40 +0000 Subject: [Koha-bugs] [Bug 31041] New: Cashup summary modal printing issue Message-ID: <bug-31041-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31041 Bug ID: 31041 Summary: Cashup summary modal printing issue Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff Client Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com When printing the cashup summary modal, if the content is long enough to make the modal scrollable then the print cuts off/duplicates some of the details over the second page. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:21:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:21:21 +0000 Subject: [Koha-bugs] [Bug 31041] Cashup summary modal printing issue In-Reply-To: <bug-31041-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31041-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31041-70-TNKmcKJrat@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31041 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |oleonard at myacpl.org |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:32:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:32:21 +0000 Subject: [Koha-bugs] [Bug 27779] Cashup summary 'refunds' should denote what the refund was actioned against In-Reply-To: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27779-70-t9waNuMu3c@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27779 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #127552|0 |1 is obsolete| | --- Comment #13 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136491 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136491&action=edit Bug 27779: Group payouts by type of debit they're applied against This patch adds additional grouping to the cashup summary output such that payouts are additionally grouped by the types of debit they're applied against. The cashup sumary modal is adapted to expose the descriptions at the grouping level too. Test plan 1/ Add a various transactions using a cash register (Using Point of Sale, Patron Accounts with payments etc). 2/ Refund some of the debts and pick the 'cash' option for payout. (ensure you pick a variety of debit types) 3/ Add some credit to a patron account, (either refund a debt as 'credit' or add a 'manual credit') 4/ Payout the credit as 'cash' on the patron account 5/ Cashup the register 6/ Inspect the cashup summary for your cashup. Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:32:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:32:25 +0000 Subject: [Koha-bugs] [Bug 27779] Cashup summary 'refunds' should denote what the refund was actioned against In-Reply-To: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27779-70-8YnDYNU0wj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27779 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #127553|0 |1 is obsolete| | --- Comment #14 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136492 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136492&action=edit Bug 27779: Update 'REFUND' description in the database This patch simplified the REFUND description from 'Refund applied to a patrons fine' to simply 'Refund'.. this allows the description to be combined with debit type descriptions simply to denote what it was applied against instead of using the generic 'applied to a patrons fine' Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:32:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:32:29 +0000 Subject: [Koha-bugs] [Bug 27779] Cashup summary 'refunds' should denote what the refund was actioned against In-Reply-To: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27779-70-769aHrBJtO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27779 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #127554|0 |1 is obsolete| | --- Comment #15 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136493 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136493&action=edit Bug 27779: New atomic update syntax Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:32:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:32:33 +0000 Subject: [Koha-bugs] [Bug 27779] Cashup summary 'refunds' should denote what the refund was actioned against In-Reply-To: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27779-70-bx09nrfPUc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27779 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #130024|0 |1 is obsolete| | --- Comment #16 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136494 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136494&action=edit Bug 27779: (QA follow-up) Fix translation issue with 'against' Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:32:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:32:37 +0000 Subject: [Koha-bugs] [Bug 27779] Cashup summary 'refunds' should denote what the refund was actioned against In-Reply-To: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27779-70-ssKB7ABoW6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27779 --- Comment #17 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136495 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136495&action=edit Bug 27779: (QA follow-up) Fix database update Don't overwrite peoples translations if they've already changed the description. Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:34:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:34:04 +0000 Subject: [Koha-bugs] [Bug 27779] Cashup summary 'refunds' should denote what the refund was actioned against In-Reply-To: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27779-70-sWW7e1fDjW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27779 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off --- Comment #18 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Rebased, follow-up added to correct issue with DB update and corrected and signed off Katrins follow-up. Setting back to signed off. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:36:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:36:00 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-DtBVkDgnEb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|BLOCKED |Passed QA Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:36:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:36:05 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-W0HbsUX1W5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136478|0 |1 is obsolete| | --- Comment #61 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136496 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136496&action=edit Bug 29325: Fix commit_file.pl This patch fixes the broken commit_file.pl script. It doesn't deal with commiting the import from the UI. To test: 1. Pick a file for staging: $ kshell k$ misc/stage_file.pl --file TestDataImportKoha.mrc => SUCCESS: All good 2. Commit! k$ misc/commit_file.pl --batch-number 1 => FAIL: You see DBIx::Class::Storage::DBI::_exec_txn_begin(): DBI Exception: DBD::mysql::db begin_work failed: Already in a transaction at /kohadevbox/koha/C4/Biblio.pm line 303 3. Apply this patch 4. Repeat 2 => SUCCESS: Commit succeeds 5. Sign off :-D Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Bug 29325: (QA follow-up) Remove unexisting parameters of BatchRevertRecords There is no interval and callback as in BatchCommitRecords. Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Bug 29325: Call progress callback one last time to confirm comppletion Previously after finishing the loop we were still in a transaction that never completed - we should report progress when done one final time to commit the last records To test: 1 - Stage a file with > 100 records 2 - Commit file 3 - Confirm batch is imported and no records left as staged Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Bug 29325: Fix import from staff client same test as before, but via the staff client Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Bug 29325: Handle the transaction in BatchCommitRecords Requiring the callback to commit was breaking reversion, and likely elsewhere Let's simplify and say that the routine iteself will handle the txn and commit TO test: 1 - Stage a file 2 - Import a file 3 - Revert a file 4 - Test staff client and command line Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:36:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:36:08 +0000 Subject: [Koha-bugs] [Bug 27779] Cashup summary 'refunds' should denote what the refund was actioned against In-Reply-To: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27779-70-mFfu4ZGhRQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27779 --- Comment #19 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #10) > Wondering about another I18N issue here: You assume in your database update > that Refund has not been translated to read something different. But they > will be translated if you have used a translated web installer, right? So > this will throw it back to English, with no way to fix it apart from using > SQL, as the GUI doesn't allow to edit the system debit and credit types. > > Could we negotiate making the description field editable in the GUI on a > separate bug? I don't see another way to fix this translation issue nicely. I've corrected the database update so it won't overwrite already changed descriptions. The descriptions are already editable in the GUI.. they're just debit/credit types. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:36:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:36:10 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-NNlUhtjfqg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #62 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136497 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136497&action=edit Bug 29325: (QA follow-up) Tidy up tools/manage-marc-import.pl: sub commit_batch does no longer need $schema tools/manage-marc-import.pl: sub revert_batch: calling BatchRevertRecords which has no interval and callback misc/commit_file.pl: sub print_progress_and_commit does no longer commit, renamed misc/commit_file.pl: sub print_progress does no longer have a schema parameter misc/commit_file.pl: sub revert_batch reported deleted items as added Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:36:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:36:44 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-GcPnKizvwC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #63 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Marcel de Rooy from comment #60) > (In reply to Marcel de Rooy from comment #58) > > There may be some issues here still > > The main thing I still need to check if why BatchRevert seems to work with > the commit_file script but not via tools in interface. > Will finish Monday. Resolved already :) Go ahead, Tomas. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:37:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:37:27 +0000 Subject: [Koha-bugs] [Bug 27779] Cashup summary 'refunds' should denote what the refund was actioned against In-Reply-To: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27779-70-rE5YIlI1eP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27779 --- Comment #20 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #11) > The one remaining thing now is that I feel like we should really price > format this output (meaning adhering to CurrencyFormat). > > Any hope we could do this in a follow up? It's done on bug 31038 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:37:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:37:29 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-PlMybSnYpc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136480|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:37:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:37:32 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-lhYCex1LS4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136481|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:37:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:37:36 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-Vn3PADA5FL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136482|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:37:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:37:39 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-JGFbTxxVUj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136479|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:50:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:50:26 +0000 Subject: [Koha-bugs] [Bug 10086] No way to go back to the basket on uncertain prices page In-Reply-To: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10086-70-3S1ESzyxGG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10086 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #7 from Owen Leonard <oleonard at myacpl.org> --- The second patch doesn't apply for me on its own. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:54:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:54:52 +0000 Subject: [Koha-bugs] [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing In-Reply-To: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31039-70-dGLtJDIzjp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #2 from David Nind <david at davidnind.com> --- I attempted to test, but I am not seeing this problem: 1. Print 2. Opens print dialogue 3. Cancel 4. Goes back to cashup summary modal Tested using Ubuntu 18.04 with Firefox and Google Chrome. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:57:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:57:24 +0000 Subject: [Koha-bugs] [Bug 29985] Cashup summary shows unexplainable odd amounts In-Reply-To: <bug-29985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29985-70-WR3eU4jnhE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29985 --- Comment #2 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- I've tried this and am unable to replicate it at the moment. What currently format are you using.. I wonder if there's a difference in configuration. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 15:57:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 13:57:42 +0000 Subject: [Koha-bugs] [Bug 29985] Cashup summary shows unexplainable odd amounts In-Reply-To: <bug-29985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29985-70-E9hA1haw83@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29985 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:00:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:00:05 +0000 Subject: [Koha-bugs] [Bug 29985] Cashup summary shows unexplainable odd amounts In-Reply-To: <bug-29985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29985-70-0rle3zZJLX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29985 --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- This was in January, so that database no longer exists. Chances are it was FR or US, unlikely to be CH. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:00:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:00:11 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-c3i4hwZyID@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 --- Comment #1 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Credit is credit, it's not a case of money being handed over so we don't currently give the option to select a register on the manual credit form so it wouldn't be recorded. In the cash management sense we're only interested in money changing hands so we only record registers for those cases. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:00:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:00:11 +0000 Subject: [Koha-bugs] [Bug 31034] Bib image hidden after changes in bib detail In-Reply-To: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31034-70-NIAEnJbzpF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31034 --- Comment #3 from Lucas Gass <lucas at bywatersolutions.com> --- (In reply to Owen Leonard from comment #2) > There must be more to the circumstances leading to this... I'm not able to > reproduce it. Ah yes, upon further testing I notice that this problem only happens for me in Firefox. Owen, were you using Chrome while testing? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:09:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:09:53 +0000 Subject: [Koha-bugs] [Bug 31042] New: OVERRIDE_SYSPREF does not work for REST API Message-ID: <bug-31042-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31042 Bug ID: 31042 Summary: OVERRIDE_SYSPREF does not work for REST API Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: REST API Assignee: koha-bugs at lists.koha-community.org Reporter: jonathan.druart+koha at gmail.com CC: tomascohen at gmail.com We are supposed to be able to override syspref's values using the OVERRIDE_SYSPREF trick, but it's not working for the REST API. To recreate, open /etc/koha/apache-shared-intranet-plack.conf and add RequestHeader add X-Koha-SetEnv "OVERRIDE_SYSPREF_Foo Bar" Add some warn, mainpage.pl and Koha/REST/V1/Patrons.pm (sub list) for instance warn C4::Context->preference('Foo'); Hit the mainpage, look at the log, you see "Bar". Search for patrons: "Use of uninitialized value in warn" => The syspref hasn't been overridden. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:11:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:11:24 +0000 Subject: [Koha-bugs] [Bug 31042] OVERRIDE_SYSPREF does not work for REST API In-Reply-To: <bug-31042-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31042-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31042-70-55brVfyC5v@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31042 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au, | |julian.maurice at biblibre.com | |, | |martin.renvoize at ptfs-europe | |.com, | |nick at bywatersolutions.com --- Comment #1 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- The only thing I see is that we are using Plack::App::CGIBin for the intranet and Mojo::Server::PSGI for the API. Could that be a lead? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:11:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:11:49 +0000 Subject: [Koha-bugs] [Bug 31042] OVERRIDE_SYSPREF does not work for REST API In-Reply-To: <bug-31042-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31042-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31042-70-FYHCHqW34U@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31042 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |16520 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16520 [Bug 16520] Per-virtualhost SetEnvs don't work with Plack -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:11:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:11:49 +0000 Subject: [Koha-bugs] [Bug 16520] Per-virtualhost SetEnvs don't work with Plack In-Reply-To: <bug-16520-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-16520-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-16520-70-G2HyZYviHA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16520 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31042 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31042 [Bug 31042] OVERRIDE_SYSPREF does not work for REST API -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:13:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:13:44 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-J5cIXK5dBu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |27857 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27857 [Bug 27857] Koha::Patron->extended_attributes skips checks -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:13:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:13:44 +0000 Subject: [Koha-bugs] [Bug 27857] Koha::Patron->extended_attributes skips checks In-Reply-To: <bug-27857-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27857-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27857-70-Ka3kZuiJu9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27857 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31005 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:21:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:21:01 +0000 Subject: [Koha-bugs] [Bug 29985] Cashup summary shows unexplainable odd amounts In-Reply-To: <bug-29985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29985-70-eOq4r6t3P4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29985 --- Comment #4 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- OK, it may well be the FR currency.. I do see other bugs when I change to FR. WIll come back to this. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:21:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:21:21 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-dY4gAQzOKS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #223 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136498 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136498&action=edit Bug 28854: (follow-up) Fix typo in templates and test plan * aready > already * 61 > 62 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:21:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:21:27 +0000 Subject: [Koha-bugs] [Bug 29985] Cashup summary shows unexplainable odd amounts In-Reply-To: <bug-29985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29985-70-LMzsxPA0Ox@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29985 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |13985 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 [Bug 13985] Cash Management - Koha as 'Point of Sale' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:21:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:21:27 +0000 Subject: [Koha-bugs] [Bug 13985] Cash Management - Koha as 'Point of Sale' In-Reply-To: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-13985-70-mPsne7kZUf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |29985 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29985 [Bug 29985] Cashup summary shows unexplainable odd amounts -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:21:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:21:38 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-4Yeb2lwju0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |13985 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 [Bug 13985] Cash Management - Koha as 'Point of Sale' -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:21:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:21:38 +0000 Subject: [Koha-bugs] [Bug 13985] Cash Management - Koha as 'Point of Sale' In-Reply-To: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-13985-70-HsMN43y5IC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |29987 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 [Bug 29987] Manual credits are not recorded for a register -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:21:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:21:48 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-g260G3UEUs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:21:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:21:48 +0000 Subject: [Koha-bugs] [Bug 13985] Cash Management - Koha as 'Point of Sale' In-Reply-To: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-13985-70-u6csMLyjrH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 Bug 13985 depends on bug 29987, which changed state. Bug 29987 Summary: Manual credits are not recorded for a register https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:22:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:22:07 +0000 Subject: [Koha-bugs] [Bug 31041] Cashup summary modal printing issue In-Reply-To: <bug-31041-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31041-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31041-70-dh8ZPP7x1L@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31041 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |13985 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 [Bug 13985] Cash Management - Koha as 'Point of Sale' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:22:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:22:07 +0000 Subject: [Koha-bugs] [Bug 13985] Cash Management - Koha as 'Point of Sale' In-Reply-To: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-13985-70-oBIsy2g6RX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |31041 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31041 [Bug 31041] Cashup summary modal printing issue -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:23:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:23:11 +0000 Subject: [Koha-bugs] [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing In-Reply-To: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31039-70-9GLSABZ0ja@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 --- Comment #3 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Weird.. it was consistent for Firefox and Chrome for me.. even got Owen to test it on IRC before I reported the bug and he agreed. Hmm.. wonder what's going on... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:23:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:23:48 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-7516DCv6WC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 --- Comment #4 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Thanks David :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:24:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:24:07 +0000 Subject: [Koha-bugs] [Bug 30209] Upgrade 'libdbd-sqlite2-perl' package to 'libdbd-sqlite3-perl' In-Reply-To: <bug-30209-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30209-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30209-70-3Nd1rWMs0A@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30209 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED CC| |tomascohen at gmail.com Status|Pushed to master |RESOLVED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:24:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:24:11 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-MtwIZolkHr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:24:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:24:15 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-eL5Vzc5VLi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136454|0 |1 is obsolete| | --- Comment #3 from David Nind <david at davidnind.com> --- Created attachment 136499 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136499&action=edit Bug 31005: Unit test Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:24:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:24:20 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-0J5xI7wYP3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136455|0 |1 is obsolete| | --- Comment #4 from David Nind <david at davidnind.com> --- Created attachment 136500 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136500&action=edit Bug 31005: Don't inlcude attributes only required for other categories To test: 1 - Create a new patron attribute - check boxes to make it mandatory and visible etc. 2 - Limit it to 'Patron' or other category 3 - Edit a patron not in that category 4 - Attempt to save 5 - 500 Error 6 - Missing mandatory extended attribute (type=MAND) 7 - Apply patch 8 - Attempt aedit again 9 - It succeeds! 10 - Edit a patron in the category with MAND required 11 - on the edit page, right click teh attribute - click 'delete node' 12 - Submit the form 13 - 500 error, but this time that's good, the attribute check works Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:29:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:29:38 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-X6xV6GZTt0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #5 from David Nind <david at davidnind.com> --- Testing notes (using koha-testing-docker): 1. Tests pass: prove t/db_dependent/Koha/Patron.t 2. For step 11: in Firefox enable the web developer tools, select the input field for the attribute, then right click the HTML for the input field in the inspector window and select delete node, -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:30:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:30:51 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-cxjpfTaLEj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136499|0 |1 is obsolete| | --- Comment #6 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136501 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136501&action=edit Bug 31005: Unit test Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:30:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:30:55 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-fjge2fyAVz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136500|0 |1 is obsolete| | --- Comment #7 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136502 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136502&action=edit Bug 31005: Don't inlcude attributes only required for other categories To test: 1 - Create a new patron attribute - check boxes to make it mandatory and visible etc. 2 - Limit it to 'Patron' or other category 3 - Edit a patron not in that category 4 - Attempt to save 5 - 500 Error 6 - Missing mandatory extended attribute (type=MAND) 7 - Apply patch 8 - Attempt aedit again 9 - It succeeds! 10 - Edit a patron in the category with MAND required 11 - on the edit page, right click teh attribute - click 'delete node' 12 - Submit the form 13 - 500 error, but this time that's good, the attribute check works Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:31:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:31:36 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-lgnKd5OQmA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA CC| |martin.renvoize at ptfs-europe | |.com --- Comment #8 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Good catch, simple fix. Unit tests included and passing Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:31:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:31:41 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-84CFhB0Soo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:35:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:35:48 +0000 Subject: [Koha-bugs] [Bug 20395] Use Price formatter in more templates (paycollect, request, parcel, smart-rules) In-Reply-To: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20395-70-layDD42RxO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20395 --- Comment #15 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136503 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136503&action=edit Bug 20395: (follow-up) Change format to use price filter See comment #1. Signed-off-by: Roch D'Amour <roch.damour at inlibro.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:36:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:36:09 +0000 Subject: [Koha-bugs] [Bug 30920] Add caching to C4::Biblio::GetAuthorisedValueDesc In-Reply-To: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30920-70-32VnG7072E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30920 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |joonas.kylmala at iki.fi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:37:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:37:23 +0000 Subject: [Koha-bugs] [Bug 29958] Missing dateaccessioned is set to today when storing an item In-Reply-To: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29958-70-o63hFGxifF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29958 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com CC| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:37:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:37:51 +0000 Subject: [Koha-bugs] [Bug 20395] Use Price formatter in more templates (paycollect, request, parcel, smart-rules) In-Reply-To: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20395-70-ttq8dY3wNK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20395 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:37:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:37:54 +0000 Subject: [Koha-bugs] [Bug 20395] Use Price formatter in more templates (paycollect, request, parcel, smart-rules) In-Reply-To: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20395-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20395-70-m79eJ06qBf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20395 --- Comment #16 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:37:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:37:57 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-9BY1cp4adX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:38:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:38:00 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-NcliIHolyM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #64 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:38:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:38:04 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-KshBtBMJd7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:38:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:38:06 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-zj9FU5X8iL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 --- Comment #9 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:40:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:40:59 +0000 Subject: [Koha-bugs] [Bug 27619] Remove fr-FR installer data In-Reply-To: <bug-27619-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27619-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27619-70-CiHqv9hvEf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27619 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |RESOLVED CC| |tomascohen at gmail.com Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:40:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:40:59 +0000 Subject: [Koha-bugs] [Bug 27829] [OMNIBUS] Remove specific LANG installer data In-Reply-To: <bug-27829-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27829-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27829-70-pUcaq45EPK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27829 Bug 27829 depends on bug 27619, which changed state. Bug 27619 Summary: Remove fr-FR installer data https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27619 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:41:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:41:49 +0000 Subject: [Koha-bugs] [Bug 30852] article_requests missing index on debit_id In-Reply-To: <bug-30852-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30852-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30852-70-r10SjhkViH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30852 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|rel_22_05_candidate | Status|Pushed to master |RESOLVED CC| |tomascohen at gmail.com Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:42:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:42:17 +0000 Subject: [Koha-bugs] [Bug 29958] Missing dateaccessioned is set to today when storing an item In-Reply-To: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29958-70-Lt5VVs4Wtl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29958 --- Comment #10 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136504 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136504&action=edit Bug 29958: Do not set dateaccessioned on updates This patch reomves the second occurence of setting daeaccessioned today, outside of the 'add/update' handling in Koha::Item->store. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:42:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:42:21 +0000 Subject: [Koha-bugs] [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing In-Reply-To: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31039-70-KTO5t1tRyE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 --- Comment #4 from David Nind <david at davidnind.com> --- If it's any consolation, I didn't notice anything different after applying the patch. I use Firefox Developer Edition for testing (with the history/caching deleted each time it starts up). Maybe it only shows up on other operating systems? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:44:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:44:23 +0000 Subject: [Koha-bugs] [Bug 29958] Missing dateaccessioned is set to today when storing an item In-Reply-To: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29958-70-6kgNc8kJzN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29958 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff --- Comment #11 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- There wasn't actually a unit test for this.. either way. I'm not sure what the repercussions are of having a null deaccessioned in the database? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:45:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:45:14 +0000 Subject: [Koha-bugs] [Bug 10086] No way to go back to the basket on uncertain prices page In-Reply-To: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10086-70-3G7WwgfFDo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10086 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:45:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:45:18 +0000 Subject: [Koha-bugs] [Bug 10086] No way to go back to the basket on uncertain prices page In-Reply-To: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10086-70-XMLyOYzs2y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10086 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #60167|0 |1 is obsolete| | Attachment #136471|0 |1 is obsolete| | --- Comment #8 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136505 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136505&action=edit Bug 10086: Link to go to basket from uncertain prices page This patch moves the Edit button into an Edit column, styled with bootstrap button and font awesome icon, and adds a link on the basket name to go to the basket. To test; 1) Add an item with uncertain prices to a basket 2) Go to the vendor of the basket 3) Click Uncertain prices on the left 4) Notice 'edit' button does not look like a button, and basket name is not a link 5) Apply patch and refresh page 6) Basket name is now a link. Click to confirm it takes you to the right page 7) Edit button is now in edit column. Confirm it works as expected 8) Confirm you cannot sort on Edit column and the button does not wrap on a narrower browser Sponsored-by: Catalyst IT -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:45:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:45:23 +0000 Subject: [Koha-bugs] [Bug 10086] No way to go back to the basket on uncertain prices page In-Reply-To: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10086-70-TAl6pEPREo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10086 --- Comment #9 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136506 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136506&action=edit Bug 10086: No way to go back to the basket on uncertain prices page Fixed the edit button placement to the right-most column and fixed the the displayed information in the order column from calling non-existent variables based on the item. To test: 1) Add an item with uncertain prices to a basket 2) Go to the vendor of the basket 3) Click Uncertain prices on the left 4) Notice 'edit' button does not look like a button, and basket name is not a link 5) Apply patch and refresh page 6) Basket name is now a link. Click to confirm it takes you to the right page 7) Edit button is now in edit column. Confirm it works as expected 8) Confirm you cannot sort on Edit column and the button does not wrap on a narrower browser 9) Check that the correct information is displayed for the order column (title, author, publisher code, publication year, copyright date, isbn) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:48:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:48:45 +0000 Subject: [Koha-bugs] [Bug 30626] DT REST API wrapper not building the filter query correctly In-Reply-To: <bug-30626-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30626-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30626-70-7PVIvLpv0l@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30626 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |RESOLVED Resolution|--- |FIXED CC| |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:48:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:48:45 +0000 Subject: [Koha-bugs] [Bug 30576] DefaultPatronSearchFields no longer takes effect In-Reply-To: <bug-30576-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30576-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30576-70-DE3cYXghKW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30576 Bug 30576 depends on bug 30626, which changed state. Bug 30626 Summary: DT REST API wrapper not building the filter query correctly https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30626 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:49:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:49:24 +0000 Subject: [Koha-bugs] [Bug 30310] Replace Moment.js with Day.js In-Reply-To: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30310-70-dPYhAtXWpp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30310 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135495|0 |1 is obsolete| | --- Comment #6 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136507 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136507&action=edit Bug 30310: Add dayjs v1.11.2 Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:49:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:49:28 +0000 Subject: [Koha-bugs] [Bug 30310] Replace Moment.js with Day.js In-Reply-To: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30310-70-cXVlkadnmu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30310 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135496|0 |1 is obsolete| | --- Comment #7 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136508 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136508&action=edit Bug 30310: Add dayjs timezone plugin Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:49:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:49:33 +0000 Subject: [Koha-bugs] [Bug 30310] Replace Moment.js with Day.js In-Reply-To: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30310-70-3vr0Kw5Bok@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30310 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135497|0 |1 is obsolete| | --- Comment #8 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136509 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136509&action=edit Bug 30310: Adjust js-date-format Test plan: Confirm that the test plan from bug 24455 is still passing Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:49:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:49:37 +0000 Subject: [Koha-bugs] [Bug 30310] Replace Moment.js with Day.js In-Reply-To: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30310-70-e531G9CCUE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30310 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135498|0 |1 is obsolete| | --- Comment #9 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136510 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136510&action=edit Bug 30310: Remove momentjs Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:49:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:49:42 +0000 Subject: [Koha-bugs] [Bug 30310] Replace Moment.js with Day.js In-Reply-To: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30310-70-RK3kHihdK2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30310 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135499|0 |1 is obsolete| | --- Comment #10 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136511 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136511&action=edit Bug 30310: Adjust about page Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:51:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:51:03 +0000 Subject: [Koha-bugs] [Bug 30310] Replace Moment.js with Day.js In-Reply-To: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30310-70-jFbW0Yqare@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30310 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #11 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- No regressions found in my testing.. passing to QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:52:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:52:53 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-Z5vjgwKlkP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com Status|Passed QA |Patch doesn't apply --- Comment #23 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Please rebase ASAP. Thanks. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:59:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:59:44 +0000 Subject: [Koha-bugs] [Bug 29454] Stash itemtypes in plugin objects to reduce DB calls In-Reply-To: <bug-29454-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29454-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29454-70-co3ht9JEDQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29454 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 16:59:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 14:59:47 +0000 Subject: [Koha-bugs] [Bug 29454] Stash itemtypes in plugin objects to reduce DB calls In-Reply-To: <bug-29454-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29454-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29454-70-9Dvt00BbpA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29454 --- Comment #18 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:11:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:11:32 +0000 Subject: [Koha-bugs] [Bug 31040] jsTree image being used outside of jsTree plugin In-Reply-To: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31040-70-BqpdgaTWny@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31040 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:11:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:11:36 +0000 Subject: [Koha-bugs] [Bug 31040] jsTree image being used outside of jsTree plugin In-Reply-To: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31040-70-YfdqOX7h4y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31040 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136487|0 |1 is obsolete| | --- Comment #2 from David Nind <david at davidnind.com> --- Created attachment 136512 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136512&action=edit Bug 31040: jsTree image being used outside of jsTree plugin This patch corrects OPAC templates which tried to use a jsTree image asset which is missing following the jsTree upgrade (see Bug 11873). Templates should use /images/spinner-small.gif instead. To test, apply the patch and enable OpenLibrarySearch and populate OverDrive and RecordedBooks preferences with credentials (they don't have to be valid). Perform a catalog search in the OPAC. When the search results page first loads you should see messages about the services being queried: Searching OpenLibrary... Searching RecordedBoks... Searching OverDrive... Each should show a working "spinner" image while the queries are being performed. If you have valid OverDrive credentials you can try clicking through to the OverDrive search results page to confirm that the image is working on that page too. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:13:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:13:47 +0000 Subject: [Koha-bugs] [Bug 31040] jsTree image being used outside of jsTree plugin In-Reply-To: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31040-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31040-70-jtJ2ohNbxY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31040 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #3 from David Nind <david at davidnind.com> --- I don't have valid OverDrive credentials, so wasn't able to test accessing the search results page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:18:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:18:13 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-ozdjurLD4v@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135180|0 |1 is obsolete| | --- Comment #109 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136513 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136513&action=edit Bug 21978: Add middle_name field to the database This patch adds a new field, middle_name, to the borrowers, deletedborrowers and borrower_modifications tables. It also updates the DefaultPatronSearchFields preference to include the new field if the preference is still set to it's default settings from install. Sponsored-by: Cheshire Libraries Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:18:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:18:19 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-FkbZlAGWcn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135181|0 |1 is obsolete| | --- Comment #110 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136514 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136514&action=edit Bug 21978: Add middle_name to api specification This patch adds middle_name to the accaeptable fields in API requests and responses. Test plan 1) Search for a user using the API 2) Confirm the API responds with a 200 Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:18:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:18:25 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-bCugQEbSmL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135182|0 |1 is obsolete| | --- Comment #111 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136515 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136515&action=edit Bug 21978: Add support for middle name This patch adds the new 'Middle name' field to the patron record. To test: 1) Apply patches 2) Update database, restart all and clear the browser cache 3) Load a patron in the staff module 4) Confirm you can see and edit the new 'Middle name' field 5) Confirm the new middle name data displays on patron details 6) Confirm the new middle name data displays on patron search results 7) Confirm the new middle name data displays everywhere patron names are displayed. 8) Confirm the new middle name data displays on the OPAC 9) Confirm the 'Middle name' field appears in the OPAC borrower modification screens 10) Edit sysprefs `BorrowerMandatoryFields`, `BorrowerUnwantedFields`, `SelfModificationBorrowerUnwantedField`, `PatronSelfModificationMandatoryField`, `PatronSelfRegistrationBorrowerMandatoryField` and `PatronSelfRegistrationBorrowerUnwantedField` to confirm you can make the new field required or hidden. 11) Verify that DefaultPatronSearchFields contains the new field if you already had 'firstname' in the field list 12) Enable PatronAutoComplete system preference 13) Type patrons surname into checkout or patron search but don't hit return 14) Confirm the patrons middle name is displayed in the preview 15) Go to tools > patron lists and attempt to add a patron to a list 16) Patrons middle name should appear in the autocomplete here too Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:18:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:18:31 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-mIVj3Xgy4t@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135183|0 |1 is obsolete| | --- Comment #112 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136516 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136516&action=edit Bug 21978: Schema Update Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:18:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:18:38 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-CwYx5qwoA8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135184|0 |1 is obsolete| | --- Comment #113 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136517 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136517&action=edit Bug 21978: Add middle_name into hold request autocomplete Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:18:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:18:44 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-EOgbHDKqGc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135185|0 |1 is obsolete| | --- Comment #114 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136518 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136518&action=edit Bug 21978: Use patron-title.inc in request.tt This patch updates all manual accurences of the patron title display to use the patron-title.inc include (so we get middlename handling) in request.tt. We also add the option to hide the cardnumber from the include and set the link_to to 'members_pay' to retain the current display format on this page. Test plan You'll need to trigger the following cases to test all cases: 1) Too many holds 2) Account expired 3) Has restrictions 4) Outstanding fines 5) Already has hold on item 6) No holds allowed 7) Too many holds for this record 8) Already in possession 9) Already has a hold 10) Already has a recall 11) Pickup library doesn't many patron home library Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:18:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:18:49 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-lrBFZOO5u3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135186|0 |1 is obsolete| | --- Comment #115 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136519 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136519&action=edit Bug 21978: Use patron-title for holdfor handling in results This patch update the catalogue search results page to use the patron-title include to display patron titles for the 'Holds for' line in results and dropdown list. Test plan 1) Load patron account 2) Press search to hold 3) Perform a search which brings back 2+ items (e.g. 'street') 4) Note that on the search results it says: Place hold for 'firstname (othername) surname (cardnumber)' 5) Press the Place hold button and note that the dropdown includes "Place hold for 'firstname (othername) surname'" and "Forget 'firstname (othername) surname'" 6) Click through to an item from the results, press the 'Place hold' button and note the dropdown includes "Place hold for 'firstname (othername) surname'" Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:18:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:18:55 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-n91t8CPLRa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135187|0 |1 is obsolete| | --- Comment #116 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136520 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136520&action=edit Bug 21978: (follow-up) Stop passing holdfor_cardnumber We not longer need to pass holdfor_cardnumber distinctly, we can just refer to holdfor_patron.cardnumber instead. This patch does that ;P Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:19:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:19:01 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-MyoB0I8jYg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135188|0 |1 is obsolete| | --- Comment #117 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136521 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136521&action=edit Bug 21978: (follow-up) Stop using C4 methods in atomicupdate We should really only use C4::Context methods where absolutely necessary.. in this case is was simple to replace the get_preference and set_preference calls with SQL Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:19:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:19:06 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-Jt9LIkmvTO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135189|0 |1 is obsolete| | --- Comment #118 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136522 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136522&action=edit Bug 21978: Add middle_name to sysprefs.sql And add middle_name at the exact same places for installations with the default value. Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:24:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:24:36 +0000 Subject: [Koha-bugs] [Bug 31032] Patron attributes branch limitations are unclear In-Reply-To: <bug-31032-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31032-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31032-70-PrCH1pMwxK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31032 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:28:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:28:32 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-v8aMpS4IO0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 --- Comment #119 from Christopher Brannon <cbrannon at cdalibrary.org> --- Passed QA! This is a huge step forward! This has been needed for so long! Thank you Martin for this much needed field! I am really looking forward to seeing it in production! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:28:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:28:33 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-M2qKQR1sUZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135471|0 |1 is obsolete| | Attachment #135473|0 |1 is obsolete| | --- Comment #24 from Lucas Gass <lucas at bywatersolutions.com> --- Created attachment 136523 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136523&action=edit Bug 22659: Add save and continue button to additional-contents.tt To test: 1. Apply patch and restart everything 2. Go to Tools > News and create some new additional content. 3. Notice a Save and continue button 4. Try saving and contining. 5. Make sure if you are using the CodeMirror editor that you are still in the CodeMirror editor 6. Try 2 - 5 again but with the wysiwyg editor, make sure when you save and continue you remain in the wysiwyg editor. 7. If you are saving and contining from News make sure you remain in News, when you are saving and contining from HTML customizations make sure you remain there. 8. Turn on the NewsLog system preference 9. With the NewsLog on make sure your content is being logged correctly when you sabe and continue. Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:28:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:28:38 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-hJxU0JbTEp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 --- Comment #25 from Lucas Gass <lucas at bywatersolutions.com> --- Created attachment 136524 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136524&action=edit Bug 22659: (follow-up) Add category to redirect Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk> Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:28:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:28:59 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-GwNyoy6spa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135473|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:29:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:29:31 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-jWNFfhb5hO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135473|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:29:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:29:45 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-JRCVEb7QBI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:30:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:30:08 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-ObRZsIL6Ko@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 --- Comment #26 from Lucas Gass <lucas at bywatersolutions.com> --- rebased for current master and reset to NSO -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:34:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:34:03 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-1HMX52rgQt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:34:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:34:07 +0000 Subject: [Koha-bugs] [Bug 21978] Add middle name field In-Reply-To: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21978-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21978-70-CLjN3gFvCK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21978 --- Comment #120 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:35:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:35:43 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-VUb1cVbdT3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136425|0 |1 is obsolete| | --- Comment #19 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136525 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136525&action=edit Bug 30879: Add biblionumber as a sorting option in MARC21 This patch updates the Local-Number indexing by adding a zeropad option to Zebra indexing and adding this to the mapping files It also updates C4/Search.pm to allow biblionumber as an option To test: 1 - Apply patches 2 - copy etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl to /etc/koha/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl 3 - Restart all, reindex zebra 4 - Browse to: http://localhost:8081/cgi-bin/koha/catalogue/search.pl?idx=kw&q=a&sort_by=biblionumber_dsc&count=20 5 - Confirm records sorted correctly 6 - Browse to http://localhost:8081/cgi-bin/koha/catalogue/search.pl?idx=kw&q=a&sort_by=biblionumber_asc&count=20 7 - Confirm records sorted correctly Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:35:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:35:47 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-5dvgSWp5hs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136426|0 |1 is obsolete| | --- Comment #20 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136526 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136526&action=edit Bug 30879: Allow biblionumber as sort option in Elasticsearch Repeat previous tests with Elasticsearch engine You will need to reindex and reset mappings to pickup the changes form the file Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:35:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:35:51 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-4zYSxe0iOG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136427|0 |1 is obsolete| | --- Comment #21 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136527 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136527&action=edit Bug 30879: Handle index/sorting for UNIMARC Same as before, but test with UNIMARC setup Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:35:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:35:55 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-VT41cisz4i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136428|0 |1 is obsolete| | --- Comment #22 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136528 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136528&action=edit Bug 30879: Add option to syspref and update display To test: 1 - Update ComponentSortField system preference and verify biblionumber is an option 2 - Repeat test plan from 30327 and confirm sorting with biblionumber works Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:36:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:36:43 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-m3oQ75lTwZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #23 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Awesome teamwork here guys, thankyou very much. All tested and working as expected from my side.. signing off. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:39:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:39:04 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-B5Nv0WrAOz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #224 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Taking things for a test run now :) 1) Adding to bundle and removing from bundle a) When adding a non-existing barcode like "eee", I get an unspecific error message: Failure: Check the logs for details (blocker) b) The contrast is not really good on those errors I feel, maybe black text would be better on the colored background if that is an easy option. The light red background + red font is a little hard to read. (Accessibility) c) If you have a leading space in front of the barcode, it won't be recognized. This can happen easily if you copy and paste when forming the bundle and we deal with it in other places - I think we should do it here too for consistency (see also bug 30409) (normal) d) Should we be able to change contents of a bundle while it is checked out? At the moment it's possible. Maybe a 'safety question'? (question/suggestion) 2) Detail view of bundle Staff: a) From the bundle, there is no way to access the record that holds the bundled item. It would be nice if the Title could be linked in the table to allow for that. (suggestion) b) Collection is not resolved into the description in the table. (blocker) c) The item type column is empty, although the bundled item has an itemtype (blocker) d) If an item is lost, the date is formatted 'database' style. DateFormat is not applied: Last seen: 2022-06-24. DateFormat was set to DD.MM.YYYY. (blocker) e) As all items on collections now show the "Manage bundle" button, there is no way to see which item actually has bundled items. An idea here would be to add the number of bundled items to the button text. (strong suggestion?) * Empty: Manage bundle * 3 items bundled in: Manage bundle (3) f) If you have 2 items on a bundle record and "Manage bundle" the first, the button appearance changes and looks a bit 'pushed'. Now push the second "Manage bundle link". Both bundles are open now, but only the second button appears 'pushed'. Close the first bundle - the button looks pushed now... close the second, now you have a detail page with the second button looking pushed. This seems a bit of a confusing UI message. Maybe it was supposed to close the first when the second was opened? (question) 3) Detail view of bundled items a) Staff - bundled: I like the link from the status to the record there, although it makes the column quite wide for a longer one. It all has nice class mark-up, so would be easy to play with if needed. (comment) b) OPAC - bundled: We show "Added to bundle" but there is no way for the OPAC user to figure out "how to get it". I'd really like to see a way to navigate this here. Maybe we could link the status on the detail page to the bundle? (normal) 4) Checkout - nothing found there :) 5) Checkin - nothing to complain about here either. I like the new modal and its functionality. 6) Lost/return claims Checked in a bundle of 3 items, but one was 'lost'. a) Details tab: The return claim was created and in the patron account it shows Claims ( 0 1 ) on the tab. But when I click on the tab, there is nothing below. (blocker) b) Checkouts tab: The claim shows here, but also shows a little issue: In the notes column, it shows the text 'null'. And when I edit the note the text is there as well. c) When trying to resolve the checkout claim to "(Not lost)", I see an "Uncaught ReferenceError" in the console and the display of the claims table is not refreshed. When I reload the page, I can see that the claim was actually resolved. (blocker?) d) When the claim return is resolved to another lost status, like "Lost", the bundle view will show: Lost: 1. It should resolve to the description instead. (blocker) 7) Inventory on checkin feature - no complaints 8) Wish/suggestion list a) Some items are really similar if you don't see the subtitle, part_name and part_number. The bundle display and the modals in circulation only show title. I think it would make a lot of sense to add the other fields here to display as well. The use case here would be language materials for us. They often match on title ($a) and the important bit is in the other fields (work book, DVD, etc.9. They would also lend themselves to be 'bundled up'. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:41:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:41:24 +0000 Subject: [Koha-bugs] [Bug 30912] Database update fails for 21.12.00.016 Bug 30060 In-Reply-To: <bug-30912-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30912-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30912-70-QBVUYBhAno@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30912 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | Status|Pushed to master |Pushed to stable --- Comment #18 from Lucas Gass <lucas at bywatersolutions.com> --- backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:48:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:48:38 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-ljZhshYTZe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | Status|Pushed to master |Pushed to stable --- Comment #10 from Lucas Gass <lucas at bywatersolutions.com> --- Backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:52:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:52:29 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-BtZUVMAJ96@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #225 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136529 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136529&action=edit Bug 28854: (follow-up) Improve error for item not found -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:54:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:54:03 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-d1J0546Dvf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | CC| |lucas at bywatersolutions.com --- Comment #11 from Lucas Gass <lucas at bywatersolutions.com> --- Backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:56:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:56:39 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-NpL1dh5QNh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #226 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136530 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136530&action=edit Bug 28854: (follow-up) Use barcodedecode in Koha::REST::V1::Items This removes any leading or trailing whitespace from the external id passed -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 17:57:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 15:57:31 +0000 Subject: [Koha-bugs] [Bug 30907] Remaining incorrect uses of Koha::Recall->item_level_recall In-Reply-To: <bug-30907-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30907-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30907-70-hMpsoFY018@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30907 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | Status|Pushed to master |Pushed to stable --- Comment #8 from Lucas Gass <lucas at bywatersolutions.com> --- Backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:00:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:00:15 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-H6l62KOOQz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #227 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #224) > 1) Adding to bundle and removing from bundle > > a) When adding a non-existing barcode like "eee", I get an unspecific error > message: Failure: Check the logs for details (blocker) Fixed in follow-up attached > b) The contrast is not really good on those errors I feel, maybe black text > would be better on the colored background if that is an easy option. The > light red background + red font is a little hard to read. (Accessibility) I stick to the bookstrap standard alerts here, I'll defer to Owen for guidance.. it's an area I've felt we're really inconsistent all over the place for ages and aught to improve... but I'd rather do a consistent job everywhere in a distinct bug. > c) If you have a leading space in front of the barcode, it won't be > recognized. This can happen easily if you copy and paste when forming the > bundle and we deal with it in other places - I think we should do it here > too for consistency (see also bug 30409) (normal) Fixed in a follow-up attached.. but it felt a bit wrong to use barcodedecode here.. we should perhaps use JS instead on input. > d) Should we be able to change contents of a bundle while it is checked out? > At the moment it's possible. Maybe a 'safety question'? (question/suggestion) Really good point.. I think it probably shouldn't be possible.. I'll have a go at that next week and then continue with your review. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:01:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:01:18 +0000 Subject: [Koha-bugs] [Bug 30899] Upgrade sometimes fails at "Upgrade to 21.11.05.004" In-Reply-To: <bug-30899-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30899-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30899-70-FjkxVGkW1C@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30899 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00 |22.11.00, 22.05.x released in| | Status|Pushed to master |Pushed to stable --- Comment #21 from Lucas Gass <lucas at bywatersolutions.com> --- Backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:05:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:05:53 +0000 Subject: [Koha-bugs] [Bug 30883] Authorities merge is limited to 100 biblio with Elasticsearch In-Reply-To: <bug-30883-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30883-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30883-70-YIJTB7ycfC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30883 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | Status|Pushed to master |Pushed to stable --- Comment #10 from Lucas Gass <lucas at bywatersolutions.com> --- Backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:09:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:09:44 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-ocWp4nHlry@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com --- Comment #65 from Lucas Gass <lucas at bywatersolutions.com> --- Won't apply cleanly to 22.05.x, can someone rebase this for 22.05 ASAP? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:11:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:11:46 +0000 Subject: [Koha-bugs] [Bug 31043] New: Marc records imports stuck at 0% or 4% Message-ID: <bug-31043-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31043 Bug ID: 31043 Summary: Marc records imports stuck at 0% or 4% Change sponsored?: --- Product: Koha Version: 20.11 Hardware: All OS: All Status: NEW Severity: critical Priority: P5 - low Component: MARC Bibliographic record staging/import Assignee: koha-bugs at lists.koha-community.org Reporter: jheanelle.foster at nlj.gov.jm QA Contact: testopia at bugs.koha-community.org When trying to import staged marc records, it freezes at 4 %; another file freezes at 0%. Both files are over 6,000 records in length. The same happens on KOHA 21.11. On the contrary it accepts an import file of 1,700 records. Thanks for your assistance. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:14:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:14:10 +0000 Subject: [Koha-bugs] [Bug 30520] Command line stage and import broken In-Reply-To: <bug-30520-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30520-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30520-70-NgSVRkq0oE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30520 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com Status|Pushed to master |Pushed to stable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:19:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:19:55 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox replaces ALL local covers for a biblio, not only the specific item's covers In-Reply-To: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30972-70-VD5C6eCSHX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | Status|Pushed to master |Pushed to stable CC| |lucas at bywatersolutions.com --- Comment #7 from Lucas Gass <lucas at bywatersolutions.com> --- Backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:23:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:23:54 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers don't appear in the staff interface for other libraries with SeparateHoldings In-Reply-To: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30234-70-9uoTRU1iqo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | Status|Pushed to master |Pushed to stable --- Comment #26 from Lucas Gass <lucas at bywatersolutions.com> --- Backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:34:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:34:09 +0000 Subject: [Koha-bugs] [Bug 10086] No way to go back to the basket on uncertain prices page In-Reply-To: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-10086-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-10086-70-noM46hyzxR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10086 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #10 from Owen Leonard <oleonard at myacpl.org> --- The DataTable configuration should have been updated in the second patch, because the wrong columns have disabled sorting. Better than numeric column targeting is targeting by table header cell class. See other templates for " { 'bSortable': false, "bSearchable": false, 'aTargets': [ 'NoSort' ] }," -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:35:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:35:40 +0000 Subject: [Koha-bugs] [Bug 31034] Bib image hidden after changes in bib detail In-Reply-To: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31034-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31034-70-jda03YmiYd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31034 --- Comment #4 from Owen Leonard <oleonard at myacpl.org> --- (In reply to Lucas Gass from comment #3) > Owen, were you using Chrome while testing? No, Firefox (102.0b9, macOS) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:36:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:36:28 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-LaSwrsB9fa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #66 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136531 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136531&action=edit Bug 29325: [22.05.X] Fix commit_file.pl This patch fixes the broken commit_file.pl script. It doesn't deal with commiting the import from the UI. To test: 1. Pick a file for staging: $ kshell k$ misc/stage_file.pl --file TestDataImportKoha.mrc => SUCCESS: All good 2. Commit! k$ misc/commit_file.pl --batch-number 1 => FAIL: You see DBIx::Class::Storage::DBI::_exec_txn_begin(): DBI Exception: DBD::mysql::db begin_work failed: Already in a transaction at /kohadevbox/koha/C4/Biblio.pm line 303 3. Apply this patch 4. Repeat 2 => SUCCESS: Commit succeeds 5. Sign off :-D Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Bug 29325: (QA follow-up) Remove unexisting parameters of BatchRevertRecords There is no interval and callback as in BatchCommitRecords. Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Bug 29325: Call progress callback one last time to confirm comppletion Previously after finishing the loop we were still in a transaction that never completed - we should report progress when done one final time to commit the last records To test: 1 - Stage a file with > 100 records 2 - Commit file 3 - Confirm batch is imported and no records left as staged Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Bug 29325: Fix import from staff client same test as before, but via the staff client Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Bug 29325: Handle the transaction in BatchCommitRecords Requiring the callback to commit was breaking reversion, and likely elsewhere Let's simplify and say that the routine iteself will handle the txn and commit TO test: 1 - Stage a file 2 - Import a file 3 - Revert a file 4 - Test staff client and command line Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> Bug 29325: (QA follow-up) Tidy up tools/manage-marc-import.pl: sub commit_batch does no longer need $schema tools/manage-marc-import.pl: sub revert_batch: calling BatchRevertRecords which has no interval and callback misc/commit_file.pl: sub print_progress_and_commit does no longer commit, renamed misc/commit_file.pl: sub print_progress does no longer have a schema parameter misc/commit_file.pl: sub revert_batch reported deleted items as added Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:44:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:44:36 +0000 Subject: [Koha-bugs] [Bug 31044] New: Allow padding of call numbers in runtime parameters to compare to cn_sort values Message-ID: <bug-31044-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31044 Bug ID: 31044 Summary: Allow padding of call numbers in runtime parameters to compare to cn_sort values Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Reports Assignee: koha-bugs at lists.koha-community.org Reporter: andrewfh at dubcolib.org QA Contact: testopia at bugs.koha-community.org When using SQL to find items in a call number range, best results are achieved by using cn_sort values rather than itemcallnumber values. However, most users won't know how to manually generate a padded call number for comparison to cn_sort values. It'd be helpful if we could set a runtime parameter that would allow a user to input an unpadded call number and select a classification scheme so Koha could then pad their call number and compare it to cn_sort. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:46:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:46:04 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-IQYXHxIQyZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | Status|Pushed to master |Pushed to stable --- Comment #67 from Lucas Gass <lucas at bywatersolutions.com> --- Thanks for the speedy rebase Nick! Backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:53:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:53:09 +0000 Subject: [Koha-bugs] [Bug 30971] Recalls - log viewer error In-Reply-To: <bug-30971-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30971-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30971-70-Dm6qZxK1Cg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30971 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00 |22.11.00, 22.05.01 released in| | Status|Pushed to master |Pushed to stable --- Comment #16 from Lucas Gass <lucas at bywatersolutions.com> --- backported to 22.05.x for 22.05.01 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:58:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:58:45 +0000 Subject: [Koha-bugs] [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing In-Reply-To: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31039-70-1VKxuoL4FG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:58:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:58:48 +0000 Subject: [Koha-bugs] [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing In-Reply-To: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31039-70-DnVdUMGnSu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136488|0 |1 is obsolete| | --- Comment #5 from Owen Leonard <oleonard at myacpl.org> --- Created attachment 136532 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136532&action=edit Bug 31039: Remove duplicate modal printing JS This patch removes the erroneos duplication of the modal printing js. Test plan 1) Create some transactions and perform a cashup. 2) Open the cashup summary modal 3) Click 'Print' 4) Cancel the print dialogue 5) Note that the dialogue re-appears 6) Apply the patch 7) Repeat and note the dialogue closes first time now. Signed-off-by: Owen Leonard <oleonard at myacpl.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 18:58:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 16:58:52 +0000 Subject: [Koha-bugs] [Bug 31039] Rebase issues lead to duplicate JS for cash summary modal printing In-Reply-To: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31039-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31039-70-Cvqo1jbFdo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31039 --- Comment #6 from Owen Leonard <oleonard at myacpl.org> --- Created attachment 136533 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136533&action=edit Bug 31039: (follow-up) Wrap jQuery in $(document).ready() cashup_modal.js consists only of jQuery code, so the whole thing should be contained in a $(document).ready() function. This may or may not be contributing to the behavior this bug is trying to fix. Please note that this patch contains whitespace changes, so diff accordingly. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 19:21:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 17:21:23 +0000 Subject: [Koha-bugs] [Bug 26472] Elasticsearch - ES - Authority record results not ordered correctly due to punctuation marks In-Reply-To: <bug-26472-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26472-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26472-70-EmUoqYHUAh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26472 Esther Melander <estherm at sodaspringsid.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |estherm at sodaspringsid.com --- Comment #1 from Esther Melander <estherm at sodaspringsid.com> --- We are using Elastic Search and have noticed a similar problem for authorities with trailing periods. The trailing periods of an authority should be ignored in the sort, but are instead showing at the end of the result list. This problem appears in the advanced editor with the authority look-up (ctrl-shift-L) search. If you were to search for "Cooking." with the search parameter "contains" the result is not returned at the top of the list as expected, but rather towards the bottom. Further complicating, if you use the search parameter "starts with" or "exact" no results are returned. Do the same search without the trailing period "Cooking" and you will get the expected results. Also, Library of Congress is moving toward minimally punctuated authorities in which there is no closing punctuation on some authorities. As a result there are now existing authorities following different punctuation rules. Regardless of the source, trailing periods are throwing off the sort and I also suspect auto linking. Here are some additional papers on punctuation in authorities. https://www.oclc.org/bibformats/en/6xx.html shows examples of the 600 subject tags without punctuation at the end. These are links to a power point and paper on minimally punctuated records put out by Library of Congress. https://www.loc.gov/aba/pcc/sct/documents/GuidelinesMinimallyPunctuatedMARC-SCT-2020-01.pptx https://www.loc.gov/aba/pcc/documents/PCC-Guidelines-Minimally-Punctuated-MARC-Data.docx In any event, Elastic Search appears to need some refinement in how punctuation is handled to bring it into compliance with current practice. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 19:26:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 17:26:51 +0000 Subject: [Koha-bugs] [Bug 28182] Elastic search exact authorities search includes punctuation In-Reply-To: <bug-28182-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28182-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28182-70-v4Sv39Co2B@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28182 Esther Melander <estherm at sodaspringsid.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |estherm at sodaspringsid.com --- Comment #2 from Esther Melander <estherm at sodaspringsid.com> --- I think this may be connected to bug 26472. It appears a wider discussion about how Elastic Search is handling punctuation is needed. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 19:48:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 17:48:45 +0000 Subject: [Koha-bugs] [Bug 31045] New: Add a housebound notification to staff interface Message-ID: <bug-31045-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31045 Bug ID: 31045 Summary: Add a housebound notification to staff interface Change sponsored?: --- Product: Koha Version: 21.05 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff Client Assignee: koha-bugs at lists.koha-community.org Reporter: estherm at sodaspringsid.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Similar to the notification for curbside pickup or purchase suggestions, it would be nice to add a housebound delivery notification reminder. Otherwise staff would need to know, remember, or otherwise maintain a list of patrons who need housebound services outside of Koha. If combined with bug 26545 where patrons can update info or request a delivery through the OPAC, the overall module becomes much more useful. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 19:55:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 17:55:00 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-riUS28g73l@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 19:55:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 17:55:15 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-sVl1EJcpOS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #27 from Tomás Cohen Arazi <tomascohen at gmail.com> --- This was actually PQA :-D -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 20:58:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 18:58:03 +0000 Subject: [Koha-bugs] [Bug 31046] New: Floating Rules Based on Collection/Shelving Location Message-ID: <bug-31046-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31046 Bug ID: 31046 Summary: Floating Rules Based on Collection/Shelving Location Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Circulation Assignee: koha-bugs at lists.koha-community.org Reporter: daniel.gaghan at pueblolibrary.org QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com PCCLD would like an option for floating rules to be based on the items shelving location or collection. This is how it would work. 1. A system preference allows for an Authorized Value/Shelfing Location or Collection to restrict floating. 2. The Western Research (Library A) location is added to the system preference and all material with the value does not float. 3. Item is cataloged with the Western Research shelving location. 4. Item is checked-out by a user at Library A. 5. The item is returned to Library B. 5. A message appears in Koha stating the item needs to return to Library A because it does not float. -Daniel -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 22:06:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 20:06:11 +0000 Subject: [Koha-bugs] [Bug 30971] Recalls - log viewer error In-Reply-To: <bug-30971-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30971-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30971-70-OOFfMbeVwp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30971 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes an error that release notes| |occurred when viewing | |recalls log entries. The | |error was caused by the | |renaming of itemnumber, | |biblionumber, and | |branchcode attributes. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 22:16:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 20:16:50 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-E80umSlQo5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the command line release notes| |script misc/commit_file.pl | |and manage staged MARC | |records tool in the staff | |interface so that imported | |records are processed. | | | |The | |error message from The | |command line script was | |failing with this error | |message | |"DBIx::Class::Storage::DBI: | |:_exec_txn_begin(): DBI | |Exception: DBD::mysql::db | |begin_work failed: Already | |in a transaction at | |/kohadevbox/koha/C4/Biblio. | |pm line 303". In the staff | |interface, the processing | |of staged records would | |fail without any error | |messages. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 22:34:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 20:34:27 +0000 Subject: [Koha-bugs] [Bug 30883] Authorities merge is limited to 100 biblio with Elasticsearch In-Reply-To: <bug-30883-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30883-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30883-70-Ob1k1bo8tF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30883 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the hard-coded release notes| |limit of 100 when merging | |authorities (when | |Elasticsearch is the search | |engine). When merging | |authorities where the term | |is used over 100 times, | |only the first 100 | |authorities would be merged | |and the old term deleted, | |irrespective of the value | |set in the | |AuthorityMergeLimit system | |preference. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 23:08:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 21:08:43 +0000 Subject: [Koha-bugs] [Bug 29971] Remember selections across patron search pages In-Reply-To: <bug-29971-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29971-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29971-70-gWfC8EOMBd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29971 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 23:08:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 21:08:48 +0000 Subject: [Koha-bugs] [Bug 29971] Remember selections across patron search pages In-Reply-To: <bug-29971-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29971-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29971-70-8gCWFGbKLX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29971 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136097|0 |1 is obsolete| | --- Comment #10 from David Nind <david at davidnind.com> --- Created attachment 136534 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136534&action=edit Bug 29971: Remember selections across patron search pages This patch modifies the patron search results page to enable checkbox selections to be remembered in the browser's localStorage. This allows checkbox selections to persist while navigating through multiple pages of search results or even across multiple different searches. Once selected, these values can be added to a patron list or submitted for merging. Selections can be cleared manually and will be automatically be removed upon logout. To test, apply the patch and rebuild the staff interface CSS (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client). - In the staff interface perform a patron search in the Patrons module which will return multiple pages of results.. - Check checkboxes next to several patrons. - After one checkbox is checked the "Add to patron list" button should be enabled. - After more than one checkbox is checked the "Merge selected patrons" button should be enabled. - A box should appear in the toolbar above the search results, "Patrons selected: X" - Navigate to another page of results. Check more checkboxes. The "Patrons selected" information should be updated. - Return to the first page of results. Your original selections should still be checked. - Test that the correct set of patrons is used when clicking "Merge selected patrons" or when using "Add to patron list." - Click the "Clear" button in the selections information box. Checkboxes should be cleared on every page of results you previously checked. - The "Add to patron list" and "Merge selected patrons" buttons should become disabled. - After making several selections, log out of the staff interface and log back in, returning to the same patron search. Your selections should have been forgotten. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 23:17:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 21:17:55 +0000 Subject: [Koha-bugs] [Bug 29971] Remember selections across patron search pages In-Reply-To: <bug-29971-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29971-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29971-70-lMY1yjZc1H@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29971 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This enhancement to patron release notes| |search remembers selections | |across multiple pages of | |search results and multiple | |different searches. The | |selected patrons can be | |added to a patron list or | |submitted for merging. | |Selections can be cleared | |manually and are | |automatically removed upon | |logout. Previously, | |selections were only | |remembered for the current | |page of search results. CC| |david at davidnind.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 23:26:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 21:26:31 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-iygi8b5lIh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #228 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Martin Renvoize from comment #227) > (In reply to Katrin Fischer from comment #224) > > 1) Adding to bundle and removing from bundle > > > > a) When adding a non-existing barcode like "eee", I get an unspecific error > > message: Failure: Check the logs for details (blocker) > > Fixed in follow-up attached Will test later when you have gone through that pile of comments :) > > b) The contrast is not really good on those errors I feel, maybe black text > > would be better on the colored background if that is an easy option. The > > light red background + red font is a little hard to read. (Accessibility) > > I stick to the bookstrap standard alerts here, I'll defer to Owen for > guidance.. it's an area I've felt we're really inconsistent all over the > place for ages and aught to improve... but I'd rather do a consistent job > everywhere in a distinct bug. That's fair, not a blocker for me. > > c) If you have a leading space in front of the barcode, it won't be > > recognized. This can happen easily if you copy and paste when forming the > > bundle and we deal with it in other places - I think we should do it here > > too for consistency (see also bug 30409) (normal) > > Fixed in a follow-up attached.. but it felt a bit wrong to use barcodedecode > here.. we should perhaps use JS instead on input. I am not stuck on a specific technical solution, just wanted to show that we try to make this behaviour consistent as an argument why we should ignore spaces here too :) > > d) Should we be able to change contents of a bundle while it is checked out? > > At the moment it's possible. Maybe a 'safety question'? (question/suggestion) > > Really good point.. I think it probably shouldn't be possible.. I'll have a > go at that next week and then continue with your review. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 23:31:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 21:31:04 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-B6erqXJbyg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID |--- --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hm, for me a credit means money exchanging hands. A patron might make a deposit that future fines/fees may be deducted from. Otherwise the option to pay out a credit would not make any sense...? I tihnk at least this needs a little more discussion. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 23:31:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 21:31:04 +0000 Subject: [Koha-bugs] [Bug 13985] Cash Management - Koha as 'Point of Sale' In-Reply-To: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-13985-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-13985-70-jdk7pdo9Uo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13985 Bug 13985 depends on bug 29987, which changed state. Bug 29987 Summary: Manual credits are not recorded for a register https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID |--- -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 23:31:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 21:31:36 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-UA40k7j2pH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |NEW -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Jun 24 23:32:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 21:32:19 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-QFJg81hzWD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Wondering: Maybe we need the payment type pull down on the credits? That way libraries could say it was a cash or other? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 00:15:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 22:15:18 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-aUqFVd6hgA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 00:15:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 22:15:23 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-Sxa8kP9g6F@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136473|0 |1 is obsolete| | --- Comment #53 from David Nind <david at davidnind.com> --- Created attachment 136535 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136535&action=edit Bug 28327: Add unit tests Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 00:15:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 22:15:29 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-VO6Qf5H4Vt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136474|0 |1 is obsolete| | --- Comment #54 from David Nind <david at davidnind.com> --- Created attachment 136536 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136536&action=edit Bug 28327: Unify CSV delimiter special behavior for tabulation System preference 'CSVdelimiter' has a special case for tabulation. Preference value contains string 'tabulation' but string '\t' must be used in CSV file. This is OK in many places, for exemple Bug 17590. This patch adds C4::Context->csv_delimiter to add a uniq metod dealing with this behavior. Also create Koha::Template::Plugin::Koha->CSVDelimiter for calls from Toolkit Templates. Test plan : 1) Set system preference 'CSVdelimiter' = 'tabs'. 2) Create CSV export in impacted pages 3) Check columns are separated by tabulation character and not string 'tabulation' 4) Check with another delimiter Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 00:15:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 22:15:35 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-gF5cfF5oO5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136475|0 |1 is obsolete| | --- Comment #55 from David Nind <david at davidnind.com> --- Created attachment 136537 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136537&action=edit Bug 28327: (follow-up) Comma as default CSV delimiter Looks like most of existing code wants comma as default value. Also impact installer/data/mysql/mandatory/sysprefs.sql. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 00:23:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 22:23:35 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-IqPRAUmrQQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the CSV export release notes| |so that data is correctly | |exported with a tab (\t) as | |the separator when this | |format is selected. This | |was incorrectly using the | |word 'tabulation' as the | |separator. (The default | |export format is set using | |the CSVdelimiter system | |preference.) In addition, | |the code where this is used | |was simplified (including | |several of the default | |reports, item search | |export, and the log | |viewer), and the default | |for CSVdelimiter was set to | |the comma separator. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 00:36:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 22:36:57 +0000 Subject: [Koha-bugs] [Bug 28327] System preference CSVdelimiter special case for tabulation In-Reply-To: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28327-70-RISy1eBTA1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28327 --- Comment #56 from David Nind <david at davidnind.com> --- Testing notes: 1. I hope I have got the text for the release notes correct - I wasn't sure how to describe the changes to all the areas where the CSV export is used/was updated (apart from listing them all). 2. These are a couple of things I noted - these are outside the scope of this bug though: - In areas where DataTables is used (which has its own export function), is it now necessary to have an output section (output to screen and to file)? For example, the log viewer. - For the log viewer, the columns that are exported when using the output area export file are different to that displayed on the screen: . Screen: Date, Librarian, Module, Action, Object, Info, Interface . Output to file from the output selection area: action, barcode, biblioitemnumber, biblionumber, info, interface, module, object, timestamp, user . DataTables export: same as for screen 3. I only tested a couple of areas after the patch was applied: item search, log viewer, and the circulation report (after adding a few check outs). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 00:44:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 24 Jun 2022 22:44:33 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-0kmeplkZlk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes an error when a release notes| |mandatory patron attribute | |limited to a specific | |patron category was causing | |a '500 error' when editing | |a patron not in that | |category. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 04:52:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 02:52:22 +0000 Subject: [Koha-bugs] [Bug 30663] POST /api/v1/suggestions won't honor suggestions limits In-Reply-To: <bug-30663-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30663-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30663-70-1nbLMvU6Y5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30663 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.05.00,21.11.06 |22.05.00,21.11.06,21.05.16 released in| | CC| |victor at tuxayo.net Status|Pushed to stable |Needs documenting --- Comment #17 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Backported: Pushed to 21.05.x branch for 21.05.16 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 12:38:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 10:38:51 +0000 Subject: [Koha-bugs] [Bug 30874] Simplify patron category handling in memberentry In-Reply-To: <bug-30874-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30874-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30874-70-gyUoQux7xH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30874 --- Comment #9 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Looked at the first patches and it's obviously an improvement. I can't offer a lot of 'golfing', but maybe we could still get some improvements out of these patches? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 12:47:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 10:47:54 +0000 Subject: [Koha-bugs] [Bug 30705] Updating the date of birth sometimes shows wrong age In-Reply-To: <bug-30705-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30705-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30705-70-ii1xPSRQde@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30705 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |minor Summary|Age hint on patron form is |Updating the date of birth |wrong |sometimes shows wrong age --- Comment #6 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- It's behaving a little different now: 1) Edit any existing patron, like Henry Acevedo 2) Notice he is 64 years old 3) Update the date to any past date in the current month -> the age hint doesn't update: 64 years 4) Change the date to a year back -> the age hint will now be updated: 1 year It looks like it doesn't do the negative any more, but that it should always update the displayed date, even if it's 0 years? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:02:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:02:05 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-oV5Zq1GkXQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |11172 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11172 [Bug 11172] Reports need a clear filter button -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:02:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:02:05 +0000 Subject: [Koha-bugs] [Bug 11172] Reports need a clear filter button In-Reply-To: <bug-11172-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11172-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11172-70-bYHrQQMEzP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11172 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30327 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 [Bug 30327] Sort component parts -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:05:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:05:31 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-NFUNotRnSb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|11172 |11175 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11172 [Bug 11172] Reports need a clear filter button https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11175 [Bug 11175] Show the parent record's component parts in the detailed views -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:05:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:05:31 +0000 Subject: [Koha-bugs] [Bug 11172] Reports need a clear filter button In-Reply-To: <bug-11172-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11172-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11172-70-HCNMLkSnVQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11172 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|30327 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 [Bug 30327] Sort component parts -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:05:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:05:31 +0000 Subject: [Koha-bugs] [Bug 11175] Show the parent record's component parts in the detailed views In-Reply-To: <bug-11175-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11175-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11175-70-K2Ar13s2wp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11175 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30327 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 [Bug 30327] Sort component parts -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:06:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:06:42 +0000 Subject: [Koha-bugs] [Bug 24010] Number of issues to display to staff accepts non-integer values In-Reply-To: <bug-24010-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24010-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24010-70-CpFLAKO9d1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24010 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:06:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:06:46 +0000 Subject: [Koha-bugs] [Bug 24010] Number of issues to display to staff accepts non-integer values In-Reply-To: <bug-24010-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24010-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24010-70-XdgD9b6YQM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24010 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134986|0 |1 is obsolete| | --- Comment #21 from David Nind <david at davidnind.com> --- Created attachment 136538 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136538&action=edit Bug 24010: Number of issues to display to staff accepts non-integer values This patch modifies the subscription entry form so that it will perform a check on the staffdisplaycount and opacdisplaycount fields before proceding to the second step. It verifies that the values are numeric. The changes are made in the style of the existing form validation, which should be rewritten to either use the validation plugin or to peform checks in a way that all checks are run before warning the user. However, this smaller change will work in the meantime. To test, apply the patch and go to Serials -> New subscription. - Fill out the form with at least the required fields, but put something other than a number if the "Number of issues to display to staff" and "Number of issues to display to the public" with non-numeric characters. - When you click the "Next" button you should get an error message, "Number of issues to display to staff must be a number." - Correct the issues to display to staff field and submit again. - You should get a different error message, "Number of issues to display to the public must be a number." - Correct this field and you should be able to proceed to the next step. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:06:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:06:51 +0000 Subject: [Koha-bugs] [Bug 24010] Number of issues to display to staff accepts non-integer values In-Reply-To: <bug-24010-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24010-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24010-70-z92T27Cn52@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24010 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135092|0 |1 is obsolete| | --- Comment #22 from David Nind <david at davidnind.com> --- Created attachment 136539 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136539&action=edit Bug 24010: DB Changes Amended-patch: adjusted to new atomic update format Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:09:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:09:52 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-aCHfz07c5H@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #32 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I have an issue with one of the tests, but I think it just requires a small fix: # Failed test at t/db_dependent/Koha/Biblio.t line 547. # found warning: Use of uninitialized value in concatenation (.) or string at /kohadevbox/koha/Koha/Biblio.pm line 568. # found warning: Use of uninitialized value in concatenation (.) or string at /kohadevbox/koha/Koha/Biblio.pm line 568. # found warning: Warning from search_compat: 'Exception 'Koha::Exception' thrown 'error searching analytics' # expected to find warning: (?^u:Warning from search_compat: .* 'error searching analytics') ok 5 # Looks like you failed 1 test of 5. not ok 11 - get_marc_components() tests -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:10:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:10:17 +0000 Subject: [Koha-bugs] [Bug 24010] Number of issues to display to staff accepts non-integer values In-Reply-To: <bug-24010-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24010-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24010-70-63v2kT2xvA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24010 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Text to go in the| |This adds validation to the release notes| |subscription entry form to | |check that the values for | |these fields are numbers: | |- | |Number of issues to display | |to staff | |- Number of issues | |to display to the public -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:16:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:16:01 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-9S39u2JVRC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #33 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Why do we need ascending, descending, A-Z and Z-A as options? Is there a functional difference between those and are there any 'impossible' combinations one should not select? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:20:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:20:13 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-P42PjAM1bw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #34 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136540 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136540&action=edit Bug 30327: Supply defaults if component sort fields not set This patch fetches the new sysprefs into variables, providing default title ascending if they are not set to avoid an undefined concatenation warning -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:33:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:33:38 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-9AnTlp7EH5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #35 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Ok, time to do this properly and summarize in one comment :) 1) Unit tests are failing for me, although why is not obvious to me: # Failed test at t/db_dependent/Koha/Biblio.t line 547. # found warning: Use of uninitialized value in concatenation (.) or string at /kohadevbox/koha/Koha/Biblio.pm line 568. # found warning: Use of uninitialized value in concatenation (.) or string at /kohadevbox/koha/Koha/Biblio.pm line 568. # found warning: Warning from search_compat: 'Exception 'Koha::Exception' thrown 'error searching analytics' # expected to find warning: (?^u:Warning from search_compat: .* 'error searching analytics') ok 5 # Looks like you failed 1 test of 5. not ok 11 - get_marc_components() tests 2) Database update is not idempotent, missing the IGNORE (it will explode if you run it a second time): + INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES 3) I feel like the sorting options in combination with the sort criterias are not totally clear. Why do we need ascending, descending, A-Z and Z-A as separate options? Is there a functional difference between those and are there any 'impossible' combinations one should not select? 4) There is a mismatch that needs to be fixed (additional s): .yml: ComponentSortField syspref.sql: ComponentsSortField update: both versions are mixed in update and description. Please fix, this works otherwise nicely and we are very close! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:34:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:34:14 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-zrUwvnUojA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #36 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Nick, now we overlapped - please take a look at the longer comment above! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:43:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:43:07 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-NtutRrzDGT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:43:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:43:10 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-3wBp081zAM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136540|0 |1 is obsolete| | --- Comment #37 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136541 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136541&action=edit Bug 30327: (follow-up) Fix inconsistencies in syspref names and suply defaults This patch fetches the new sysprefs into variables, providing default title ascending if they are not set to avoid an undefined concatenation warning I also make the update idempotent and fix confusion of plural/singular names -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:44:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:44:33 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-0TxJkpbJoF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #38 from Nick Clemens <nick at bywatersolutions.com> --- (In reply to Katrin Fischer from comment #35) > 3) I feel like the sorting options in combination with the sort criterias > are not totally clear. > Why do we need ascending, descending, A-Z and Z-A as separate options? Is > there a functional difference between those and are there any 'impossible' > combinations one should not select? > This copies the 'DefaultSortOrder' pref - I agree we should clarify/fix this, but lets fix all the prefs on another report -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:52:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:52:52 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-wLTw8kG0KO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:52:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:52:57 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-po5tGuxPII@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136447|0 |1 is obsolete| | Attachment #136448|0 |1 is obsolete| | Attachment #136541|0 |1 is obsolete| | --- Comment #39 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136542 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136542&action=edit Bug 30327: Add options for sorting components This patch adds two new sysprefs: ComponentSortField ComponentSortOrder These allow the user to choose how components should be sorted when displaying on the details page of a record, and the corresponding search for all components This also updates our search from simple_search_compat to search_compat to allow for sorting options Note: Some sorting under ES is unclear - this is a separate issue to be invesitgated Our Zebra index does not offer 'record number' sorting, I will file a bug for that To test: 1 - Enable UseControlNumber (or not) 2 - Add some components to a record by control number or title depending on above 3 - Enable ShowComponentRecords syspref 4 - View the record that has components 5 - Note they are not sorted 6 - Apply patch, updatedatabase 7 - reload record 8 - Note components are sorted by title ascending 9 - Try different values for ComponentSortField and ComponentSortOrder 10 - Confirm sorting changes with system preferences 11 - Repeat test on staff and opac, with ES and Zebra search engines Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:53:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:53:02 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-EuURuHzOD2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #40 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136543 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136543&action=edit Bug 30327: Fix tests Corrected variable name on update to match everywhere else Added a default value for limit in buildQuery and only append limit if it has content Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:53:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:53:07 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-I7Qh6JHsX9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #41 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136544 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136544&action=edit Bug 30327: (follow-up) Fix inconsistencies in syspref names and supply defaults This patch fetches the new sysprefs into variables, providing default title ascending if they are not set to avoid an undefined concatenation warning I also make the update idempotent and fix confusion of plural/singular names Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:54:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:54:43 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-ki06c49tvz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Patch doesn't apply --- Comment #24 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- We need a rebase here please! Applying: Bug 30327: Add options for sorting components Using index info to reconstruct a base tree... M Koha/Biblio.pm M catalogue/detail.pl M installer/data/mysql/mandatory/sysprefs.sql M koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref M koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt M koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt M opac/opac-detail.pl M t/db_dependent/Koha/Biblio.t Falling back to patching base and 3-way merge... Auto-merging installer/data/mysql/mandatory/sysprefs.sql CONFLICT (content): Merge conflict in installer/data/mysql/mandatory/sysprefs.sql CONFLICT (add/add): Merge conflict in installer/data/mysql/atomicupdate/bug_30327_add_sortComponents_syspref.pl Auto-merging installer/data/mysql/atomicupdate/bug_30327_add_sortComponents_syspref.pl Auto-merging Koha/Biblio.pm CONFLICT (content): Merge conflict in Koha/Biblio.pm error: Failed to merge in the changes. Patch failed at 0001 Bug 30327: Add options for sorting components -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:57:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:57:21 +0000 Subject: [Koha-bugs] [Bug 29392] Add plugin hooks before merging biblios or authorities In-Reply-To: <bug-29392-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29392-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29392-70-CBw5HxYRF4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29392 --- Comment #4 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Fridolin Somers from comment #3) > Maybe create a KPZ to ease testing Yes, if have never created a plugin, having one supplied to ease testing here would certainly help to speed up things! Maybe a variation to the kitchen sink plugin that could later be a merge request for it? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 13:58:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 11:58:10 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-Dzr4ml71tK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:01:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:01:24 +0000 Subject: [Koha-bugs] [Bug 31047] New: Fix OPACResultsUnavailableGroupingBy system preference description Message-ID: <bug-31047-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31047 Bug ID: 31047 Summary: Fix OPACResultsUnavailableGroupingBy system preference description Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: System Administration Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com There are some small glitches in the OPACResultsUnavailableGroupingBy etc. system preference description: On Hold should be On hold branch should be library -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:06:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:06:48 +0000 Subject: [Koha-bugs] [Bug 16243] Add reference manager software (Mendeley and EasyBib) to OPAC In-Reply-To: <bug-16243-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-16243-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-16243-70-GKRonr0up6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16243 --- Comment #46 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Anke from comment #45) > Hi, if this is still current, can I suggest resp. ask things here? > > 1. Can it be made possible to show an OpenURL window (e.g. SFX) as a popup > instead of the same - or a new - browser tab or window? > > 2: Can it be made possible to activate an OpenURL button or link for titles > without any items? I.e. by using 942$c additionally to (or instead of) the > item type in the item? This would be useful for e-books or e-journals if the > library has full text access e.g. via institutional or national license but > no specific item information in the library, and thus in Koha. Hi Anke, I think these are good questions, but not sure you'll get any reply here. Maybe try the mailing list or filing as separate bugs depending on Bug 8995? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:40:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:40:39 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-B2LAsq13WV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136525|0 |1 is obsolete| | --- Comment #25 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136545 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136545&action=edit Bug 30879: Add biblionumber as a sorting option in MARC21 This patch updates the Local-Number indexing by adding a zeropad option to Zebra indexing and adding this to the mapping files It also updates C4/Search.pm to allow biblionumber as an option To test: 1 - Apply patches 2 - copy etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl to /etc/koha/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl 3 - Restart all, reindex zebra 4 - Browse to: http://localhost:8081/cgi-bin/koha/catalogue/search.pl?idx=kw&q=a&sort_by=biblionumber_dsc&count=20 5 - Confirm records sorted correctly 6 - Browse to http://localhost:8081/cgi-bin/koha/catalogue/search.pl?idx=kw&q=a&sort_by=biblionumber_asc&count=20 7 - Confirm records sorted correctly Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:40:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:40:43 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-j9EPbLJdKu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136526|0 |1 is obsolete| | --- Comment #26 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136546 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136546&action=edit Bug 30879: Allow biblionumber as sort option in Elasticsearch Repeat previous tests with Elasticsearch engine You will need to reindex and reset mappings to pickup the changes form the file Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:40:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:40:47 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-vwuZHuRECd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136527|0 |1 is obsolete| | --- Comment #27 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136547 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136547&action=edit Bug 30879: Handle index/sorting for UNIMARC Same as before, but test with UNIMARC setup Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:40:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:40:53 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-DEGJKOd4YL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136528|0 |1 is obsolete| | --- Comment #28 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136548 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136548&action=edit Bug 30879: Add option to syspref and update display To test: 1 - Update ComponentSortField system preference and verify biblionumber is an option 2 - Repeat test plan from 30327 and confirm sorting with biblionumber works Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:42:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:42:08 +0000 Subject: [Koha-bugs] [Bug 30879] Add option to sort components by biblionumber In-Reply-To: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30879-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30879-70-7hdR8TPlFL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30879 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |release-notes-needed Status|Signed Off |Failed QA --- Comment #29 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Happy to add a motivational sign-off, but: I wonder how we can make sure this feature works correctly for updated installations. 1) We should add a note to the release notes about this requiring to reindex. 2) For Zebra the update will usually just work, but what about Elasticsearch? We recently noticed that bug 15851 doesn't work for people because of the missing cni index. I'd like to avoid that here. Could we add a database update for updating the mappings? 3) Unit tests? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:49:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:49:54 +0000 Subject: [Koha-bugs] [Bug 30896] Running misc/batchRebuildBiblioTables.pl -c fails with error "Running Data too long for column 'lccn'" In-Reply-To: <bug-30896-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30896-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30896-70-3h4qB7PIk7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30896 --- Comment #6 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- 010 - Library of Congress Control Number is NR = not repeatable and seems to have a fixed structure (and possibly length): https://www.loc.gov/marc/bibliographic/bd010.html Does this make this a WONTFIX or should we handle things more gracefully? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:50:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:50:40 +0000 Subject: [Koha-bugs] [Bug 26689] Monetary accounts notices should be definable at the credit_type/debit_type level In-Reply-To: <bug-26689-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26689-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26689-70-cgUCHpXjpa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26689 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |release-notes-needed -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:53:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:53:14 +0000 Subject: [Koha-bugs] [Bug 26689] Monetary accounts notices should be definable at the credit_type/debit_type level In-Reply-To: <bug-26689-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26689-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26689-70-KyLxYb3fPG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26689 --- Comment #18 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I am a little worried that there could be an overlap with existing notice template codes resulting in 'strange' behaviour. 5/ Add a new notice template under the 'circulation' module with a code that matches one of your account debit types (OVERDUE, PAYOUT) OVERDUE and circulation seems a super likely candidate, even if the standard notice is ODUE, but this can be configured as libraries like... Maybe it would be a little safer to use these with a prefix? Something like ACCOUNT_ could be a good fit. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 14:56:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 12:56:22 +0000 Subject: [Koha-bugs] [Bug 30905] Show waiting recalls in patron account on checkouts tab In-Reply-To: <bug-30905-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30905-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30905-70-MnKW7tnXwi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30905 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |katrin.fischer at bsz-bw.de |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 15:01:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 13:01:49 +0000 Subject: [Koha-bugs] [Bug 30905] Show waiting recalls in patron account on checkouts tab In-Reply-To: <bug-30905-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30905-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30905-70-24Yl1ACO9V@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30905 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 15:01:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 13:01:53 +0000 Subject: [Koha-bugs] [Bug 30905] Show waiting recalls in patron account on checkouts tab In-Reply-To: <bug-30905-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30905-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30905-70-MkBYSZTYEa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30905 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135752|0 |1 is obsolete| | --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136549 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136549&action=edit Bug 30905: Show waiting recalls in patron account This enhancement shows recalls ready for pick-up on the patron's account so they can't be missed. To test: 1) Enable the UseRecalls system preference and set up your recalls-related circulation rules. 2) Check out an item to Patron B. 3) Log into the OPAC as Patron A and search for the item. 4) Place a recall on that item. Note the pickup library. 5) Go back to the staff client. At the top right of the page, confirm your logged in library matches the recall pickup library. Set the library to the recall pickup library if needed. 6) Check in the recalled item and confirm the recall as waiting for Patron A. 7) Go to Patron A's account (members/moremember.pl). Confirm the recall shows under 'Recalls waiting here' and all the information is correct. 8) Go to Patron A's checkouts (circ/circulation.pl). Confirm the recall shows under 'Recalls waiting here' and all the information is correct. 9) Click on the menu at the top right of the page and choose 'Set library'. Change the library to some other library. 10) Repeat steps 7 and 8, however this time the recall should show under 'Recalls waiting at other libraries'. Sponsored-by: Catalyst IT Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 15:25:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 13:25:59 +0000 Subject: [Koha-bugs] [Bug 22070] OpacBrowseResults has broken link back to search results In-Reply-To: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22070-70-kCRbYL5R4p@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22070 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff --- Comment #9 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I'll have another go at making this reproducable in a simpler way: 1) Fresh ktd sample database, reset_all, even used a private window. 2) OPAC: search for: bööks 3) Open detail page of last result on the result list. 4) In the browser, click on "Previous" 5) Check the URL for "back to results" - it will show broken characters 6) Click on it - it's broken ... and the patch fixes this for me. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 15:29:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 13:29:13 +0000 Subject: [Koha-bugs] [Bug 22070] OpacBrowseResults has broken link back to search results In-Reply-To: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22070-70-25blNK2zVI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22070 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 15:29:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 13:29:18 +0000 Subject: [Koha-bugs] [Bug 22070] OpacBrowseResults has broken link back to search results In-Reply-To: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22070-70-JG05CYdvuD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22070 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #115529|0 |1 is obsolete| | --- Comment #10 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136550 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136550&action=edit Bug 22070: Try to fix encoding and escaping issue on browse result Pretty sure this does not work but in my tests it seems to fix the problem. Note that if there are several pages, the next link won't appear if you are on the last result of the first page. I don't understand why this code is so complicated, couldn't we port what we have on the staff interface (browser.js)? Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 15:30:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 13:30:07 +0000 Subject: [Koha-bugs] [Bug 22070] OpacBrowseResults has broken link back to search results In-Reply-To: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22070-70-YBZgW5vTDP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22070 --- Comment #11 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I know the patch and commit message need some more work, but maybe the updated test plan in comment#9 and the SO will help to get some more eyes on it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 15:53:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 13:53:16 +0000 Subject: [Koha-bugs] [Bug 30901] Add template method to be able to look up renewal data in Koha slips and notices In-Reply-To: <bug-30901-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30901-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30901-70-VKGBQZkCDA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30901 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31048 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31048 [Bug 31048] Add information about remaining renewals to sample RENEWAL notice -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 15:53:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 13:53:16 +0000 Subject: [Koha-bugs] [Bug 31048] New: Add information about remaining renewals to sample RENEWAL notice Message-ID: <bug-31048-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31048 Bug ID: 31048 Summary: Add information about remaining renewals to sample RENEWAL notice Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org Depends on: 30901 Bug 30901 adds an easy to read/understand way of adding information about remaining renewals to the RENEWAL notice. It would be nice to have this included in our sample notice to advertise the feature and make it easy to customize for libraries. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30901 [Bug 30901] Add template method to be able to look up renewal data in Koha slips and notices -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 15:54:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 13:54:32 +0000 Subject: [Koha-bugs] [Bug 30901] Add template method to be able to look up renewal data in Koha slips and notices In-Reply-To: <bug-30901-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30901-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30901-70-jKUe8jL5zr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30901 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #13 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I think we needs ways to make TT in the templates easier to use. This is handy, easy to read and well documented now. Only: unit tests please! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:15:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:15:43 +0000 Subject: [Koha-bugs] [Bug 29129] The clear screen and print icons in circulation should be configuarable to print either ISSUESLIP or ISSUEQSLIP In-Reply-To: <bug-29129-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29129-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29129-70-WO90Od0CtP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29129 --- Comment #14 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136551 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136551&action=edit Bug 29129: (QA follow-up) Tidy atomicupdate Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:17:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:17:50 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-svoMKSGEyg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:17:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:17:53 +0000 Subject: [Koha-bugs] [Bug 22659] Add 'save and continue' functionality to news and HTML customizations In-Reply-To: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22659-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22659-70-GAfTp3UrWF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22659 --- Comment #28 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:17:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:17:56 +0000 Subject: [Koha-bugs] [Bug 29055] Focus on keyword field when subscription biblio search window opens In-Reply-To: <bug-29055-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29055-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29055-70-wGjsZK0wFk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29055 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:17:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:17:59 +0000 Subject: [Koha-bugs] [Bug 29055] Focus on keyword field when subscription biblio search window opens In-Reply-To: <bug-29055-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29055-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29055-70-AsjLpOqhEY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29055 --- Comment #5 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:18:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:18:01 +0000 Subject: [Koha-bugs] [Bug 29129] The clear screen and print icons in circulation should be configuarable to print either ISSUESLIP or ISSUEQSLIP In-Reply-To: <bug-29129-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29129-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29129-70-iZykPboiGz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29129 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:18:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:18:04 +0000 Subject: [Koha-bugs] [Bug 29129] The clear screen and print icons in circulation should be configuarable to print either ISSUESLIP or ISSUEQSLIP In-Reply-To: <bug-29129-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29129-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29129-70-Z6gLVXXleL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29129 --- Comment #15 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:18:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:18:06 +0000 Subject: [Koha-bugs] [Bug 30609] Reindent serial claims template In-Reply-To: <bug-30609-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30609-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30609-70-psPk31IJQ7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30609 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:18:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:18:09 +0000 Subject: [Koha-bugs] [Bug 30609] Reindent serial claims template In-Reply-To: <bug-30609-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30609-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30609-70-lUklvgcqFS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30609 --- Comment #8 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:18:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:18:11 +0000 Subject: [Koha-bugs] [Bug 30871] Make it clear that 008 Type of Material is controlled by Leader 6th position in MARC21 In-Reply-To: <bug-30871-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30871-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30871-70-nSeQTEIzLE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30871 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:18:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:18:14 +0000 Subject: [Koha-bugs] [Bug 30871] Make it clear that 008 Type of Material is controlled by Leader 6th position in MARC21 In-Reply-To: <bug-30871-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30871-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30871-70-sa5HLAZDZV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30871 --- Comment #9 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:20:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:20:22 +0000 Subject: [Koha-bugs] [Bug 31043] Marc records imports stuck at 0% or 4% In-Reply-To: <bug-31043-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31043-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31043-70-VmrruMAYbP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31043 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Have you tried waiting it out? The progress bar not always working nicley is a known thing, but in the background the import might still work and finish correctly. You could try a report on import_biblios to see if there is still 'movement' while it gets stuck and more lines are added there. There is also ongoing work to improve the imports with 27421. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:26:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:26:50 +0000 Subject: [Koha-bugs] [Bug 29282] Show items.issue and items.renewals in the holdings table on the detail page in the staff interface In-Reply-To: <bug-29282-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29282-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29282-70-zVNSUeWFK4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29282 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:26:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:26:53 +0000 Subject: [Koha-bugs] [Bug 29282] Show items.issue and items.renewals in the holdings table on the detail page in the staff interface In-Reply-To: <bug-29282-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29282-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29282-70-NKpeAYOWts@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29282 --- Comment #17 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:26:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:26:56 +0000 Subject: [Koha-bugs] [Bug 30195] Suggestion form in OPAC should use ISBN to FindDuplicate In-Reply-To: <bug-30195-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30195-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30195-70-XFBb3QgZrq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30195 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:26:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:26:58 +0000 Subject: [Koha-bugs] [Bug 30195] Suggestion form in OPAC should use ISBN to FindDuplicate In-Reply-To: <bug-30195-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30195-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30195-70-HapdOBoeHP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30195 --- Comment #11 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:27:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:27:01 +0000 Subject: [Koha-bugs] [Bug 30936] Reindent authority detail template in staff interface In-Reply-To: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30936-70-vICmGfpgR4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30936 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:27:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:27:03 +0000 Subject: [Koha-bugs] [Bug 30936] Reindent authority detail template in staff interface In-Reply-To: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30936-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30936-70-nTLbj093pQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30936 --- Comment #7 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:58:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:58:38 +0000 Subject: [Koha-bugs] [Bug 24644] Hold not marked filled if item set to positive not for loan value In-Reply-To: <bug-24644-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24644-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24644-70-6c091CKOsG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24644 --- Comment #4 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Items with positive NFL values are not holdable by definition. I think this is not something that can/should just be changed. The deeper problem is how we deal with 'enforced' holds (AllowHoldPolicyOverride), as they can cause all types of issues contradicting the hold rules. For item level holds, maybe the suggestion on bug 13559 could be an idea. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:59:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:59:08 +0000 Subject: [Koha-bugs] [Bug 24644] Hold not marked filled if item set to positive not for loan value In-Reply-To: <bug-24644-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-24644-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-24644-70-Dy8MI8HoHA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24644 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=13559 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 16:59:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 14:59:08 +0000 Subject: [Koha-bugs] [Bug 13559] Forced item level hold should be highlighted on return In-Reply-To: <bug-13559-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-13559-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-13559-70-U5KP9qy3cp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13559 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=24644 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:00:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:00:38 +0000 Subject: [Koha-bugs] [Bug 29331] Batch edit items.itemlost In-Reply-To: <bug-29331-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29331-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29331-70-IG8hfL8eWi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29331 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |NEW -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:09:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:09:06 +0000 Subject: [Koha-bugs] [Bug 31000] Use of uninitialized value $record_type in string eq In-Reply-To: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31000-70-YA4MChM7sN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |25790 --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Slava, should this be 'needs sign-off'? Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 [Bug 25790] [OMNIBUS] warnings removal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:09:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:09:06 +0000 Subject: [Koha-bugs] [Bug 25790] [OMNIBUS] warnings removal In-Reply-To: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25790-70-T1uolmtcie@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |31000 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 [Bug 31000] Use of uninitialized value $record_type in string eq -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:11:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:11:53 +0000 Subject: [Koha-bugs] [Bug 30673] Improve is_valid_date function for validating date strings In-Reply-To: <bug-30673-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30673-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30673-70-wX4oBcSZJf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30673 --- Comment #11 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I've tested the second patch and could not spot any issues, but there is a mismatch with the test plan: - With the dateformat system preference set to something other than "yyyy-mm-dd" open an item for editing. The "Date acquired" date picker should work correctly and fill the date in "yyyy-mm-dd" format (overriding the Flatpickr default). I was using DD.MM.YYYY and the date showed like this in the input field. Changing and storing a different format appeared to work well tho. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:12:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:12:47 +0000 Subject: [Koha-bugs] [Bug 30673] Improve is_valid_date function for validating date strings In-Reply-To: <bug-30673-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30673-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30673-70-e30S7v0xXs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30673 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:12:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:12:54 +0000 Subject: [Koha-bugs] [Bug 30673] Improve is_valid_date function for validating date strings In-Reply-To: <bug-30673-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30673-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30673-70-KtKTGewM0P@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30673 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134740|0 |1 is obsolete| | --- Comment #12 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136552 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136552&action=edit Bug 30673: Improve is_valid_date function for validating date strings This patch corrects a couple of issues with our date validation in both the staff interface and the OPAC. The "is_valid_date" function needs to be able to accept a custom date format when one has been defined to override the default Flatpickr configuration. The function also needs to do better checking of the date itself following the transition to Flatpickr. jQueryUI's parse method had better built-in error handling, whereas Flatpickr's simply tries its best to convert a string into a date. We can use the existing Date_from_syspref function to check that the date string can be converted to a valid JavaScript Date object. To test, apply the patch and test date input fields in a few places in the staff interface, e.g. the patron edit form, the circulation statistics wizard, or the overdues page. Also check these specific pages: - With the dateformat system preference set to something other than "yyyy-mm-dd" open an item for editing. The "Date acquired" date picker should work correctly and fill the date in "yyyy-mm-dd" format (overriding the Flatpickr default). - Check Serial -> Claims to confirm that the "To" and "From" filters work correctly. - Test that various dateformat preference settings work in all cases. In the OPAC, test that date picker inputs work correctly on pages like the "Place hold" page, the "Your personal details" page, and "Your summary" -> "Holds" -> "Suspend." Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:13:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:13:38 +0000 Subject: [Koha-bugs] [Bug 30480] Split cataloguing log into items and bibliographic records In-Reply-To: <bug-30480-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30480-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30480-70-whtbePRwrE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30480 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|20.11 |master -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:29:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:29:18 +0000 Subject: [Koha-bugs] [Bug 27859] MARC export for search results In-Reply-To: <bug-27859-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27859-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27859-70-4Wss01HqbQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27859 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #15 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi David, the QA test tools turn up some issues with this patch, can you please fix? 1) QA test tools FAIL Koha/SearchEngine/Elasticsearch.pm FAIL spelling prefered ==> preferred OK Koha/SearchEngine/Elasticsearch/Search.pm FAIL catalogue/search.pl FAIL critic # ControlStructures::ProhibitMutatingListFunctions: Got 1 violation(s). # Variables::ProhibitUnusedVariables: Got 1 violation(s). OK installer/data/mysql/atomicupdate/bug_27859-add_enable_search_result_marc_export_sysprefs.pl OK installer/data/mysql/mandatory/sysprefs.sql FAIL koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt FAIL filters wrong_html_filter at line 325 ( <li><a href="/cgi-bin/koha/catalogue/search.pl?count=[% results_per_page | uri %]&export=1&export_format=[% id %][% PROCESS sort_search_query %]">[% custom_export_formats.$id.name | html %]</a></li>) missing_filter at line 325 ( <li><a href="/cgi-bin/koha/catalogue/search.pl?count=[% results_per_page | uri %]&export=1&export_format=[% id %][% PROCESS sort_search_query %]">[% custom_export_formats.$id.name | html %]</a></li>) missing_filter at line 360 ( <div class="dialog message">[% export_message %]</div>) missing_filter at line 363 ( <div class="dialog error">[% export_error %]</div>) FAIL t/db_dependent/Koha/SearchEngine/Elasticsearch.t FAIL spelling indentical ==> identical indentical ==> identical 2) Translatability This will not be translatable and should be moved to templates, also the other places where export_links_html is set. HTML should not be generated in .pl files: + $export_links_html = $links_count > 1 ? + "<p>Some records exceeded the maximum size supported by ISO2709 and was exported as MARCXML instead.</p>" . $export_links_html : $export_links_html; Also here: $message = "<p>The export finished successfully:</p>" 3) System preferences I am a little in doubt about SearchResultMARCExportFromAddress. The from address can not always be set to be a library specific email, especially for installations hosted centrally by a support provider. We usually tend to use the reply-to for individual settings. But it should for sure be type = email in the .prefs file (activates validation). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:33:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:33:18 +0000 Subject: [Koha-bugs] [Bug 30490] Should deleting a parent itemtype be CASCADING? In-Reply-To: <bug-30490-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30490-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30490-70-uicZqbe87V@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30490 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- My feeling would be that if you delete a parent itemtype, it should set the field to NULL in the 'child itemtypes'. Does that make sense? IIUC quietly deleting the 'children' seems a dangerous move, although it should hopefully not be possible while items exist for them. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:36:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:36:22 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-FLNoSzngc0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:36:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:36:26 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-XfghUKk3Lm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136385|0 |1 is obsolete| | --- Comment #4 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136553 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136553&action=edit Bug 30994: Typo: item was on loan. couldn't be returned. This patch updates some language in the inventory template to make it readable and consistent: Punctuation fixed, capitalization made more consistent, language corrections ("check in" instead of "return"). To test you can try to apply the patch and trigger the various errors in the inventory interface, but it's probably enough to visually confirm the changes in the patch. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:43:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:43:00 +0000 Subject: [Koha-bugs] [Bug 30321] Order receive page dies if quantity received is more than 0 In-Reply-To: <bug-30321-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30321-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30321-70-avL72tqWGM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30321 --- Comment #7 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Emmi, do you still see this issue and could you add a step by step on how to reproduce it? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:50:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:50:15 +0000 Subject: [Koha-bugs] [Bug 30538] Regression: rotating collections does not update status In-Reply-To: <bug-30538-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30538-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30538-70-AEGo499Npc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30538 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=29863 --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- There seems to be different opinions on this. I kinda agree with Lisette that having a status indicating that something needs to be 'pulled' for transfer, makes sense. This has also been reported against 21.05 which is quite old now, so I think we cannot just change the behaviour again. Maybe this should be configurable or an option you can check when moving the rotating collection. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:50:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:50:15 +0000 Subject: [Koha-bugs] [Bug 29863] Show requested transfers in the holdings table In-Reply-To: <bug-29863-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29863-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29863-70-Nd0Lu0N0U5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29863 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30538 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:59:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:59:47 +0000 Subject: [Koha-bugs] [Bug 30991] [% ELSE %]0[% END %] will break translations if used for assigning variables In-Reply-To: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30991-70-UaYTG8eVbI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 17:59:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 15:59:51 +0000 Subject: [Koha-bugs] [Bug 30991] [% ELSE %]0[% END %] will break translations if used for assigning variables In-Reply-To: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30991-70-dmp45quNU7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136429|0 |1 is obsolete| | --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136554 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136554&action=edit Bug 30991: Fix remaining instances of [% ELSE %]0[% END %] in templates The construct of [% ELSE %]0[% END %] breaks translations as it is translated as [% ELSE %][% END %]. Note: No 0 in the ELSE statement. This patchset either removes occurances of a lone 0 in template ELSE statements, or splits it over multiple lines so the 0 is not removed in the translated templates. Test plan: 1. Install the en-NZ translation 2. Search the translated templates for '[% ELSE %][% END %]' and confirm there are are instances of that 3. Apply patch 4. Update your en-NZ translation 5. Repeat step 2 and confirm there are no more instances of [% ELSE %][% END %] in the translated templates Note: I removed the [% ELSE %] statement from opac-bottom.inc as that statement was empty in the en translation so it didn't look to be needed. Sponsored-by: Catalyst IT, New Zealand Signed-off-by: Lucas Gass <lucas at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:02:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:02:11 +0000 Subject: [Koha-bugs] [Bug 30569] mana_enabled gets set incorrectly In-Reply-To: <bug-30569-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30569-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30569-70-xvqyukIBz0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30569 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- This has already been fixed in the most current versions: [%- IF (Koha.Preference('Mana') == 1 && mana_url) -%] var mana_enabled = 1; [%- ELSE -%] var mana_enabled = 0; [%- END -%] var BOOKSELLER_IDS = [% To.json( bookseller_ids ) || '[]' | html %]; I am closing as RESOLVED FIXED. If you are using a maintained version (21.05 and above) and still have this issue, please reopen. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:02:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:02:34 +0000 Subject: [Koha-bugs] [Bug 30569] mana_enabled gets set incorrectly In-Reply-To: <bug-30569-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30569-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30569-70-fPw8FqEzyV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30569 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30991 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:02:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:02:34 +0000 Subject: [Koha-bugs] [Bug 30991] [% ELSE %]0[% END %] will break translations if used for assigning variables In-Reply-To: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30991-70-eQgkU0C6O5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30569 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:04:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:04:35 +0000 Subject: [Koha-bugs] [Bug 30575] Returning an ILL item shouldn't just change the request status In-Reply-To: <bug-30575-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30575-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30575-70-FFa0sgoIGW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30575 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- +1 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:04:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:04:39 +0000 Subject: [Koha-bugs] [Bug 30609] Reindent serial claims template In-Reply-To: <bug-30609-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30609-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30609-70-MGuCqg9AsF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30609 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This enhancement updates release notes| |the serial claims template | |in the staff interface | |(claims.tt) so that the | |indentation is consistent | |and replaces tabs with | |spaces. It also adds | |comments to highlight the | |markup structure. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:07:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:07:18 +0000 Subject: [Koha-bugs] [Bug 30196] Odd number of elements warning caused by dt_from_string In-Reply-To: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30196-70-GRxv46GXrS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Patch still applies, but missing test plan and unit test. Blou, do you still intend to work on this one or shoudl we reset to NEW? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:07:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:07:48 +0000 Subject: [Koha-bugs] [Bug 30196] Odd number of elements warning caused by dt_from_string In-Reply-To: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30196-70-yYGZCV94Sr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |25790 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 [Bug 25790] [OMNIBUS] warnings removal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:07:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:07:48 +0000 Subject: [Koha-bugs] [Bug 25790] [OMNIBUS] warnings removal In-Reply-To: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25790-70-iqxOwEG46n@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30196 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 [Bug 30196] Odd number of elements warning caused by dt_from_string -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:10:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:10:05 +0000 Subject: [Koha-bugs] [Bug 29898] Overdues.pm line 663, Use of uninitialized value in string eq In-Reply-To: <bug-29898-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29898-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29898-70-6jpvCHOQox@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29898 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |25790 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 [Bug 25790] [OMNIBUS] warnings removal -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:10:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:10:05 +0000 Subject: [Koha-bugs] [Bug 25790] [OMNIBUS] warnings removal In-Reply-To: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25790-70-k7EL1QyMzs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |29898 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29898 [Bug 29898] Overdues.pm line 663, Use of uninitialized value in string eq -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:12:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:12:16 +0000 Subject: [Koha-bugs] [Bug 30871] Make it clear that 008 Type of Material is controlled by Leader 6th position in MARC21 In-Reply-To: <bug-30871-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30871-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30871-70-VJ3ZVRFK5Y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30871 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This enhancement adds title release notes| |elements or clarifies | |existing title elements to | |indicate how default values | |are chosen (for both the | |default and advanced | |editor). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:13:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:13:25 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-kkCDy4Ci7q@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This updates some error |This updates some error release notes|messages for the inventory |messages for the inventory |tool to them more readable |tool to make them more |and consistent: punctuation |readable and consistent: |fixed, capitalization made |punctuation fixed, |more consistent, and |capitalization made more |language corrections |consistent, and language |("check in" instead of |corrections ("check in" |"return"). |instead of "return"). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:14:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:14:21 +0000 Subject: [Koha-bugs] [Bug 25063] [OMNIBUS] OPAC Renewal Option In-Reply-To: <bug-25063-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25063-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25063-70-aLXue8CjFQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25063 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |26354, 26355, 26357 Summary|OPAC Renewal Option |[OMNIBUS] OPAC Renewal | |Option --- Comment #7 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I feel like there was no bug filed for the fourth option, correct? Have still reformatted to make things a little clearer. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26354 [Bug 26354] Prevent submission of patron modification request unless changes are actually made https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26355 [Bug 26355] Tie account renewals to patron modification requests https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26357 [Bug 26357] Create preference for staff notification of patron self-renewals -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:14:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:14:21 +0000 Subject: [Koha-bugs] [Bug 26354] Prevent submission of patron modification request unless changes are actually made In-Reply-To: <bug-26354-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26354-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26354-70-bE0eCAEJmH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26354 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |25063 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25063 [Bug 25063] [OMNIBUS] OPAC Renewal Option -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:14:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:14:21 +0000 Subject: [Koha-bugs] [Bug 26355] Tie account renewals to patron modification requests In-Reply-To: <bug-26355-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26355-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26355-70-hDtGcsGTTu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26355 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |25063 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25063 [Bug 25063] [OMNIBUS] OPAC Renewal Option -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:14:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:14:21 +0000 Subject: [Koha-bugs] [Bug 26357] Create preference for staff notification of patron self-renewals In-Reply-To: <bug-26357-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26357-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26357-70-yZ5HpzL8Q1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26357 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |25063 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25063 [Bug 25063] [OMNIBUS] OPAC Renewal Option -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:24:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:24:11 +0000 Subject: [Koha-bugs] [Bug 30049] Add ability to download a list as a list of items as spreasheet/CSV In-Reply-To: <bug-30049-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30049-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30049-70-pYkPrZlvZ4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30049 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add ability to download |Add ability to download a |list as a spreadsheet. |list as a list of items as | |spreasheet/CSV Version|21.05 |master --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Esther, that clarifies. I have changed the bug description a little to make it clearer. The CSV option for a list of records is already there - you'd like an item based list. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:26:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:26:22 +0000 Subject: [Koha-bugs] [Bug 30150] Dutch option in language limits is garbled In-Reply-To: <bug-30150-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30150-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30150-70-QYOLrgj4rR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30150 --- Comment #8 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Should we create a just-in-case database update here in case there are more old installations with the wrong description? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:28:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:28:44 +0000 Subject: [Koha-bugs] [Bug 29654] Add option to bulkmarimport.pl for matching on original id In-Reply-To: <bug-29654-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29654-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29654-70-UJK1zfwg8W@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29654 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #8 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Sorry, patch doesn't apply (again): Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 29440: Refactor and clean up bulkmarcimport.pl Using index info to reconstruct a base tree... M C4/Biblio.pm Falling back to patching base and 3-way merge... Auto-merging C4/Biblio.pm CONFLICT (content): Merge conflict in C4/Biblio.pm error: Failed to merge in the changes. Patch failed at 0001 Bug 29440: Refactor and clean up bulkmarcimport.pl hint: Use 'git am --show-current-patch=diff' to see the failed patch When you have resolved this problem run "git bz apply --continue". If you would prefer to skip this patch, instead run "git bz apply --skip". To restore the original branch and stop patching run "git bz apply --abort". Patch left in /tmp/Bug-29440-Refactor-and-clean-up-bulkmarcimportpl-zsN_GN.patch Cannot apply cleanly patches from bug 29440. Everything will be left dirty. git bz apply --continue will not continue the process if patches from other bug reports need to be applied. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:33:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:33:27 +0000 Subject: [Koha-bugs] [Bug 29958] Missing dateaccessioned is set to today when storing an item In-Reply-To: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29958-70-bKLMLG8LsB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29958 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:33:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:33:32 +0000 Subject: [Koha-bugs] [Bug 29958] Missing dateaccessioned is set to today when storing an item In-Reply-To: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29958-70-oZ8QD63SPU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29958 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136504|0 |1 is obsolete| | --- Comment #12 from David Nind <david at davidnind.com> --- Created attachment 136555 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136555&action=edit Bug 29958: Do not set dateaccessioned on updates This patch reomves the second occurence of setting daeaccessioned today, outside of the 'add/update' handling in Koha::Item->store. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:36:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:36:46 +0000 Subject: [Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl In-Reply-To: <bug-29440-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29440-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29440-70-bvgOPAbltp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #39 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 29440: Refactor and clean up bulkmarcimport.pl Using index info to reconstruct a base tree... M C4/Biblio.pm Falling back to patching base and 3-way merge... Auto-merging C4/Biblio.pm CONFLICT (content): Merge conflict in C4/Biblio.pm error: Failed to merge in the changes. Patch failed at 0001 Bug 29440: Refactor and clean up bulkmarcimport.pl hint: Use 'git am --show-current-patch=diff' to see the failed patch When you have resolved this problem run "git bz apply --continue". If you would prefer to skip this patch, instead run "git bz apply --skip". To restore the original branch and stop patching run "git bz apply --abort". Patch left in /tmp/Bug-29440-Refactor-and-clean-up-bulkmarcimportpl-uQYeFb.patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:41:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:41:23 +0000 Subject: [Koha-bugs] [Bug 30551] Cash register report shows wrong library when paying fees in two different libraries In-Reply-To: <bug-30551-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30551-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30551-70-7sxMHGMdne@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30551 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #7 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Can this please be backported? The bug goes back until 20.11, I have backported and tested the patch there locally. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:42:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:42:28 +0000 Subject: [Koha-bugs] [Bug 30197] Transaction library in cash register statistics does not reflect the information in accountlines In-Reply-To: <bug-30197-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30197-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30197-70-gnY0Dpw54K@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30197 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |DUPLICATE Status|NEW |RESOLVED --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Good news, I hope: this was fixed by bug 30551. *** This bug has been marked as a duplicate of bug 30551 *** -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:42:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:42:28 +0000 Subject: [Koha-bugs] [Bug 30551] Cash register report shows wrong library when paying fees in two different libraries In-Reply-To: <bug-30551-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30551-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30551-70-J05eactuwR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30551 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marjorie.barry-vila at collect | |o.ca --- Comment #8 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- *** Bug 30197 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:49:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:49:33 +0000 Subject: [Koha-bugs] [Bug 29958] Missing dateaccessioned is set to today when storing an item In-Reply-To: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29958-70-FofqN1yltq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29958 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes editing items release notes| |without an accession date - | |the accessioned date will | |remain empty, instead of | |being updated to today's | |date. CC| |david at davidnind.com --- Comment #13 from David Nind <david at davidnind.com> --- Testing notes: - Before patch applied: edit an item with an accessioned date, remove the accessioned date, update another field (for example: copy number), save ==> accessioned date changed to today (couldn't find a record/item without a date) - After patch applied: . edit an item with an accessioned date, remove the accessioned date, update another field (for example: copy number), save ==> accessioned date is empty . edit the same item, leaved accessioned date blank, edit another field (such as copy number), save ==> accessioned date remains empty -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 18:57:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 16:57:17 +0000 Subject: [Koha-bugs] [Bug 30231] Don't display (rejected) forms of series entry in search results In-Reply-To: <bug-30231-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30231-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30231-70-Msap4TVclk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30231 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|See (rejected) forms of |Don't display (rejected) |series entry visible in |forms of series entry in |search result (OPAC and |search results |intra) | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 20:31:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 18:31:25 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-LlIsh0DRAx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 20:31:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 18:31:27 +0000 Subject: [Koha-bugs] [Bug 30327] Sort component parts In-Reply-To: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30327-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30327-70-JYqQ1858wU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30327 --- Comment #42 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 20:31:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 18:31:30 +0000 Subject: [Koha-bugs] [Bug 30991] [% ELSE %]0[% END %] will break translations if used for assigning variables In-Reply-To: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30991-70-YUPMIZT4EG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 20:31:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 18:31:33 +0000 Subject: [Koha-bugs] [Bug 30991] [% ELSE %]0[% END %] will break translations if used for assigning variables In-Reply-To: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30991-70-pQ6DviVipn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30991 --- Comment #4 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 20:31:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 18:31:37 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-MP0cab7LN8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 20:31:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 18:31:40 +0000 Subject: [Koha-bugs] [Bug 30994] Typo: item was on loan. couldn't be returned. In-Reply-To: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30994-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30994-70-FbB2Aa9zeR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30994 --- Comment #5 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 20:39:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 18:39:01 +0000 Subject: [Koha-bugs] [Bug 30230] Search for patrons in checkout should not require edit_borrowers permission In-Reply-To: <bug-30230-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30230-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30230-70-XSYGSXKO1a@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30230 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |15812 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15812 [Bug 15812] Checkout search with too many results (single character search) causes poor performance or timeout -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 20:39:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 18:39:01 +0000 Subject: [Koha-bugs] [Bug 15812] Checkout search with too many results (single character search) causes poor performance or timeout In-Reply-To: <bug-15812-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15812-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15812-70-Sv2oXBZ1ZU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15812 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30230 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30230 [Bug 30230] Search for patrons in checkout should not require edit_borrowers permission -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 21:57:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 19:57:07 +0000 Subject: [Koha-bugs] [Bug 30231] Don't display (rejected) forms of series entry in search results In-Reply-To: <bug-30231-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30231-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30231-70-nSSZtS6bNB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30231 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |5927 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5927 [Bug 5927] Show series information in search results page -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 21:57:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 19:57:07 +0000 Subject: [Koha-bugs] [Bug 5927] Show series information in search results page In-Reply-To: <bug-5927-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-5927-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-5927-70-q6Ve2kLRFH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5927 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30231 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30231 [Bug 30231] Don't display (rejected) forms of series entry in search results -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 21:58:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 19:58:45 +0000 Subject: [Koha-bugs] [Bug 30231] Don't display (rejected) forms of series entry in search results In-Reply-To: <bug-30231-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30231-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30231-70-uAG5BPyCfm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30231 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 21:58:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 19:58:49 +0000 Subject: [Koha-bugs] [Bug 30231] Don't display (rejected) forms of series entry in search results In-Reply-To: <bug-30231-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30231-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30231-70-kcbhrItfia@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30231 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131390|0 |1 is obsolete| | --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Created attachment 136556 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136556&action=edit Bug 30231: (bug 5927 follow-up) See (rejected) forms of series entry visible in search result (OPAC and intra) When using zebra with IncludeSeeFromInSearches on, with traced series, the rejected forms (4XX) of series entries are visible in result lists, both in OPAC and intra interfaces. Test plan: ========= 1. Have a MARC 21 installation with zebra, and with IncludeSeeFromInSearches on. Have an authority records for series (130, or 100/110/111 with title) with rejected forms (4XX fields). So the auth record should contain at least: 130 _0 $a Series title 430 _0 $a Some other title under which the series in known Use (each) authority record in at least two biblio records (in appropriate fields, i.e. 800/810/811/830 or even deprecated 440, if it makes use of UNIF_TITLE). Don't forget to properly input also 490 (for 8XX). So the biblio record shold contain at least: 245 nn $a Work title. 490 1_ $a Series title 830 _0 $a Series entry $9 <koha_id> Reindex. 2. Perform a simple biblio search (in OPAC and in intra) with the title from auth record. 3. You shold get a list of results. See the Series information--you shold see not only the accepted entry from 1XX in auth but also the rejected forms from 4XX. 4. Apply the patch. 5. Repeat 3. You shold see only the entry form of series now. Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 22:00:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 20:00:05 +0000 Subject: [Koha-bugs] [Bug 30231] Don't display (rejected) forms of series entry in search results In-Reply-To: <bug-30231-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30231-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30231-70-fMya1TLaqa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30231 --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- We already have this pattern for other fields, so this makes sense. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 22:27:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 20:27:56 +0000 Subject: [Koha-bugs] [Bug 29901] Editing purchase suggestions create a new suggestion In-Reply-To: <bug-29901-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29901-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29901-70-ycsNVb8ycg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29901 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WORKSFORME --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Noemie, I have tested this on the current development version and 20.11 and I cannot replicate the error. 20.11 is the version that was just EOL (no longer receiving updates) Do you still see the problem? If yes, what is your exact Koha version? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 22:31:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 20:31:22 +0000 Subject: [Koha-bugs] [Bug 21860] Marc modification templates cannot check or change indicators In-Reply-To: <bug-21860-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21860-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21860-70-vWIIxraiP1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21860 AspenCat Team <aspencatteam at clicweb.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |aspencatteam at clicweb.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 22:32:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 20:32:16 +0000 Subject: [Koha-bugs] [Bug 15187] Adding 880 Fields to index-list in order to Increase Search for ALL non-latin Scripts In-Reply-To: <bug-15187-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15187-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15187-70-WtSCUP64Um@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15187 AspenCat Team <aspencatteam at clicweb.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |aspencatteam at clicweb.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 22:41:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 20:41:18 +0000 Subject: [Koha-bugs] [Bug 21860] Marc modification templates cannot check or change indicators In-Reply-To: <bug-21860-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21860-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21860-70-DTugI6yxRh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21860 --- Comment #10 from AspenCat Team <aspencatteam at clicweb.org> --- If the field we are adding has indicators that are significant, this would enable user to do this action in Koha. Without it, I would need to use MarcEdit to change the indicators, so I might as well use it to add the field at the same time. If we can do this in Koha rather than outside of Koha, it would vastly streamline the process and allow users without MarcEdit experience to change bibs by simply selecting the correct Marc Modification Template. Another alternative would be if one could add a run a macro as an action in the marc modification template, since we can change indicators using a macro. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 22:57:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 20:57:50 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: <bug-30579-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30579-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30579-70-VJgEAjdrXN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=29945 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 22:57:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 20:57:50 +0000 Subject: [Koha-bugs] [Bug 29945] Item Level Hold Library Location In-Reply-To: <bug-29945-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29945-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29945-70-rmWhXLHoOl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29945 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30579 --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Daniel, I had a closer look now and did some testing. Could this be the case? When placing a record level hold, the pickup location pull down at the top part of the page is used. It's preselected to the logged-in library. When placing an item-level hold, the pickup location is set in the item table. It's also preset to the logged-in library, if this is a valid pickup location. So if you only changed the pickup-location at the top of the page, it could show up as this 'bug'. There is working being done to improve the form on bug 30579. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:01:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:01:27 +0000 Subject: [Koha-bugs] [Bug 6590] Removing hyphens from ISBN and ISSN when cataloging a biblio In-Reply-To: <bug-6590-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-6590-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-6590-70-zXs9hpTLEc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6590 --- Comment #27 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Would this help here? Bug 23919 - Make ISSN searchable with and without hyphen -- You are receiving this mail because: You are watching all bug changes. You are the QA Contact for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:04:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:04:45 +0000 Subject: [Koha-bugs] [Bug 29974] Changing status of held item to Damaged can result in inaccurate hold status In-Reply-To: <bug-29974-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29974-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29974-70-UPBO52na1O@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29974 --- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I guess this is the case because a 'damaged' item can no longer 'fill' the hold... but it's already waiting, so already triggered the hold. Maybe it could be changed for this case. I just wonder if there could be other use cases where this behaviour could be wanted? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:07:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:07:42 +0000 Subject: [Koha-bugs] [Bug 30336] Default sort order of late orders In-Reply-To: <bug-30336-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30336-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30336-70-HcCdo96GqC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30336 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |29648 Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- With 29648 you can now set the default sort to order date. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29648 [Bug 29648] Make KohaTable tables 'default length' and 'default sort' configurable -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:07:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:07:42 +0000 Subject: [Koha-bugs] [Bug 29648] Make KohaTable tables 'default length' and 'default sort' configurable In-Reply-To: <bug-29648-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29648-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29648-70-k65TEt8Irg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29648 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30336 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30336 [Bug 30336] Default sort order of late orders -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:15:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:15:21 +0000 Subject: [Koha-bugs] [Bug 29922] Group of libraries are now displayed in alphabetical order In-Reply-To: <bug-29922-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29922-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29922-70-jIivt7Dqkz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29922 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #12 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Thx a lot for your work on this! I am a little worried about hardcoding the fr_CA with this solution. Then I remembered we had a similar problem somewhere else and the solution found there is a little simpler, but appears to also work nicely in my tests: Bug 29946 - Sort profiles alphabetically when staging MARC records for import Could you have a look please? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:22:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:22:06 +0000 Subject: [Koha-bugs] [Bug 30354] AUTO_RENEWALS_DGST notices are not generated if patron set to receive notice via SMS and no SMS notice defined In-Reply-To: <bug-30354-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30354-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30354-70-KQD2ncyMuI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30354 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting CC| |victor at tuxayo.net Version(s)|22.05.00,21.11.06 |22.05.00,21.11.06,21.05.16 released in| | --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Backported: Pushed to 21.05.x branch for 21.05.16 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:24:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:24:19 +0000 Subject: [Koha-bugs] [Bug 31007] Can't save a supplement issue with mandatory subfields In-Reply-To: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31007-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31007-70-j6sXfxuKQa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31007 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |DUPLICATE Status|Signed Off |RESOLVED --- Comment #5 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I knew this one looked familiar, now I found out why, I had Signed Off the exact same patch a little earlier: bug 30658. Which one to pick? I can sign off here... but Janusz was a little earlier. *** This bug has been marked as a duplicate of bug 30658 *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:24:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:24:19 +0000 Subject: [Koha-bugs] [Bug 30658] (Bug 29496 follow-up) CheckMandatorySubfields don't work properly with select field in serials-edit.tt for Supplemental issue In-Reply-To: <bug-30658-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30658-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30658-70-krtrv8dysE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30658 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #4 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- *** Bug 31007 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:32:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:32:19 +0000 Subject: [Koha-bugs] [Bug 29617] BorrowerUnwantedField should exclude the ability to hide categorycode In-Reply-To: <bug-29617-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29617-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29617-70-V1jQtfdTpU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29617 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting CC| |victor at tuxayo.net --- Comment #10 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:36:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:36:36 +0000 Subject: [Koha-bugs] [Bug 30204] Add subtitle to serial subscription search In-Reply-To: <bug-30204-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30204-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30204-70-M4jFx9rSCM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30204 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting --- Comment #12 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:39:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:39:52 +0000 Subject: [Koha-bugs] [Bug 30149] addbiblio.pl tab closes when saving new authority (biblio record opened from manage-marc-import.pl) In-Reply-To: <bug-30149-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30149-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30149-70-247JIeDVmk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30149 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Thx for the video and the test plan! I have tested in the latest development version and in 21.11, but the window doesn't close for me. I couldn't find a similar bug, but maybe some patch already fixed it? Do you still see this issue or can you replicate it in a newer version maybe? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:41:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:41:31 +0000 Subject: [Koha-bugs] [Bug 29828] If no content is added to default, but a translation, news/additional content entries don't show in list In-Reply-To: <bug-29828-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29828-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29828-70-XqRcuRz8az@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29828 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to stable |Needs documenting --- Comment #17 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Missing dependencies for 21.05.x, it shouldn't be affected, no backport. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:44:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:44:02 +0000 Subject: [Koha-bugs] [Bug 28152] Hidden error when importing an item with an existing itemnumber In-Reply-To: <bug-28152-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28152-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28152-70-NVGB8vsoXt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28152 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Needs documenting CC| |victor at tuxayo.net --- Comment #24 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:44:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:44:25 +0000 Subject: [Koha-bugs] [Bug 30830] Add Koha Objects for Koha Import Items In-Reply-To: <bug-30830-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30830-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30830-70-ieb5lnigBZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30830 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Needs documenting CC| |victor at tuxayo.net --- Comment #9 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:44:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:44:36 +0000 Subject: [Koha-bugs] [Bug 30996] ModBiblio breaks MARC::File::XML In-Reply-To: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30996-70-rqtlvB5rHG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30996 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- We currently have 2 other bugs that are about encoding issues on importing MARCXML data, maybe one of those can give a clue: Bug 29333 - Importing UNIMARC authorities in MARCXML UTF-8 breaks the encoding Bug 17754 - MARCXML upload in Intranet is broken (encoding) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:46:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:46:46 +0000 Subject: [Koha-bugs] [Bug 30831] Add unit test for BatchCommitItems In-Reply-To: <bug-30831-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30831-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30831-70-p9H9THH2L8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30831 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to oldstable |Needs documenting --- Comment #13 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:47:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:47:17 +0000 Subject: [Koha-bugs] [Bug 29883] Uninitialized value warning when GetAuthorisedValues gets called with no parameters In-Reply-To: <bug-29883-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29883-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29883-70-jyLMrjmu7T@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29883 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to stable |Needs documenting --- Comment #12 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:47:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:47:57 +0000 Subject: [Koha-bugs] [Bug 28068] Cash register should not record writeoff as cash received In-Reply-To: <bug-28068-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28068-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28068-70-5aibLUaJku@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28068 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Nick Clemens from comment #2) > Fixed in master by 24786 > > Before that bug, we had: > 80 my $cash_register_id; > 81 if ( C4::Context->preference('UseCashRegisters') ) { > 82 $cash_register_id = $input->param('cash_register'); > ... > 93 if ( !$cash_register_id ) { > 94 my $default_register = Koha::Cash::Registers->find( > 95 { branch => $library_id, branch_default => 1 } ); > 96 $cash_register_id = $default_register->id if > $default_register; > 97 } > 98 $cash_register_id = $registers->next->id if !$cash_register_id; > > > Which would set the cash register even for a write-off > > After that patch we get the value from the template - and don't set it for > WRITEOFF Bug 24786 is in 20.11, so it should be ok in all maintained versions. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:48:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:48:08 +0000 Subject: [Koha-bugs] [Bug 30870] Don't skip tests if Test::Deep is not installed In-Reply-To: <bug-30870-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30870-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30870-70-oYY4CqAOQg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30870 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |RESOLVED Resolution|--- |FIXED --- Comment #7 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. And nothing to document, resolving. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:48:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:48:34 +0000 Subject: [Koha-bugs] [Bug 30528] Limits are not correctly parsed when query contains CCL In-Reply-To: <bug-30528-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30528-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30528-70-Nyosfg8xMz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30528 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Needs documenting CC| |victor at tuxayo.net --- Comment #13 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:53:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:53:39 +0000 Subject: [Koha-bugs] [Bug 30862] Typo: langues In-Reply-To: <bug-30862-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30862-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30862-70-CaSiF32Isx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30862 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to stable |RESOLVED CC| |victor at tuxayo.net --- Comment #6 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:54:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:54:42 +0000 Subject: [Koha-bugs] [Bug 30721] Markup error in detail page's component parts tab In-Reply-To: <bug-30721-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30721-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30721-70-V6FTPXPr2N@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30721 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:55:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:55:03 +0000 Subject: [Koha-bugs] [Bug 31027] Incorrect col sizing for Suggestions Management In-Reply-To: <bug-31027-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31027-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31027-70-Ps90IacoN1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31027 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I've tried on smaller screens and all, but not sure I see what you mean with this bug. Could you attach a screenshot or add some more details maybe? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Jun 25 23:55:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 21:55:05 +0000 Subject: [Koha-bugs] [Bug 29860] Useless warnings in regressions.t In-Reply-To: <bug-29860-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29860-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29860-70-fb4M0bpO1A@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29860 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to oldstable |RESOLVED CC| |victor at tuxayo.net --- Comment #9 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:44:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:44:25 +0000 Subject: [Koha-bugs] [Bug 30742] Confusion when placing hold on record with no items available because of not for loan In-Reply-To: <bug-30742-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30742-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30742-70-iZDQnnSU1c@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30742 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Needs documenting CC| |victor at tuxayo.net --- Comment #15 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported for now to 21.05.x because bug 30892 will be needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:50:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:50:37 +0000 Subject: [Koha-bugs] [Bug 30717] Dates displayed in ISO format when editing items In-Reply-To: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30717-70-2poakaKzjF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30717 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |29369 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29369 [Bug 29369] Use Flatpickr in dateaccessioned cataloging plugin -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:50:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:50:37 +0000 Subject: [Koha-bugs] [Bug 29369] Use Flatpickr in dateaccessioned cataloging plugin In-Reply-To: <bug-29369-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29369-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29369-70-xu18oWt9EC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29369 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30717 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30717 [Bug 30717] Dates displayed in ISO format when editing items -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:50:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:50:45 +0000 Subject: [Koha-bugs] [Bug 30717] Dates displayed in ISO format when editing items In-Reply-To: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30717-70-3wwMSpEu4x@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30717 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |27526 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27526 [Bug 27526] Remove Mod/AddItemFromMarc from additem.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:50:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:50:45 +0000 Subject: [Koha-bugs] [Bug 27526] Remove Mod/AddItemFromMarc from additem.pl In-Reply-To: <bug-27526-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27526-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27526-70-muOLgumgOd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27526 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30717 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30717 [Bug 30717] Dates displayed in ISO format when editing items -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:51:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:51:01 +0000 Subject: [Koha-bugs] [Bug 30717] Dates displayed in ISO format when editing items In-Reply-To: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30717-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30717-70-s9fL5bnXU5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30717 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting --- Comment #15 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Missing dependencies for 21.05.x, it shouldn't be affected, no backport. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:52:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:52:16 +0000 Subject: [Koha-bugs] [Bug 28955] Add option to set default branch from Apache In-Reply-To: <bug-28955-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28955-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28955-70-gJOK3pHcyw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28955 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Needs documenting CC| |victor at tuxayo.net --- Comment #31 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Missing dependencies for 21.05.x, it shouldn't be affected, no backport. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:53:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:53:17 +0000 Subject: [Koha-bugs] [Bug 30828] Remove unused variable in placerequest.pl In-Reply-To: <bug-30828-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30828-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30828-70-QTnK5XHKJP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30828 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Resolution|--- |FIXED Status|Pushed to oldstable |RESOLVED --- Comment #13 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:53:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:53:49 +0000 Subject: [Koha-bugs] [Bug 30731] Noise from about script coming from Test::MockTime (or other CPAN modules) In-Reply-To: <bug-30731-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30731-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30731-70-qQdFXv2HmR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30731 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Needs documenting CC| |victor at tuxayo.net --- Comment #17 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:54:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:54:34 +0000 Subject: [Koha-bugs] [Bug 28723] Holds table not displayed when it contains a biblio without title In-Reply-To: <bug-28723-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28723-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28723-70-bwk23vTbMR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28723 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |RESOLVED CC| |victor at tuxayo.net Resolution|--- |FIXED --- Comment #16 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:55:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:55:08 +0000 Subject: [Koha-bugs] [Bug 30523] Quiet console warning about missing shortcut-buttons map file In-Reply-To: <bug-30523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30523-70-IQi2EpH3Cz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30523 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to oldstable |RESOLVED --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:56:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:56:45 +0000 Subject: [Koha-bugs] [Bug 30337] Holds to Pull ( pendingreserves.pl ) ignores holds if priority 1 hold is suspended In-Reply-To: <bug-30337-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30337-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30337-70-cZoHmptEMX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30337 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Needs documenting CC| |victor at tuxayo.net --- Comment #12 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:57:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:57:13 +0000 Subject: [Koha-bugs] [Bug 30781] Use of uninitialized value $val in substitution iterator at /usr/share/koha/lib/C4/Letters.pm line 665. In-Reply-To: <bug-30781-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30781-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30781-70-6RX6B3Tt9y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30781 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |RESOLVED CC| |victor at tuxayo.net Resolution|--- |FIXED --- Comment #17 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:57:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:57:13 +0000 Subject: [Koha-bugs] [Bug 25790] [OMNIBUS] warnings removal In-Reply-To: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25790-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25790-70-sQG7nTDtIP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25790 Bug 25790 depends on bug 30781, which changed state. Bug 30781 Summary: Use of uninitialized value $val in substitution iterator at /usr/share/koha/lib/C4/Letters.pm line 665. https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30781 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:57:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:57:52 +0000 Subject: [Koha-bugs] [Bug 27697] Opening bibliographic record page prepopulates search bar text In-Reply-To: <bug-27697-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27697-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27697-70-71LRgV8rqH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27697 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to oldstable |Needs documenting --- Comment #13 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:58:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:58:30 +0000 Subject: [Koha-bugs] [Bug 30756] Get skip block out of Koha_Authority.t and add TestBuilder In-Reply-To: <bug-30756-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30756-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30756-70-UXf5yI65DA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30756 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to oldstable |RESOLVED CC| |victor at tuxayo.net --- Comment #20 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 01:59:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 25 Jun 2022 23:59:47 +0000 Subject: [Koha-bugs] [Bug 29961] Horizontal scroll bar in acquisition z39.50 search should always show In-Reply-To: <bug-29961-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29961-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29961-70-ITf09x6eaP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29961 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to oldstable |Needs documenting --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 02:00:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 00:00:36 +0000 Subject: [Koha-bugs] [Bug 30840] Add support for barcode filters to course reserves In-Reply-To: <bug-30840-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30840-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30840-70-4YPR4jC0AJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30840 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Needs documenting CC| |victor at tuxayo.net --- Comment #7 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 02:10:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 00:10:30 +0000 Subject: [Koha-bugs] [Bug 30884] Incomplete replace of jQuery UI tabs in batch patron modification breaks the form sending In-Reply-To: <bug-30884-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30884-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30884-70-VG86ozTdTz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30884 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to oldstable |RESOLVED CC| |victor at tuxayo.net --- Comment #10 from Victor Grousset/tuxayo <victor at tuxayo.net> --- It looks like missing dependencies for 21.05.x, it doesn't seem affected, no backport. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 02:10:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 00:10:31 +0000 Subject: [Koha-bugs] [Bug 29226] OMNIBUS: Replace the use of jQueryUI tabs In-Reply-To: <bug-29226-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29226-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29226-70-bpLVJyBtkx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29226 Bug 29226 depends on bug 30884, which changed state. Bug 30884 Summary: Incomplete replace of jQuery UI tabs in batch patron modification breaks the form sending https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30884 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 02:12:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 00:12:10 +0000 Subject: [Koha-bugs] [Bug 30868] Modifying a patron - page not found error after fixing validation errors where the message is displayed at the top of the page In-Reply-To: <bug-30868-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30868-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30868-70-eVGBkVtSHN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30868 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to oldstable |RESOLVED CC| |victor at tuxayo.net --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Missing dependencies for 21.05.x, it shouldn't be affected, no backport. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 02:12:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 00:12:35 +0000 Subject: [Koha-bugs] [Bug 30893] Typo: update_patrons_category.pl fine(s) In-Reply-To: <bug-30893-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30893-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30893-70-OMH8ZWcW7r@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30893 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to oldstable |RESOLVED CC| |victor at tuxayo.net --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 02:13:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 00:13:43 +0000 Subject: [Koha-bugs] [Bug 30746] JS error on 'your personal details' in OPAC In-Reply-To: <bug-30746-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30746-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30746-70-PK0OBCvCN8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30746 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED CC| |victor at tuxayo.net Status|Pushed to oldstable |RESOLVED --- Comment #12 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 02:14:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 00:14:47 +0000 Subject: [Koha-bugs] [Bug 30726] Flatpickr's "yesterday" shortcut doesn't work if entry is limited to past dates In-Reply-To: <bug-30726-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30726-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30726-70-ENn7NhE1T8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30726 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Pushed to oldstable |RESOLVED Resolution|--- |FIXED --- Comment #8 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Missing dependencies for 21.05.x, it shouldn't be affected, no backport. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 02:15:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 00:15:24 +0000 Subject: [Koha-bugs] [Bug 30844] The OPAC detail page's browser is limited to the current page of results when using Elasticsearch In-Reply-To: <bug-30844-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30844-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30844-70-iU3gIOBCLA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30844 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED CC| |victor at tuxayo.net Status|Pushed to oldstable |RESOLVED --- Comment #18 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Not backported to oldoldstable (21.05.x). Feel free to ask if it's needed. Nothing to document, marking resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 02:29:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 00:29:29 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-pa93PMF0pG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 --- Comment #44 from Victor Grousset/tuxayo <victor at tuxayo.net> --- What happened?! :o Something with Search::Elasticsearch 6.80? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 11:51:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 09:51:06 +0000 Subject: [Koha-bugs] [Bug 30781] Use of uninitialized value $val in substitution iterator at /usr/share/koha/lib/C4/Letters.pm line 665. In-Reply-To: <bug-30781-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30781-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30781-70-Rvgldo5T4Z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30781 --- Comment #18 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- I've ported this to 20.11 as it creates a lot of noise, might be nice in 21.05 as well. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 18:10:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 16:10:23 +0000 Subject: [Koha-bugs] [Bug 30996] ModBiblio breaks MARC::File::XML In-Reply-To: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30996-70-KdGyz9vU4A@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30996 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 18:25:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 16:25:57 +0000 Subject: [Koha-bugs] [Bug 31000] Use of uninitialized value $record_type in string eq In-Reply-To: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31000-70-bi4TWTko27@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 Slava Shishkin <slavashishkin at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff --- Comment #4 from Slava Shishkin <slavashishkin at gmail.com> --- Hi Katrin, yep, my bad. It should this be 'needs sign-off'. Thanks :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 20:09:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 18:09:35 +0000 Subject: [Koha-bugs] [Bug 30781] Use of uninitialized value $val in substitution iterator at /usr/share/koha/lib/C4/Letters.pm line 665. In-Reply-To: <bug-30781-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30781-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30781-70-qJCcFRwFw9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30781 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01, |22.11.00, 22.05.01, released in|21.11.07 |21.11.07, 21.05.16 --- Comment #19 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Backported: Pushed to 21.05.x branch for 21.05.16 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 20:10:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 18:10:33 +0000 Subject: [Koha-bugs] [Bug 31000] Use of uninitialized value $record_type in string eq In-Reply-To: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31000-70-nQ8wjyxuAm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 20:10:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 18:10:37 +0000 Subject: [Koha-bugs] [Bug 31000] Use of uninitialized value $record_type in string eq In-Reply-To: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31000-70-9xHq63SKdh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136389|0 |1 is obsolete| | --- Comment #5 from David Nind <david at davidnind.com> --- Created attachment 136557 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136557&action=edit Bug 31000: HOTFIX. Warn removal: param record_type can be undef Uninitialized value warning on /tools/export.pl when $record_type is undef Use of uninitialized value $record_type in string eq at /home/vagrant/kohaclone/tools/export.pl line 43. This patch fixes it by working when $record_type is Undef. The functionality still remains the same but warning doesn't flood error log. To reproduce: 1. Go to export data tool page (/tools/export.pl). 2. Check the error log and find the upper mentioned warning, check the timestamp to ensure that it was added when you loaded the page. 3. Apply the patch. 4. Load the page again, ensure that the same warning doesn't get added to the log file again. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 20:14:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 18:14:39 +0000 Subject: [Koha-bugs] [Bug 31000] Use of uninitialized value $record_type in string eq In-Reply-To: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31000-70-UXI86Cf91H@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the cause of an release notes| |error message that appears | |in the system logs every | |time that Tools > Catalog > | |Export data | |(/cgi-bin/koha/tools/export | |.pl) is accessed. The error | |message was "AH01215: Use | |of uninitialized value | |$record_type in string eq | |at /koh | |adevbox/koha/tools/export.p | |l line 43.: | |/kohadevbox/koha/tools/expo | |rt.pl,...". CC| |david at davidnind.com --- Comment #6 from David Nind <david at davidnind.com> --- Testing notes (using koha-testing-docker): - The error message appears in this log file: /var/log/koha/kohadev/intranet-error.log -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 20:38:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 18:38:02 +0000 Subject: [Koha-bugs] [Bug 31001] "CGI::param called in list context" warning in basket.pl flooding error log In-Reply-To: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31001-70-FV8t9oO6xp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31001 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 20:38:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 18:38:06 +0000 Subject: [Koha-bugs] [Bug 31001] "CGI::param called in list context" warning in basket.pl flooding error log In-Reply-To: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31001-70-i2lkVoTKXw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31001 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136395|0 |1 is obsolete| | --- Comment #2 from David Nind <david at davidnind.com> --- Created attachment 136558 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136558&action=edit Bug 31001: Fix "CGI::param called in list context" warning in basket.pl CGI param basketno should be explicitly scalar, or else error log gets flooded with this warning: AH01215: CGI::param called in list context from /home/vagrant/kohaclone/acqui/basket.pl line 175, this can lead to vulnerabilities. See the warning in "Fetching the value or values of a single named parameter" at /usr/share/perl5/CGI.pm line 412. This patch fixes it by working with it in a scalar context. The functionality still remains the same but warning doesn't flood error log. To reproduce: 1. Head over to the acquisitions page. 2. Pick existing vendor with email contact info or create a new one. 3. Create a new basket or use existing one, and if it doesn't have any orders, add a new order to it. 4. Use the "E-mail order" button to send order. 5. Check the error log and find the upper mentioned warning. (Note: if you're going to test this more than once, you might need to restart your Plack in order for this warning to get added to your log file again, reasons of that is that the authors of CGI.pm decided to "warn only once") 6. Apply the patch. 7. Use the "E-mail order" button again, ensure that the same warning doesn't get added to the log file again. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 20:41:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 18:41:31 +0000 Subject: [Koha-bugs] [Bug 30035] Wrong month name in numbering pattern In-Reply-To: <bug-30035-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30035-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30035-70-505HWZ4BmP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30035 --- Comment #11 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Hi, since two months this is causing a regression on t/db_dependent/Serials.t on only Ubuntu 16.04. I can reproduce locally. Since it's minor I might just revert it if we don't have a clue about this 😕 https://jenkins.koha-community.org/view/21.05/job/Koha_21.05_U16/198/consoleText root at kohadevbox:koha((5b38309...))$ prove t/db_dependent/Serials.t t/db_dependent/Serials.t .. 33/50 # Failed test at t/db_dependent/Serials.t line 468. # got: 'gen.' # expected: 'de gen.' # Looks like you failed 1 test of 6. # Failed test '_numeration' # at t/db_dependent/Serials.t line 473. # Looks like you failed 1 test of 50. t/db_dependent/Serials.t .. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/50 subtests Test Summary Report ------------------- t/db_dependent/Serials.t (Wstat: 256 Tests: 50 Failed: 1) Failed test: 50 Non-zero exit status: 1 Files=1, Tests=50, 4 wallclock secs ( 0.05 usr 0.01 sys + 3.57 cusr 0.31 csys = 3.94 CPU) Result: FAIL -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 20:51:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 18:51:24 +0000 Subject: [Koha-bugs] [Bug 31001] "CGI::param called in list context" warning in basket.pl flooding error log In-Reply-To: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31001-70-UxyKzsjGyA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31001 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Text to go in the| |This fixes the cause of a release notes| |warning message that | |appears in the system logs | |when emailing an order to a | |vendor (Acquisitions > | |[select a vendor] > [select | |a basket] > E-mal order). | |The warning message was | |"[WARN] CGI::param called | |in list context from | |/kohadevbox/koha/acqui/bask | |et.pl line 175, this can | |lead to vulnerabilities. | |See the warning in | |"Fetching the value or | |values of a single named | |parameter" at | |/usr/share/perl5/CGI.pm | |line 414.". --- Comment #3 from David Nind <david at davidnind.com> --- Testing notes (using koha-testing-docker): - The warning message appears in this log file: /var/log/koha/kohadev/plack-intranet-error.log - Note: Lots of other messages will be included in the log if email is not configured. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 23:55:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 21:55:47 +0000 Subject: [Koha-bugs] [Bug 30976] Cover images for biblio should be displayed first In-Reply-To: <bug-30976-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30976-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30976-70-lC3PRcxAda@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30976 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Jun 26 23:58:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 21:58:30 +0000 Subject: [Koha-bugs] [Bug 30462] Should the background job list view hide index tasks by default? In-Reply-To: <bug-30462-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30462-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30462-70-FbcdCEaBCf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30462 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Medium patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:01:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:01:29 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-AUDIqnGJK6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Medium patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:02:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:02:39 +0000 Subject: [Koha-bugs] [Bug 18064] Long overdue cronjob does not follow the library's calendar and skip closed days In-Reply-To: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18064-70-MOYgdfgerM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18064 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:03:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:03:59 +0000 Subject: [Koha-bugs] [Bug 30990] Terminology: DefaultHoldPickupLocation In-Reply-To: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30990-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30990-70-KDYqxZlzYw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30990 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |String patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:04:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:04:52 +0000 Subject: [Koha-bugs] [Bug 29983] Display the pretend claim column in overdue.tt In-Reply-To: <bug-29983-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29983-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29983-70-ZNOEV6kp4c@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29983 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:05:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:05:28 +0000 Subject: [Koha-bugs] [Bug 30962] REST API: Add endpoint /patrons/:patron_id/check_password In-Reply-To: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30962-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30962-70-b39pw7h59d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30962 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:06:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:06:48 +0000 Subject: [Koha-bugs] [Bug 25560] Exclude itemtypes from UpdateNotForLoanStatusOnCheckin In-Reply-To: <bug-25560-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25560-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25560-70-bbzLUUPtQz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25560 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Patch complexity|--- |Medium patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:07:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:07:55 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-VIZicrsYeq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Medium patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:08:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:08:50 +0000 Subject: [Koha-bugs] [Bug 29983] Display the return claims column in the circulation overdues page (overdue.tt) In-Reply-To: <bug-29983-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29983-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29983-70-8pI00M8uEE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29983 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Display the pretend claim |Display the return claims |column in overdue.tt |column in the circulation | |overdues page (overdue.tt) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:11:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:11:16 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-sK3zmLOd6h@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Medium patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:12:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:12:12 +0000 Subject: [Koha-bugs] [Bug 27779] Cashup summary 'refunds' should denote what the refund was actioned against In-Reply-To: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27779-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27779-70-6PYKxJ007q@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27779 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:17:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:17:53 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-zRN4tPoYYt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:18:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:18:47 +0000 Subject: [Koha-bugs] [Bug 30920] Add caching to C4::Biblio::GetAuthorisedValueDesc In-Reply-To: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30920-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30920-70-661MW17LpC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30920 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Medium patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:20:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:20:39 +0000 Subject: [Koha-bugs] [Bug 30310] Replace Moment.js with Day.js In-Reply-To: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30310-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30310-70-Qb4H3mtylQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30310 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:23:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:23:05 +0000 Subject: [Koha-bugs] [Bug 22070] OpacBrowseResults has broken link back to search results In-Reply-To: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22070-70-qRkI8wryKg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22070 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:23:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:23:48 +0000 Subject: [Koha-bugs] [Bug 29958] Missing dateaccessioned is set to today when storing an item In-Reply-To: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29958-70-pKJoUp7ztv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29958 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:24:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:24:21 +0000 Subject: [Koha-bugs] [Bug 31038] Amounts in cashup summary modal no longer properly formatted In-Reply-To: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31038-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31038-70-vPBkHHdqOc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31038 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the formatting release notes| |of amounts on the cashup | |summary modal (it uses the | |existing format_price JS | |include to format prices). | |For example, the amount for | |a product was formatted as | |15 instead of 15.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:27:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:27:32 +0000 Subject: [Koha-bugs] [Bug 31000] Use of uninitialized value $record_type in string eq In-Reply-To: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31000-70-wwZsteDnC5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:28:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:28:58 +0000 Subject: [Koha-bugs] [Bug 31001] "CGI::param called in list context" warning in basket.pl flooding error log In-Reply-To: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31001-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31001-70-GcYXYGn1wx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31001 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:46:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:46:52 +0000 Subject: [Koha-bugs] [Bug 31026] Error while upgrading In-Reply-To: <bug-31026-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31026-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31026-70-gEDlQ7aWJ6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31026 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |INVALID Status|NEW |RESOLVED See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30912 --- Comment #1 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Keith, I believe this error was caused by an unifinished database update, so something that now needs a local fix and cannot be fixed in Koha itself. Have a look at bug 30912 too that dealt with a problem in this database update. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:46:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:46:52 +0000 Subject: [Koha-bugs] [Bug 30912] Database update fails for 21.12.00.016 Bug 30060 In-Reply-To: <bug-30912-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30912-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30912-70-m3pr5EMrLx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30912 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=31026 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 00:47:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 22:47:33 +0000 Subject: [Koha-bugs] [Bug 31049] New: Add tool to set/reduce local cover image size and quality, interactively and in batch. Message-ID: <bug-31049-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31049 Bug ID: 31049 Summary: Add tool to set/reduce local cover image size and quality, interactively and in batch. Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: new feature Priority: P5 - low Component: Tools Assignee: koha-bugs at lists.koha-community.org Reporter: egpetridis at yahoo.com QA Contact: testopia at bugs.koha-community.org It would be useful I think to add functionality that would a) process local cover images and set colour depth, resolution, quality and compression to certain levels set in authorized values at library level, before commiting new images to the database. b) process in batch images already existing in the db, according to the values set. c) store in the db settings used for each local cover image, so that it wouln't be re-processed unless new, lesser image quality settings were set and patch processing was invoked. It seems (Bug 21987 and Bug 22988) that some kind of processign is already performed but I found no related settings or documentation. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 01:20:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 26 Jun 2022 23:20:09 +0000 Subject: [Koha-bugs] [Bug 29951] Cannot add splitting rule to classification sources In-Reply-To: <bug-29951-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29951-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29951-70-6UnJEtKNbA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29951 Ivan Šupe <ivan.supe at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ivan.supe at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:22:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:22:33 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-pHs3Yh30KE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 --- Comment #8 from David Cook <dcook at prosentient.com.au> --- (In reply to Katrin Fischer from comment #6) > I think it's a bug and a regression. > > The direct link by biblionumber should not work - and it didn't in the past. > > How a direct link behaves, is supposed to be controlled by the > OpacSuppressionRedirect system preference. There is something broken here. Do we know which version introduced the regression? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:34:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:34:46 +0000 Subject: [Koha-bugs] [Bug 11158] Authorities 'starts with' search returns the same as 'contains' when using ICU In-Reply-To: <bug-11158-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-11158-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-11158-70-XGBaGL8HDV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11158 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|colin.campbell at ptfs-europe. |dcook at prosentient.com.au |com | --- Comment #14 from David Cook <dcook at prosentient.com.au> --- Noticed this as one of the "10 Oldest bugs" under "Needs Signoff". Figured I'd update to the Assignee to me too since I apparently wrote the patch 1.5 years ago... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:42:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:42:04 +0000 Subject: [Koha-bugs] [Bug 31043] Marc records imports stuck at 0% or 4% In-Reply-To: <bug-31043-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31043-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31043-70-Qn0aSQ4hF3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31043 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #2 from David Cook <dcook at prosentient.com.au> --- Bug 30738 will also help with this, since right now fatal errors that cause an import to crash aren't logged anywhere. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:43:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:43:04 +0000 Subject: [Koha-bugs] [Bug 31043] Marc records imports stuck at 0% or 4% In-Reply-To: <bug-31043-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31043-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31043-70-v63Mu1D7Br@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31043 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE --- Comment #3 from David Cook <dcook at prosentient.com.au> --- I think this is probably a duplicate of bug 30739 *** This bug has been marked as a duplicate of bug 30739 *** -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:43:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:43:04 +0000 Subject: [Koha-bugs] [Bug 30739] Fatal errors during MARC import force status of "Importing" forever In-Reply-To: <bug-30739-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30739-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30739-70-0GIszEK1Km@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30739 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jheanelle.foster at nlj.gov.jm --- Comment #2 from David Cook <dcook at prosentient.com.au> --- *** Bug 31043 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:44:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:44:39 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-Hos2Z2erKl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au Severity|critical |normal --- Comment #21 from David Cook <dcook at prosentient.com.au> --- Downgrading the severity of this one since it's not critical to Koha operations -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:47:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:47:15 +0000 Subject: [Koha-bugs] [Bug 28128] Uploading Process of New Cataloging Records Stalls When 952 $9 Is Filled In In-Reply-To: <bug-28128-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28128-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28128-70-BMrFAsXwlN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28128 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE CC| |dcook at prosentient.com.au --- Comment #2 from David Cook <dcook at prosentient.com.au> --- *** This bug has been marked as a duplicate of bug 30739 *** -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:47:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:47:15 +0000 Subject: [Koha-bugs] [Bug 30739] Fatal errors during MARC import force status of "Importing" forever In-Reply-To: <bug-30739-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30739-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30739-70-tTeJMY8MW8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30739 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cmkelleymls at gmail.com --- Comment #3 from David Cook <dcook at prosentient.com.au> --- *** Bug 28128 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:49:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:49:57 +0000 Subject: [Koha-bugs] [Bug 30739] Fatal errors during MARC import force status of "Importing" forever In-Reply-To: <bug-30739-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30739-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30739-70-ySJ2gCPusb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30739 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |critical --- Comment #4 from David Cook <dcook at prosentient.com.au> --- Increasing the severity of this one since it seems to be a common problem annoying a fair number of people. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:50:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:50:42 +0000 Subject: [Koha-bugs] [Bug 30739] Fatal errors during MARC import force status of "Importing" forever In-Reply-To: <bug-30739-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30739-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30739-70-vFXN07Jhpy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30739 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=27421 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:50:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:50:42 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-rMLxGje1uv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30739 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 02:52:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 00:52:29 +0000 Subject: [Koha-bugs] [Bug 27421] Porting tools/stage-marc-import.pl to BackgroundJob In-Reply-To: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27421-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27421-70-N1NKQA4d2k@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27421 --- Comment #35 from David Cook <dcook at prosentient.com.au> --- (In reply to Jonathan Druart from comment #34) > Yes, that's why I think we need feedback from regular users. Let's ask the folk at bug 28128 and bug 31043 since they're having issues with the current MARC import. They can say whether or not this improves things surely. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 03:11:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 01:11:45 +0000 Subject: [Koha-bugs] [Bug 20126] Saving a biblio does no longer update MARC field lengths In-Reply-To: <bug-20126-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-20126-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-20126-70-RDj7tgqCN8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20126 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #8 from David Cook <dcook at prosentient.com.au> --- Why was this considered a problem? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 03:43:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 01:43:27 +0000 Subject: [Koha-bugs] [Bug 17754] MARCXML upload in Intranet is broken (encoding) In-Reply-To: <bug-17754-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-17754-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-17754-70-3XDZhxAKsi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17754 --- Comment #13 from David Cook <dcook at prosentient.com.au> --- (In reply to Katrin Fischer from comment #12) > I just have run into this again. We have a MARCXML file that appears to be > proper MARC. My editor tells me the encoding is UTF-8 and the umlauts show > correctly. > > On import, the umlauts get broken. Also: we are strangely missing a 245$b > where the first word contains an umlaut. > > If I convert it to .mrc with MARCEdit, which works without any issues or > complaints, the file imports correctly. I had an issue like that once with a file that was using an older Chinese encoding. I tried converting it to UTF-8 with all kinds of tools and nothing produced made Koha happy. However, when I did the conversion in MARCEdit, I was able to import it into Koha with no problem. This was a while ago so I don't remember what the finer points were... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:05:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:05:02 +0000 Subject: [Koha-bugs] [Bug 30996] ModBiblio breaks MARC::File::XML In-Reply-To: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30996-70-PIAvOVgo4S@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30996 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #2 from David Cook <dcook at prosentient.com.au> --- (In reply to Magnus Enger from comment #0) > Anyone got a hunch what might be causing this, or where to start looking for > a solution? I love a good encoding problem... It looks like MARC::File::XML is rewriting that position 9 to " " from "a" based on this code in MARC::File::XML::decode(): if (@leaders) { my $leader = $leaders[0]->textContent; # this bit is rather questionable $transcode_to_marc8 = substr($leader, 9, 1) eq 'a' && decideMARC8Binary($format, $enc) ? 1 : 0; substr($leader, 9, 1) = ' ' if $transcode_to_marc8; $rec->leader($leader); } But since you're setting BinaryEncoding to utf8, it shouldn't be doing that "questionable" rewrite. And like you say... it seems to work fine when you don't use ModBiblio... -- MARC::File::XML::decideMARC8Binary() uses a /o regex modifier which is heavily warned against. But I don't see how that would cause a problem here... -- It looks like C4::Biblio::GetMarcBiblio (called by ModBiblio) runs the following: MARC::File::XML->default_record_format( C4::Context->preference('marcflavour') ); That does interfere with MARC::File::XML's internal $_load_args data structure, but... that should be OK since RecordFormat should be MARC21 either way. Plus what we're really worried about is the "BinaryEncoding" anyway. -- MARC::Record::new_from_xml does call MARC::File::XML::decode... In GetMarcBiblio, we run the following: 1221 MARC::Record::new_from_xml( $marcxml, "UTF-8", 1222 C4::Context->preference('marcflavour') ); 1223 }; But that shouldn't reset anything in MARC::File::XML... -- I think the only option really is to add debugging code to MARC::File::XML and C4::Biblio to try to unpick what is happening, unfortunately. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:23:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:23:30 +0000 Subject: [Koha-bugs] [Bug 30996] ModBiblio breaks MARC::File::XML In-Reply-To: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30996-70-NHiqpctCUN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30996 --- Comment #3 from David Cook <dcook at prosentient.com.au> --- My one thread at the moment would be to try to use "UTF-8" instead of "utf8" for your BinaryEncoding and hope that it's due to a Perl bug in Perl/MARC::File::XML, but that seems very unlikely to me. If you send over that 2-3 record test set, I'd be interested in poking around with them on koha-testing-docker. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:23:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:23:58 +0000 Subject: [Koha-bugs] [Bug 30996] ModBiblio breaks MARC::File::XML In-Reply-To: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30996-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30996-70-jpUY5VfZ33@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30996 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=17754 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:23:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:23:58 +0000 Subject: [Koha-bugs] [Bug 17754] MARCXML upload in Intranet is broken (encoding) In-Reply-To: <bug-17754-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-17754-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-17754-70-MZEAbYJyoQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17754 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30996 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:30:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:30:25 +0000 Subject: [Koha-bugs] [Bug 30865] Koha::Biblio->get_components_query should double quote Host-item search In-Reply-To: <bug-30865-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30865-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30865-70-2mXiBNazPP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30865 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:47:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:47:38 +0000 Subject: [Koha-bugs] [Bug 15348] Change/Edit estimated delivery date per order line In-Reply-To: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15348-70-H96IUzYvZk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15348 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:47:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:47:44 +0000 Subject: [Koha-bugs] [Bug 15348] Change/Edit estimated delivery date per order line In-Reply-To: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15348-70-NjfRw6GzhW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15348 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #120653|0 |1 is obsolete| | --- Comment #33 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Created attachment 136560 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136560&action=edit Bug 15348: Add estimated delivery date field to individual orders This patch allows you to specify an estimated delivery date per order. The specified estimated delivery date is also considered when searching for late orders and exporting late orders. You can also edit the estimated delivery date from the late orders page. Test plan: 1. Update database, rebuild schema, restart services 2. Go to Acquisitions, search for a vendor, and create a new basket 3. Add an order to the basket. When filling in the accounting details, notice the new 'estimated delivery date' field, but don't add a date. Save the order. 4. Confirm no date shows in the estimated delivery date column in the orders table. 5. Modify the order. Add a date in the estimated delivery date field and save the order. 6. Confirm the date now shows in the orders table. 7. Close the basket. 8. Go to the Late Orders page. 9. Put estimated delivery date from and to parameters in the search filters on the left. Ensure the from and to dates encapsulate the date you entered in the estimated delivery date field for the order. 10. Click Filter and ensure the order shows. 11. Select the checkbox next to the order. Click the Export as CSV button. 12. Open the CSV and confirm the estimated delivery date that you entered shows as expected in the file. 13. Click Edit under the estimated delivery date. Confirm the estimated delivery date modal pops up with the correct order line number in the modal header. 14. Remove the estimated delivery date and click Save. 15. Confirm that the estimated delivery date calculated by Koha now shows in the late orders table. 16. Select the checkbox next to the order. Click the Export as CSV button. 17. Open the CSV and confirm the calculated estimated delivery date shows in the CSV. 18. Confirm tests pass: t/db_dependent/Koha/Acquisition/Order.t Sponsored-by: Bibliotheksservice-Zentrum Baden-Württemberg (BSZ) Signed-off-by: Christian Stelzenmüller <christian.stelzenmueller at bsz-bw.de> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:47:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:47:49 +0000 Subject: [Koha-bugs] [Bug 15348] Change/Edit estimated delivery date per order line In-Reply-To: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15348-70-Nel1FOs2UD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15348 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #120654|0 |1 is obsolete| | --- Comment #34 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Created attachment 136561 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136561&action=edit Bug 15348: (QA follow-up) Remove superflous filters The QA script highlighted the addition of some unneeded extra TT filters. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:47:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:47:54 +0000 Subject: [Koha-bugs] [Bug 15348] Change/Edit estimated delivery date per order line In-Reply-To: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15348-70-dH21t82nwm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15348 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #120655|0 |1 is obsolete| | --- Comment #35 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Created attachment 136562 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136562&action=edit Bug 15348: trivial code simplification -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:47:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:47:59 +0000 Subject: [Koha-bugs] [Bug 15348] Change/Edit estimated delivery date per order line In-Reply-To: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15348-70-MU6mQb01gU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15348 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #120656|0 |1 is obsolete| | --- Comment #36 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Created attachment 136563 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136563&action=edit Bug 15348: (follow-up) Fix breadcrumbs, title, JS error, permissions -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 04:48:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 02:48:52 +0000 Subject: [Koha-bugs] [Bug 15348] Change/Edit estimated delivery date per order line In-Reply-To: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15348-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15348-70-q40cGcsOUK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15348 --- Comment #37 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Have hopefully fixed up the error and fixed the author email address on my two patches. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 05:43:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 03:43:24 +0000 Subject: [Koha-bugs] [Bug 31050] New: Standardize session setup Message-ID: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31050 Bug ID: 31050 Summary: Standardize session setup Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Authentication Assignee: koha-bugs at lists.koha-community.org Reporter: dcook at prosentient.com.au QA Contact: testopia at bugs.koha-community.org CC: dpavlin at rot13.org We should have 1 function that sets up the basics of a $session object which we can use across all our different authentication options. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 05:43:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 03:43:34 +0000 Subject: [Koha-bugs] [Bug 31050] Standardize session setup In-Reply-To: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31050-70-Wyu1Mbmz2R@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31050 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |dcook at prosentient.com.au |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 06:21:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 04:21:02 +0000 Subject: [Koha-bugs] [Bug 31051] New: Show patron's 'savings' on the OPAC Message-ID: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Bug ID: 31051 Summary: Show patron's 'savings' on the OPAC Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: new feature Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: aleisha at catalyst.net.nz QA Contact: testopia at bugs.koha-community.org It would be cool to have a feature which would show patrons via the OPAC how much they've saved by using the library, instead of purchasing items themselves. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 06:26:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 04:26:43 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-aUZ9HeODd7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|oleonard at myacpl.org |aleisha at catalyst.net.nz Change sponsored?|--- |Sponsored Status|NEW |ASSIGNED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 07:12:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 05:12:06 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-cz6KnpwZje@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 --- Comment #1 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Created attachment 136564 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136564&action=edit Bug 31051: [WIP] Add OPACShowSavings preference -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:14:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:14:31 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-ynF4BGWYFw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #35 from David Cook <dcook at prosentient.com.au> --- As an aside, I've been thinking a bit about how email address isn't necessarily the best matching point. Technically, the "sub" standard claim is the identifier for the user. (https://openid.net/specs/openid-connect-core-1_0.html#StandardClaims) For a IdP like Keycloak, it will send a UUID as the "sub" claim, although you can override this in Keycloak to use whatever you want (e.g. email). I was working on a SAML setup the other day and the Keycloak SAML IdP sent an identifier like "https://keycloak_idp_site...!https://client_site!<username> Anyway, I don't think it's just a blocker. Just something that Koha could think about more in general. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:18:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:18:14 +0000 Subject: [Koha-bugs] [Bug 27667] Display the number of non-indexed records In-Reply-To: <bug-27667-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27667-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27667-70-pHMDFECdp9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27667 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:18:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:18:19 +0000 Subject: [Koha-bugs] [Bug 27667] Display the number of non-indexed records In-Reply-To: <bug-27667-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27667-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27667-70-eUPeu8Si7a@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27667 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134904|0 |1 is obsolete| | --- Comment #3 from David Nind <david at davidnind.com> --- Created attachment 136565 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136565&action=edit Bug 27667: Display a warning for records missing in Elasticsearch On "About Koha" page are displayed the numbers of indexed biblios and authorities with ES. It could be great if we could have comparison with the number of records in the database to display the number of missing records. In the "System information" tab with the other "Data problems". If Searchengine has any issue (index count will be -1), we do not display missing records. Test plan : 1) Use Elasticsearch searchengine 2) Rebuild all records : koha-elasticsearch --rebuild -d kohadev 3) Go to "About Koha" page and look at System information tab => you see no warning 4) On a biblio record delete the MARCXML in biblio_metadata.metadata 5) Rebuild all records : koha-elasticsearch --rebuild -d kohadev 6) Go to "About Koha" page and look at System information tab => you see warning : 1 record(s) missing on a total of 435 in indice koha_kohadev_biblios. 7) On a authority record delete the MARCXML in auth_header.marcxml 8) Rebuild all records : koha-elasticsearch --rebuild -d kohadev 9) Go to "About Koha" page and look at System information tab => you see warning : 1 record(s) missing on a total of 1705 in indice koha_kohadev_authorities. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:22:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:22:40 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-ve50VN4t2i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 --- Comment #36 from David Cook <dcook at prosentient.com.au> --- The reason I was thinking about that was that we don't really need to use checkauth() here... At the end of the day, all we really need to do is create a Koha session, create a CGISESSID cookie with the session ID as the value, and then redirect wherever. If we want to check if we're already authenticated, all we need to do is the same thing checkauth() is doing: ( $return, $session, $more_info ) = check_cookie_auth( $sessionID, $flags, { skip_version_check => 1 }); I've opened bug 31050 to make it easier to create a Koha session... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:23:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:23:52 +0000 Subject: [Koha-bugs] [Bug 25669] ElasticSearch 6: [types removal] Specifying types in put mapping requests is deprecated (incompatible with 7) In-Reply-To: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25669-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25669-70-UuK5hETA1N@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25669 --- Comment #45 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Victor Grousset/tuxayo from comment #44) > What happened?! :o > > Something with Search::Elasticsearch 6.80? Yes. Debian 10 has 6.00 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:25:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:25:05 +0000 Subject: [Koha-bugs] [Bug 31050] Standardize session setup In-Reply-To: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31050-70-sc9SXjb2rP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31050 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:25:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:25:11 +0000 Subject: [Koha-bugs] [Bug 31050] Standardize session setup In-Reply-To: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31050-70-sz43R67Q8k@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31050 --- Comment #1 from David Cook <dcook at prosentient.com.au> --- Created attachment 136566 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136566&action=edit Bug 31050: C4::Context->setup_session() standardizes user session setup Test plan: 0. Apply patch and koha-plack --restart kohadev 1. Log into http://localhost:8081/cgi-bin/koha/mainpage.pl using "koha" user 2. Note the login is successful 3. koha-mysql kohadev 3a. select * from sessions; Session in MySQL sets parameters like surname, flags, interface, ip, lasttime, etc 3b. select * from systempreferences where variable = 'Version'; 3c. update systempreferences set value = '<version which is 1 number less at the end>' where variable = 'Version'; 4. koha-plack --restart kohadev 5. echo 'flush_all' | nc -q 1 memcached 11211 6. Visit http://localhost:8081/ and do the upgrade 6b. Note that the authentication and upgrade works without a problem 7. curl http://localhost:8081/cgi-bin/koha/svc/authentication -d 'userid=<koha user>&password=<koha password>' 8. koha-mysql kohadev 8a. select * from sessions; Session in MySQL sets parameters like surname, flags, interface, ip, lasttime, etc -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:26:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:26:39 +0000 Subject: [Koha-bugs] [Bug 27667] Display the number of non-indexed records In-Reply-To: <bug-27667-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27667-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27667-70-RJqGoEUnoy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27667 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This enhancement adds release notes| |information about | |non-indexed records when | |using the Elasticsearch | |search engine on the About | |Koha > System information | |page. | | | |For example: | | | |Records are missing in | |Elasticsearch search engine | |- Warning 1 record(s) | |missing on a total of 435 | |in indice | |koha_kohadev_biblios. | |- | |Warning 1 record(s) | |missing on a total of 1705 | |in indice | |koha_kohadev_authorities. CC| |david at davidnind.com --- Comment #4 from David Nind <david at davidnind.com> --- Testing notes (using koha-testing-docker with sample data): - For step 4, SQL query is: update biblio_metadata set metadata="" where id=436; - For step 7, SQL query is: update auth_header set marcxml="" where authid=1707; -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:26:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:26:54 +0000 Subject: [Koha-bugs] [Bug 30150] Dutch option in language limits is garbled In-Reply-To: <bug-30150-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30150-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30150-70-pRdDnXwisb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30150 --- Comment #9 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Katrin Fischer from comment #8) > Should we create a just-in-case database update here in case there are more > old installations with the wrong description? Good plan -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:34:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:34:06 +0000 Subject: [Koha-bugs] [Bug 31050] Standardize session setup In-Reply-To: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31050-70-DEhOvQQkAO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31050 --- Comment #2 from David Cook <dcook at prosentient.com.au> --- As an aside, this would make it easier to write authentication extensions. Here is an example where the user is logged in with a new user session by supplying their cardnumber. use Modern::Perl; use CGI qw ( -utf8 ); use C4::Context; my $query = CGI->new; my $cardnumber = $query->param('cardnumber'); my $user = Koha::Patrons->find({ cardnumber => $cardnumber }); if ($user){ my $session = C4::Auth::get_session(); my $branch = $user->library; C4::Context->setup_session({ session => $session, data => { 'number', $user->borrowernumber, 'id', $user->userid, 'cardnumber', $user->cardnumber, 'firstname', $user->firstname, 'surname', $user->surname, 'branch', $branch->branchcode, 'branchname', $branch->branchname, 'flags', $user->flags, 'emailaddress', $user->email, 'interface', 'opac', }, }); my $cookie = $query->cookie( -name => 'CGISESSID', -value => $session->id, -HttpOnly => 1, -secure => ( C4::Context->https_enabled() ? 1 : 0 ), -sameSite => 'Lax' ); print $query->redirect( -uri => '/cgi-bin/koha/opac-main.pl', -cookie => $cookie, ); } -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:45:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:45:45 +0000 Subject: [Koha-bugs] [Bug 28507] Create Koha::Session wrapper to create consistent sessions throughout Koha In-Reply-To: <bug-28507-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28507-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28507-70-WOeKyElwt2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28507 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |DUPLICATE Status|NEW |RESOLVED --- Comment #4 from David Cook <dcook at prosentient.com.au> --- *** This bug has been marked as a duplicate of bug 31050 *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:45:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:45:45 +0000 Subject: [Koha-bugs] [Bug 31050] Standardize session setup In-Reply-To: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31050-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31050-70-n6bq7sokPL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31050 --- Comment #3 from David Cook <dcook at prosentient.com.au> --- *** Bug 28507 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 08:56:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 06:56:15 +0000 Subject: [Koha-bugs] [Bug 31052] New: How Do I Get Cash App ++ with no delays? Message-ID: <bug-31052-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31052 Bug ID: 31052 Summary: How Do I Get Cash App ++ with no delays? Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Acquisitions Assignee: koha-bugs at lists.koha-community.org Reporter: reedallen999 at gmail.com QA Contact: testopia at bugs.koha-community.org Cash app is based on certain policies and you should know about such things. The increasing need for digital payment applications has made it the most imperative. These days, users are coming up with queries like How Do I Get Cash App ++. That is the most efficient aspect and every cash app user should try their best to explore the strategy aspects. You can choose to find the platform to handle the cash app system easily. https://www.emailsupport-contact.com/blog/how-do-i-get-cash-app-plus-plus/ -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 09:39:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 07:39:23 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-el3bJm8gzc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 --- Comment #9 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Sadly it looks like it was a while ago already, I have been seeing the issue on 20.11 in testing. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 09:51:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 07:51:39 +0000 Subject: [Koha-bugs] [Bug 31052] SPAM In-Reply-To: <bug-31052-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31052-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31052-70-MyNDx8ulMd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31052 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |INVALID Status|NEW |RESOLVED Summary|How Do I Get Cash App ++ |SPAM |with no delays? | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 10:00:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 08:00:31 +0000 Subject: [Koha-bugs] [Bug 30830] Add Koha Objects for Koha Import Items In-Reply-To: <bug-30830-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30830-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30830-70-v3te3cVAfL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30830 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 10:01:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 08:01:05 +0000 Subject: [Koha-bugs] [Bug 28152] Hidden error when importing an item with an existing itemnumber In-Reply-To: <bug-28152-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28152-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28152-70-yqwKyjLi1X@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28152 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 10:02:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 08:02:24 +0000 Subject: [Koha-bugs] [Bug 30831] Add unit test for BatchCommitItems In-Reply-To: <bug-30831-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30831-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30831-70-PPZt0xQRAH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30831 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.07 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 10:59:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 08:59:07 +0000 Subject: [Koha-bugs] [Bug 31053] New: Add Context module to Koha/Encryption Message-ID: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31053 Bug ID: 31053 Summary: Add Context module to Koha/Encryption Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: m.de.rooy at rijksmuseum.nl QA Contact: testopia at bugs.koha-community.org perl -MKoha::Encryption -e'print Koha::Encryption->new->encrypt_hex("test");' Can't locate object method "config" via package "C4::Context" (perhaps you forgot to load "C4::Context"?) at /usr/share/koha/Koha/Encryption.pm line 56. Trivial fix. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 11:00:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 09:00:51 +0000 Subject: [Koha-bugs] [Bug 31053] Add Context module to Koha/Encryption In-Reply-To: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31053-70-B0SGOQTYNQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31053 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 11:00:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 09:00:55 +0000 Subject: [Koha-bugs] [Bug 31053] Add Context module to Koha/Encryption In-Reply-To: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31053-70-Ki4FozXe8p@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31053 --- Comment #1 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136567 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136567&action=edit Bug 31053: Add Context module to Koha::Encryption Test plan: perl -MKoha::Encryption -e'print Koha::Encryption->new->encrypt_hex("test");' Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 11:01:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 09:01:12 +0000 Subject: [Koha-bugs] [Bug 31053] Add Context module to Koha/Encryption In-Reply-To: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31053-70-loUEc45G7S@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31053 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off Assignee|koha-bugs at lists.koha-commun |m.de.rooy at rijksmuseum.nl |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 11:01:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 09:01:31 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-B6eWmiUTAA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #26 from David Nind <david at davidnind.com> --- Apologies that it has taken me so long to retest. Summary from testing: - test plan for first patch: worked as expected - with no date of birth: does not appear in the list, no warnings on the patron page in staff interface [1] - with invalid age in category having age required: unitilized value message if upper age limit blank [2] - with invalid age in category having upper age limit: unitilized value message if upper age limit blank [3] - with invalid age in category having age required and upper age limit: works as expected Hopefully I haven't misinterpreted what is expected here! [1] with no date of birth ~~~~~~~~~~~~~~~~~~~~~~~~~ 1. Edited a staff patron (Henry: patron id = 19) and removed date of birth using the staff interface (dateofbirth shows as NULL in database) 2. Changed the staff patron category (S) so age required = 18-99 years 3. Does not appear in the list after running the script [2] with invalid age in category having age required ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1. Edited a patron (Mary Burton - borrowernumber = 49) so that age is less than 24. 2. Changed patron category (PT) so age required = 24 and no maximum age (left blank). 3. Worked as expected except for 'Use of unitialized value...' message: ==> Use of uninitialized value in sprintf at misc/maintenance/search_for_data_inconsistencies.pl line 304. * Patron borrowernumber=49 has an invalid age of 21 for their category 'PT' (24-) 4. If they have the correct age (changed so they were older than 24), then no unitialized value message [3] with invalid age in category having upper age limit ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1. Edited a patron (Mary Burton - 49) so that age is more than 50. 2. Changed patron category (PT) so that no age required and upper age limit was 50. 3. Output as expected, except for 'Use of uninitialized value in sprintf...' message: ==> Use of uninitialized value in sprintf at misc/maintenance/search_for_data_inconsistencies.pl line 304. * Patron borrowernumber=49 has an invalid age of 58 for their category 'PT' (-50) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 11:02:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 09:02:11 +0000 Subject: [Koha-bugs] [Bug 31053] Add Context module to Koha/Encryption In-Reply-To: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31053-70-POG6uVaweG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31053 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA CC| |jonathan.druart+koha at gmail. | |com, tomascohen at gmail.com --- Comment #2 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Taking liberty to switch to PQA rightaway -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 11:09:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 09:09:51 +0000 Subject: [Koha-bugs] [Bug 31000] Use of uninitialized value $record_type in string eq In-Reply-To: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31000-70-2rclE3LCoZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 Slava Shishkin <slavashishkin at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136557|0 |1 is obsolete| | --- Comment #7 from Slava Shishkin <slavashishkin at gmail.com> --- Created attachment 136568 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136568&action=edit Bug 31000: HOTFIX. Warn removal: param record_type can be undef Uninitialized value warning on /tools/export.pl when $record_type is undef Use of uninitialized value $record_type in string eq at /home/vagrant/kohaclone/tools/export.pl line 43. This warning in koha-testing-docker appears in: /var/log/koha/kohadev/intranet-error.log This patch fixes it by working when $record_type is Undef. The functionality still remains the same but warning doesn't flood error log. To reproduce: 1. Go to export data tool page (/tools/export.pl). 2. Check the error log and find the upper mentioned warning, check the timestamp to ensure that it was added when you loaded the page. 3. Apply the patch. 4. Load the page again, ensure that the same warning doesn't get added to the log file again. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 11:14:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 09:14:20 +0000 Subject: [Koha-bugs] [Bug 31000] Use of uninitialized value $record_type in string eq In-Reply-To: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31000-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31000-70-oZ8dh0LCi1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31000 --- Comment #8 from Slava Shishkin <slavashishkin at gmail.com> --- David, thanks for the note. I added it to the patch description. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 11:51:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 09:51:05 +0000 Subject: [Koha-bugs] [Bug 30250] Configure when to apply framework defaults when cataloguing In-Reply-To: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30250-70-YANFI1EoUp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30250 George Veranis <gveranis at dataly.gr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gveranis at dataly.gr -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 12:42:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 10:42:45 +0000 Subject: [Koha-bugs] [Bug 31017] Add type field for vendors In-Reply-To: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31017-70-HNq3srSFIV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31017 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #4 from David Nind <david at davidnind.com> --- I couldn't see the vendor category on the vendor page. Is the expectation that libraries will choose either the free form text field, or use the authorized values? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 13:10:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 11:10:36 +0000 Subject: [Koha-bugs] [Bug 30152] Elasticsearch - queries with OR don't work with limits In-Reply-To: <bug-30152-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30152-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30152-70-GSjcNVZa2R@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30152 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 13:10:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 11:10:41 +0000 Subject: [Koha-bugs] [Bug 30152] Elasticsearch - queries with OR don't work with limits In-Reply-To: <bug-30152-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30152-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30152-70-3dKKoTYBlx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30152 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135793|0 |1 is obsolete| | --- Comment #18 from David Nind <david at davidnind.com> --- Created attachment 136569 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136569&action=edit Bug 30152: Elasticsearch - queries with OR don't work with limits When a query with "OR" is combined with a limit in Elasticsearch, the precedence is not preserved and the results are not correct. To test: 1) Set SearchEngine to Elasticsearch 2) Index records in Elasticsearch 3) Do an advanced search 4) Select More options 5) Enter a value for the first Keyword (e.g. Novels) 6) Change "and" before the second Keyword to "or" 7) Enter another value for the second Keyword (e.g. Prose) 8) Limit the search (e.g. Item type Books) 9) Do the search 10) Observe that records with the first keyword are not in the results 11) Apply the patch 12) Repeat the search 13) Observe that results with both keywords are in the results 14) Sign off Sponsored-by: Lund University Library Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 13:18:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 11:18:45 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-gvuq02VKCA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #68 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hi Arthur and all, please back-port, this issue is present in 20.11 and pretty bad. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 13:31:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 11:31:04 +0000 Subject: [Koha-bugs] [Bug 29094] Placing holds via SIP2 does not check if a patron can hold the given item In-Reply-To: <bug-29094-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29094-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29094-70-wilQonwOB7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29094 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 13:31:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 11:31:08 +0000 Subject: [Koha-bugs] [Bug 29094] Placing holds via SIP2 does not check if a patron can hold the given item In-Reply-To: <bug-29094-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29094-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29094-70-PBwC29L6D2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29094 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #125189|0 |1 is obsolete| | --- Comment #3 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136570 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136570&action=edit Bug 29094: Adding hold via SIP should check if patron can hold item first When placing holds via SIP2, there is no holdability check. This seems very incorrect. Test Plan: 1) Apply this patch 2) prove -r t/db_dependent/SIP -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 13:52:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 11:52:17 +0000 Subject: [Koha-bugs] [Bug 28787] Send a notice with the TOTP token In-Reply-To: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28787-70-lSpiDfJN1S@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28787 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135287|0 |1 is obsolete| | --- Comment #13 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136571 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136571&action=edit Bug 28787: Send a notice with the TOTP token Bug 28786 let librarians enable a Two-factor authentication but force them to use an application to generate the TOTP token. This new enhancement add the ability to send an email containing the token to the patron once it's authenticaed The new notice template has the code '2FA_OTP_TOKEN' Test plan: - Setup the two-factor authentication (you need the config entry and the syspref ON) - Enable it for your logged in patron - Logout - Login and notice the new link "Send the code by email" - Click on it and confirm that you received an email with the code - Use the code to be fully logged in QA question: Is 400 the correct error code to tell the email has not been sent? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 13:52:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 11:52:21 +0000 Subject: [Koha-bugs] [Bug 28787] Send a notice with the TOTP token In-Reply-To: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28787-70-arNfUgrMLw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28787 --- Comment #14 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136572 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136572&action=edit Bug 28787: (follow-up) Changes in API auth, moved otp out of Letters -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 13:52:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 11:52:25 +0000 Subject: [Koha-bugs] [Bug 28787] Send a notice with the TOTP token In-Reply-To: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28787-70-dhIs1iqKiw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28787 --- Comment #15 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136573 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136573&action=edit Bug 28787: Typo authenticaction Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 13:59:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 11:59:47 +0000 Subject: [Koha-bugs] [Bug 28787] Send a notice with the TOTP token In-Reply-To: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28787-70-GTW5BLL7fP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28787 --- Comment #16 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Generally, I have some doubts about the API path api/v1/auth/send_otp_token. Sending a token is not a normally expected API action; it sounds like a 'misused verb'. You could think of creating a OTP code as an API action, although we do not really add it as entity. Apart from that it works. See some details hereunder. [1] Your TODO - I am not sure about the following line, so I commented it but let it in the patch + #|| $c->req->url->to_abs->path eq '/api/v1/auth/send_otp_token' ) { The otp path should go thru the chain. So this line should not be here although commented. Removed it. [2] Code segment from Koha/REST/V1/Auth.pm if ( !$authorization and ( $params->{is_public} and ( C4::Context->preference('RESTPublicAnonymousRequests') or $user) or $params->{is_plugin} ) or $pending_auth This does not look good to me. Do we need pending_auth here ? If so, at least we need parentheses etc. My follow-up removes the line now. [3] This segment is incomplete: elsif ($status eq "additional-auth-needed") { if ( $c->req->url->to_abs->path eq '/api/v1/auth/send_otp_token' ) { $user = Koha::Patrons->find( $session->param('number') ); $cookie_auth = 1; $pending_auth = 1; } I think we should raise an exception if we have this status and the api path does not match (so add an else). Removed pending_auth. Added a simple exception in my follow-up. [4] When I tested this API path via API keys, I got no authorization. I added a permission catalogue (staff access) to get around that. If you dont have that permission, we should not even send a code. [5] Letters: + if ( $content =~ m|\[% otp_token %\]| ) { + my $patron = Koha::Patrons->find(C4::Context->userenv->{number}); + $tt_params->{otp_token} = Koha::Auth::TwoFactorAuth->new({patron => $patron})->code; + } This seems quite hacky. Why not pass it to Letters from the api module? Moved it now. This still needs updating the notice stuff. [6] QA question: Is 400 the correct error code to tell the email has not been sent? I guess it is not. The client did nothing wrong. Maybe just plain 500? But having some doubts about that too. Or always 200/201 and refer for details to JSON body? [7] TODO Hardcoded phrase: It is valid one minute. [8] Functional question: When you want to enable 2FA without a mobile phone, what should you do? There is no link to send the code on that form. [9] Current code: C4::Context->config('encryption_key') <encryption_key>__ENCRYPTION_KEY__</encryption_key> Do we still need to replace it in koha-create by the actual key ? Enable 2FA: Form text: Can't scan the code? To add the entry manually, provide the following details to the application on your phone. Account: BRANCH Key: BRANCH_EMAIL Time based: Yes But the form does not show the Secret. So telling the user to enter the details on their phone is useless? Let me know if you agree with the follow-up. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:00:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:00:32 +0000 Subject: [Koha-bugs] [Bug 28787] Send a notice with the TOTP token In-Reply-To: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28787-70-6p07IvWlUs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28787 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com --- Comment #17 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Tomas, what do you think? See prev comment. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:01:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:01:33 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-sR5jYQg1Zw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|30964 | Blocks| |30964 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30964 [Bug 30964] Add information about overdues and restrictions on the curbside pickup list -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:01:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:01:33 +0000 Subject: [Koha-bugs] [Bug 30964] Add information about overdues and restrictions on the curbside pickup list In-Reply-To: <bug-30964-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30964-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30964-70-PYzENDLtBn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30964 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|30650 | Depends on| |30650 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 [Bug 30650] Convert the Curbside Pickup plugin to Koha core -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:13:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:13:25 +0000 Subject: [Koha-bugs] [Bug 31054] New: Manual importing for EDIFACT invoices fails with a 500 error page Message-ID: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31054 Bug ID: 31054 Summary: Manual importing for EDIFACT invoices fails with a 500 error page Change sponsored?: --- Product: Koha Version: 21.05 Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Acquisitions Assignee: koha-bugs at lists.koha-community.org Reporter: kyle at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org Error in plack log is: Can't locate object method "new" via package "Koha::Plugin::Com::ByWaterSolutions::MyEdifactPlugin" (perhaps you forgot to load "Koha::Plugin::Com::ByWaterSolutions::MyEdifactPlugin"?) at /usr/share/koha/lib/Koha/EDI.pm line 219. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:13:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:13:29 +0000 Subject: [Koha-bugs] [Bug 31054] Manual importing for EDIFACT invoices fails with a 500 error page In-Reply-To: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31054-70-k5B9aoEGtB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31054 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |kyle at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:16:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:16:39 +0000 Subject: [Koha-bugs] [Bug 31054] Manual importing for EDIFACT invoices fails with a 500 error page In-Reply-To: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31054-70-IYb8sIEneg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31054 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:16:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:16:42 +0000 Subject: [Koha-bugs] [Bug 31054] Manual importing for EDIFACT invoices fails with a 500 error page In-Reply-To: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31054-70-wbMzaw1vtz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31054 --- Comment #1 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136574 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136574&action=edit Bug 31054 - Manual importing for EDIFACT invoices fails with a 500 error page Error in plack log is: Can't locate object method "new" via package "Koha::Plugin::Com::ByWaterSolutions::MyEdifactPlugin" (perhaps you forgot to load "Koha::Plugin::Com::ByWaterSolutions::MyEdifactPlugin"?) at /usr/share/koha/lib/Koha/EDI.pm line 219. Test Plan: 1) Set EdifactInvoiceImport to "Don't" 2) Configure an EDI vendor to use an EDIFACT plugin 3) Attempt to import an invoice file 4) You will be shown an error page 5) Apply this patch 6) Restart all the things! 7) Attempt to import another invoice file 8) It works! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:17:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:17:04 +0000 Subject: [Koha-bugs] [Bug 31054] Manual importing for EDIFACT invoices fails with a 500 error page In-Reply-To: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31054-70-dQLztSmX8H@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31054 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:17:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:17:20 +0000 Subject: [Koha-bugs] [Bug 31054] Manual importing for EDIFACT invoices fails with a 500 error page In-Reply-To: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31054-70-ohl53i1HBi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31054 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|Trivial patch |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:36:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:36:07 +0000 Subject: [Koha-bugs] [Bug 30578] We should drop circ/ysearch.pl in preference to using the REST API's In-Reply-To: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30578-70-yOEKyxIp3t@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30578 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136130|0 |1 is obsolete| | --- Comment #26 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136575 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136575&action=edit Bug 30578: Remove circ/ysearch.pl in favor of the /patrons REST API route This patch removes the circ/ysearch.pl script used by the jQuery autocomplete widget. We can now use the /api/v1/patrons endpoint to retrieve the patrons and generate the patron result list. Prior to this patch the different occurrences were defining the style and the list of patron's attributes to display for each option (name, date of birth, age, address, etc.). Now they are all displaying the same information. To acchieve this we had to: * Make js-date-format.inc and js-patron-get-age.inc available from js_includes.inc and so available from everywhere, which is certainly a good move. We could discuss why this code is in include file instead of JS files however. * Remove the .ajaxSetup call in tags-review.js to reduce its scope: an underscore parameter was added to the REST API query (?) A better solution would have been to extend the existing widget (https://learn.jquery.com/jquery-ui/widget-factory/extending-widgets/) but I didn't manage to do it, and I feel like there is a bug in jQuery autocomplete. The "source" was not taken into account. We could think about replacing the jQuery autocomplete with something else, but that's outside the scope of this bug. Test plan: Search for patrons and confirm the autocomplete works and that the "select" action works as before (either a redirect or select the patrons) on the different views: * Place a hold * Search for tags (form on the left) * In the header, "Check out" and "Search patrons" * Add instructors to course reserves * View logs (the "librarian" input) Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:36:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:36:12 +0000 Subject: [Koha-bugs] [Bug 30578] We should drop circ/ysearch.pl in preference to using the REST API's In-Reply-To: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30578-70-Js8UKnFOxp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30578 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136131|0 |1 is obsolete| | --- Comment #27 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136576 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136576&action=edit Bug 30578: Restore highlighting of patrons from the logged-in library Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:36:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:36:16 +0000 Subject: [Koha-bugs] [Bug 30578] We should drop circ/ysearch.pl in preference to using the REST API's In-Reply-To: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30578-70-bu7JRiQpm6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30578 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136132|0 |1 is obsolete| | --- Comment #28 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136577 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136577&action=edit Bug 30578: Fix on-select for 2 occurrences Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:36:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:36:20 +0000 Subject: [Koha-bugs] [Bug 30578] We should drop circ/ysearch.pl in preference to using the REST API's In-Reply-To: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30578-70-uJX03Hkh2k@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30578 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136133|0 |1 is obsolete| | --- Comment #29 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136578 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136578&action=edit Bug 30578: Remove ajaxSetup from checkouts.js It was a IE fix apparently commit f021b52e71deaac0b46992fa33ef02f2b001e56d Bug 11703 [QA Followup] - Stop IE from caching ajax request Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:36:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:36:25 +0000 Subject: [Koha-bugs] [Bug 30578] We should drop circ/ysearch.pl in preference to using the REST API's In-Reply-To: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30578-70-XUbTzu4eDh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30578 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136134|0 |1 is obsolete| | --- Comment #30 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136579 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136579&action=edit Bug 30578: Fix multi-terms search Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:36:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:36:45 +0000 Subject: [Koha-bugs] [Bug 30578] We should drop circ/ysearch.pl in preference to using the REST API's In-Reply-To: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30578-70-QBOfc12ZHe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30578 --- Comment #31 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Conflict with bug 21978 fixed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:48:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:48:45 +0000 Subject: [Koha-bugs] [Bug 30196] Odd number of elements warning caused by dt_from_string In-Reply-To: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30196-70-eQRXCJSkqX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 Blou <philippe.blouin at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com | |, shi-yao.wang at inLibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:50:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:50:10 +0000 Subject: [Koha-bugs] [Bug 30196] Odd number of elements warning caused by dt_from_string In-Reply-To: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30196-70-PqWjEsXqBv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 --- Comment #4 from Blou <philippe.blouin at inlibro.com> --- I couldn't find a task here related to this bz. I'll create on and have shi yao look at it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:54:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:54:43 +0000 Subject: [Koha-bugs] [Bug 30963] Automatically refresh the curbside pickups list In-Reply-To: <bug-30963-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30963-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30963-70-R4H1b8Flui@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30963 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alissa.desaintlaurent at univ- | |brest.fr, | |sonia.bouis at univ-lyon3.fr Status|ASSIGNED |In Discussion -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:55:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:55:02 +0000 Subject: [Koha-bugs] [Bug 30964] Add information about overdues and restrictions on the curbside pickup list In-Reply-To: <bug-30964-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30964-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30964-70-wyyVsA0rFY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30964 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alissa.desaintlaurent at univ- | |brest.fr, | |sonia.bouis at univ-lyon3.fr -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:55:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:55:17 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-TrH2besGfj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alissa.desaintlaurent at univ- | |brest.fr, | |sonia.bouis at univ-lyon3.fr -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 14:55:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 12:55:29 +0000 Subject: [Koha-bugs] [Bug 30965] Add patron autocomplete search to curbside pickups In-Reply-To: <bug-30965-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30965-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30965-70-N5zJ0357rB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30965 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alissa.desaintlaurent at univ- | |brest.fr, | |sonia.bouis at univ-lyon3.fr -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:00:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:00:19 +0000 Subject: [Koha-bugs] [Bug 31055] New: Move koha-functions to /usr/sbin instead of koha/bin Message-ID: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31055 Bug ID: 31055 Summary: Move koha-functions to /usr/sbin instead of koha/bin Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: m.de.rooy at rijksmuseum.nl QA Contact: testopia at bugs.koha-community.org For a long time I am copying koha-functions.sh to /usr/share/koha/bin, since that is the location that the koha-* scripts expect it to be. It would be easier to put it in sbin too. Please tell me if there are valid legitimate reasons to do not so. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:00:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:00:56 +0000 Subject: [Koha-bugs] [Bug 31055] Move koha-functions to /usr/sbin instead of koha/bin In-Reply-To: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31055-70-c7odW46Gn0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31055 --- Comment #1 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to Marcel de Rooy from comment #0) > For a long time I am copying koha-functions.sh to /usr/share/koha/bin, since > that is the location that the koha-* scripts expect it to be. Talking about a gitified dev package install. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:14:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:14:06 +0000 Subject: [Koha-bugs] [Bug 31055] Move koha-functions to /usr/sbin instead of koha/bin In-Reply-To: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31055-70-NOLbN3NUEF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31055 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:14:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:14:10 +0000 Subject: [Koha-bugs] [Bug 31055] Move koha-functions to /usr/sbin instead of koha/bin In-Reply-To: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31055-70-djhSNS2vj0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31055 --- Comment #2 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136580 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136580&action=edit Bug 31055: Update install location for koha-functions Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:14:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:14:14 +0000 Subject: [Koha-bugs] [Bug 31055] Move koha-functions to /usr/sbin instead of koha/bin In-Reply-To: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31055-70-9L6bsK7B5e@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31055 --- Comment #3 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136581 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136581&action=edit Bug 31055: Change the source statement in koha scripts All references to koha-functions moved to sbin. git grep -l "bin/koha-functions.sh" | xargs sed -i -e's/usr\/share\/koha\/bin\/koha-functions.sh/usr\/sbin\/koha-functions.sh/g' Test plan: [1] Copy debian scripts to /usr/sbin locally. [2] Remove /usr/share/koha/bin/koha-functions.sh [3] Try a few scripts [4] git grep -E "[^s]bin/koha-funct". No occurrences? Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:14:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:14:35 +0000 Subject: [Koha-bugs] [Bug 31055] Move koha-functions to /usr/sbin instead of koha/bin In-Reply-To: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31055-70-MFrhKxae0E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31055 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:22:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:22:17 +0000 Subject: [Koha-bugs] [Bug 30964] Add information about overdues and restrictions on the curbside pickup list In-Reply-To: <bug-30964-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30964-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30964-70-p2VNnx5dh5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30964 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:22:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:22:21 +0000 Subject: [Koha-bugs] [Bug 30964] Add information about overdues and restrictions on the curbside pickup list In-Reply-To: <bug-30964-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30964-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30964-70-H7PZmQdNJE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30964 --- Comment #1 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136582 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136582&action=edit Bug 30964: Add 'restricted' and 'has overdues' on curbside pickup This patch adds more information about the patron's account on the curbside pickup list view. "Patron's account is restricted" if the patron is restricted "Patron has items overdue" if the patron has overdues Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:23:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:23:48 +0000 Subject: [Koha-bugs] [Bug 30965] Add patron autocomplete search to curbside pickups In-Reply-To: <bug-30965-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30965-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30965-70-ZjuaDXkNdU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30965 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:23:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:23:52 +0000 Subject: [Koha-bugs] [Bug 30965] Add patron autocomplete search to curbside pickups In-Reply-To: <bug-30965-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30965-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30965-70-MtbllAWxqZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30965 --- Comment #1 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136583 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136583&action=edit Bug 30965: Add patron autocomplete search to curbside pickups Prior to this patch librarians had to know the cardnumber to search for patron. Now it's possible to search using the default patron autocomplete search (name, cardnumber, etc.) Test plan: Confirm that you can search for a patron without their cardnumber, select it and create a curbside pickup Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:24:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:24:37 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-z97XyGkQdl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:24:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:24:42 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-iRMJt7zvIG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #9 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136584 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136584&action=edit Bug 30650: DB changes Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:24:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:24:47 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-3SxNVm8BbT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #10 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136585 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136585&action=edit Bug 30650: Koha classes Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:24:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:24:52 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-2Gn3nDkynI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #11 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136586 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136586&action=edit Bug 30650: Add the CurbsidePickup syspref Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:24:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:24:57 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-tcC5n6vecq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #12 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136587 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136587&action=edit Bug 30650: Add new permission manage_curbside_pickups Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:25:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:25:02 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-vL72xUUofn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #13 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136588 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136588&action=edit Bug 30650: Add link from the admin home page Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:25:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:25:07 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-DpRaMnd9mk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #14 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136589 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136589&action=edit Bug 30650: Admin page This patch adds a new page in the administration area to manage curbside pickups. Test plan: 1. Enable the new CurbsidePickup syspref 2. Go to Administration > Curbside pickups => If the logged-in user has the manage_curbside_pickups permission you should see the administration view 3. Enable the feature for some libraries and configure it. a. You must define a "pickup interval" and a "maximum patrons per interval" values. b. If "Patron-scheduled pickup" is enabled, patrons will be able to schedule curbside pickups from the OPAC c. If "Enable for waiting holds only" is enabled, only patron with waiting holds will be allowed to schedule curbside pickups d. In the bottom part of the form you can define the slots available for curbside pickups. e. Save Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:25:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:25:12 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-AInZkiUBGm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #15 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136590 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136590&action=edit Bug 30650: Adjust atomic update Take into account existing installs using the plugins Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:25:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:25:18 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-1FgUfJi00Z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #16 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136591 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136591&action=edit Bug 30650: Be more flexible with opening slots Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:25:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:25:23 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-SRmLhFM06E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #17 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136592 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136592&action=edit Bug 30650: Add some useful modules and tests Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:25:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:25:37 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-vRXrTsX2uK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #18 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136593 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136593&action=edit Bug 30650: Add circulation page view This is the main commit message. A plugin already exists to manage curbside pickups. This new enhancehemnt is suggesting an implementation that is ready to be integrated into Koha core in order to provide the feature out-of-the-box. What has been done in this patch set: - Deal with installations using the existing plugin (upgrade the DB schema and migrate their data) - Add a new syspref (CurbsidePickup) and two new permissions: * parameters.manage_curbside_pickups * circulate.manage_curbside_pickups - Add an administration page to setup the configuration: admin/curbside_pickup.pl - Add a circulation page to manage the existing pickups, and create new one - Add a new OPAC view "your curbside pickups" to let patron manage their pickups, and create new ones - Add link from the "member" toolbar Improvements compared to the plugin: - Ability to create several pickup windows per day - Better display of the pickup times (not in a dropdown list) - Ability to disable pickups for patrons without waiting holds - Display pickups on the patron circulation page - Display pickups of the library on the homepage - Prevent pickup to be created on a holiday - Better error handling (exceptions) - Unit tests More improvements are already planned, see related bug reports. Test plan: After you setup the feature correctly from the administration view, you will be able to use the schedule curbside pickups from the staff interface, and from the OPAC interface if you selected "patron-scheduled pickup" A. Staff interface 1. Go to Circulation > Curbside pickups => If the logged-in user has the circulate.manage_curbside_pickups permission you will be able to create and manage curbside pickups 2. Go to a patron detail page and click the "Schedule pickup" button in the toolbar 3. If the patron has waiting holds and you selected "Enable for waiting holds only", of if you didn't select the option, you will be able to select a pickup date and slots to create a pickup. 4. Confirm that you cannot create more pickups per slot than what you defined in the curbside pickup configuration for this library 5. Confirm that you cannot create a pickup if the feature is disabled for the library 6. Notice that you can mark the pickup as "stage and ready", then "patron is outside" and finally "delivered today". You can also rollback the change 7. Notice that once the pickup has been marked as delivered, the item has been checked out and that a new notice has been generated (if the patron has "Hold_Filled" in their messaging preferences 8. Confirm that the information about current pickups is displayed on the circulation page of the patron B. OPAC interface 1. Create a new curbside pickup from the OPAC 2. Confirm that the same limitations as from the staff interface are in effect (waiting holds, number of patron per slots, etc.) 3. Confirm that you can cancel a pickup and alert staff of you arrival 4. Confirm that you cannot cancel a pickup that has been delivered already Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:25:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:25:44 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-EotR7LNcjz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #19 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136594 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136594&action=edit Bug 30650: Add dayjs and isSameOfAfter plugin Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:25:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:25:49 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-B82bCcii4l@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #20 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136595 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136595&action=edit Bug 30650: Add dayjs to opac Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:25:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:25:55 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-T9fNgDUvXQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #21 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136596 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136596&action=edit Bug 30650: OPAC view Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:00 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-awhG7KkYBC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #22 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136597 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136597&action=edit Bug 30650: Add link from the member toolbar Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:05 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-p9BxB9yg0A@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #23 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136598 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136598&action=edit Bug 30650: Notify the patron when a new curbside pickup is created Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:10 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-dPCCKAeJBG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #24 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136599 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136599&action=edit Bug 30650: DB - Add policy.enable_waiting_holds_only Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:15 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-VYar3V4Q8F@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #25 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136600 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136600&action=edit Bug 30650: Allow to restrict curbside pickup for waiting holds only Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:20 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-OBRp3KItxK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #26 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136601 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136601&action=edit Bug 30650: Add link from the mainpage Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:25 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-khyNi83jsR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #27 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136602 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136602&action=edit Bug 30650: Add link from the circ patron page Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:30 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-R2yiwsvrZM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #28 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136603 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136603&action=edit Bug 30650: Add filter_by_scheduled_today A bit of cleaning Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:35 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-xs5tBC33Jm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #29 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136604 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136604&action=edit Bug 30650: Prevent pickup to be created on holiday We could improve this more and add disable the holiday from the date picker widget, but it's out of the scope here. Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:40 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-7nuWoXCQxj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #30 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136605 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136605&action=edit Bug 30650: Split the permission We actually want one permission to manage the administration page, and one for the circulation module. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:44 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-KqcHZu2FgQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #31 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136606 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136606&action=edit Bug 30650: Select 'schedule a pickup' if no pickups yet -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:50 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-xDyJTiTe3x@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #32 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136607 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136607&action=edit Bug 30650: Prevent browser crash if no pickup interval set Don't get stuck in an infinite loop -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:26:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:26:56 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-zxW7eKppxf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #33 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136608 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136608&action=edit Bug 30650: Compiled CSS Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:27:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:27:02 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-ELOAzGxxZZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #34 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136609 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136609&action=edit Bug 30650: DBIC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:27:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:27:07 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-7P4QhgJ8Wa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #35 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136610 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136610&action=edit Bug 30650: DBIC specific Sponsored-by: Association KohaLa - https://koha-fr.org/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:27:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:27:26 +0000 Subject: [Koha-bugs] [Bug 30965] Add patron autocomplete search to curbside pickups In-Reply-To: <bug-30965-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30965-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30965-70-h0JZfIU6CG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30965 --- Comment #2 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- This is ready for testing, see test plans in patch "Bug 30650: Admin page" and "Bug 30650: Add circulation page view" -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 15:28:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 13:28:00 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-IXeKYhFhRh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 --- Comment #36 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- This is ready for testing, see test plans in patches "Bug 30650: Admin page" and "Bug 30650: Add circulation page view" -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 16:13:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 14:13:05 +0000 Subject: [Koha-bugs] [Bug 29094] Placing holds via SIP2 does not check if a patron can hold the given item In-Reply-To: <bug-29094-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29094-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29094-70-bVW40SFzV3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29094 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 16:13:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 14:13:08 +0000 Subject: [Koha-bugs] [Bug 29094] Placing holds via SIP2 does not check if a patron can hold the given item In-Reply-To: <bug-29094-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29094-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29094-70-pQiMlg0hmw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29094 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136570|0 |1 is obsolete| | --- Comment #4 from David Nind <david at davidnind.com> --- Created attachment 136611 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136611&action=edit Bug 29094: Adding hold via SIP should check if patron can hold item first When placing holds via SIP2, there is no holdability check. This seems very incorrect. Test Plan: 1) Apply this patch 2) prove -r t/db_dependent/SIP Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 16:52:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 14:52:34 +0000 Subject: [Koha-bugs] [Bug 31053] Add Context module to Koha/Encryption In-Reply-To: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31053-70-hJpiDqg06N@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31053 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 16:52:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 14:52:36 +0000 Subject: [Koha-bugs] [Bug 31053] Add Context module to Koha/Encryption In-Reply-To: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31053-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31053-70-oFLQzYCwIa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31053 --- Comment #3 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:32:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:32:03 +0000 Subject: [Koha-bugs] [Bug 29922] Group of libraries are now displayed in alphabetical order In-Reply-To: <bug-29922-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29922-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29922-70-E7Ni5kMzNy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29922 --- Comment #13 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136612 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136612&action=edit Bug 29922: Make get_search_groups return results sorted by title get_search_groups from Koha/Library/Groups.pm returns library groups sorted by title. Test plan: 1- Go to administration > library groups and create multiple library groups with different names (e.g. AGroup, BGroup, ÄGroup, etc.). Make sure to tick "Use for OPAC search groups" checkbox. 2- Go to advanced search in OPAC. 3- Under "Groups of librairies" , click the select button. 4- Notice that the library groups are not in alphabetical order. 5- Apply the patch. 6- Notice that the library groups are in alphabetical order. 7- Run `prove t/db_dependent/LibraryGroups.t` and all test should pass. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:32:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:32:36 +0000 Subject: [Koha-bugs] [Bug 29922] Group of libraries are now displayed in alphabetical order In-Reply-To: <bug-29922-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29922-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29922-70-tqRizWq7Hd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29922 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |shi-yao.wang at inLibro.com Attachment #131444|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:32:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:32:45 +0000 Subject: [Koha-bugs] [Bug 29922] Group of libraries are now displayed in alphabetical order In-Reply-To: <bug-29922-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29922-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29922-70-vpV7SR3Z7s@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29922 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131343|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:34:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:34:12 +0000 Subject: [Koha-bugs] [Bug 29922] Group of libraries are now displayed in alphabetical order In-Reply-To: <bug-29922-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29922-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29922-70-9Qy9jVXGlB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29922 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:38:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:38:55 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-QAqO9VbMVy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136344|0 |1 is obsolete| | --- Comment #229 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136613 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136613&action=edit Bug 28854: Database update -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:39:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:39:03 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-OlZWZ63UlU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136345|0 |1 is obsolete| | --- Comment #230 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136614 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136614&action=edit Bug 28854: DBIC Schema Updates -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:39:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:39:11 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-zyTLPpCaed@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136346|0 |1 is obsolete| | --- Comment #231 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136615 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136615&action=edit Bug 28854: Expose functionality to attach items to bundles This patch adds methods the the Koha::Item object for managing item bundling operations and then exposes those methods via the REST API. We include the new `BundleNotLoanValue` preference for setting not for loan values when an item is added to a bundle. Finally, we expose bundle management via the catalogue details page. Test plan: 0) Apply patches up to this point and run the database update 1) Configuration: `BundleNotLoanValue` should have been set by the database update and point to a newly added AV value. 2) Creating a new bundle * Add a new bib record * Mark the bib record as a 'collection' type by setting leader position 7 to 'c' * Add a new item to this bib record * You should see a new 'Manage bundle' button available in the 'Actions' column of the Holdings table. * Clicking 'Manage bundle' should expand the table to include a new row directly beneath this one. * Use the new 'Add to bundle' button that appears in this row to trigger a modal that allows entering the barcode of items you wish to add to the bundle * Upon closing the modal, the bundle content table should reload and contain your newly associated items. * You can subsequently remove an item from a bundle using the new 'Remove' button. 3) Not for loan * Items that have been added into a bundle should now appear as 'Not for loan' from their original biblio record and note which bundle they belong to. 4) Error cases * Try adding an item that already belongs to a bundle to another bundle: Note an error is displayed in the modal form. 5) The bundles feature can be disabled by unsetting the `BundleNotLoanValue` system preference. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:39:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:39:19 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-u4UFr0sYUO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136347|0 |1 is obsolete| | --- Comment #232 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136616 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136616&action=edit Bug 28854: Update circulation functionality for bundles This patch updates the circulation system to account for bundle checkins. We add a content verification step to ensure bundle content is all present at checkin and we use this comparison to mark missing items as lost. Test plan 0) Apply patches up to this point 1) Checkin an item that belongs to a bundle * An alert should be triggered noting that the item belongs to a bundle * The option to remove the item from the bundle should be clear * Click remove should result in the alert dissapearing and the item having been removed from the bundle. 2) Checkin an item bundle * A modal confirmation dialog should appear requesting each item barcode be scanned * As items are scanned they should be highlighted in yellow in the bundle content table * Upon submission; * The user will be alerted to any unexpected items that were scanned and told to put them to one side. * The user will be alerted that any missing items in the validation will have been marked as lost. * The bundle item will be marked as checked in. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:39:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:39:26 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-YVJVCJwnBI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136348|0 |1 is obsolete| | --- Comment #233 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136617 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136617&action=edit Bug 28854: Highlight bundle rows to clarify UI -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:39:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:39:34 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-mytsI9inCe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136349|0 |1 is obsolete| | --- Comment #234 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136618 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136618&action=edit Bug 28854: Drop unique index on issue_id in return claims With the introduction of circulating items within a bundle set, we can now loose multiple items from the bundle from the same issue. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:39:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:39:43 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-uy3gRWuvFI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136350|0 |1 is obsolete| | --- Comment #235 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136619 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136619&action=edit Bug 28854: DBIC Update ReturnClaim Schema -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:39:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:39:51 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-SSIdArrJo7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136351|0 |1 is obsolete| | --- Comment #236 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136620 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136620&action=edit Bug 28854: Record and display who lost the item This patch records the bundle issue from which an item is marked as lost so that we may use that to infer who lost the item (for later charges and display). Test plan 0) Apply all patches up to this point 1) Checkout a bundle to a user 2) Checkin the bundle and do not scan one of the barcodes at confirmation * Note that the item not scanned is marked as lost 3) Navigate to the biblio for the lost item and note that it is marked as lost. 4) Navigate to the biblio for the collection and expand the collection item that contains the lost item. Note the item is marked as lost and checkout details are listed. 5) Checkin the lost item * The item should be marked as found and the return_claims line should be marked as resolved. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:40:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:40:03 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-VTJpBbJskk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136352|0 |1 is obsolete| | --- Comment #237 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136621 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136621&action=edit Bug 28854: Simplified status handling for bundle inventory check -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:40:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:40:11 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Kmu1DXy5oJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136353|0 |1 is obsolete| | --- Comment #238 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136622 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136622&action=edit Bug 28854: Add option to print content list after verification We already allowed the user to view and print an updated content list after a varification showed that items were missing from the bundle. This patch adds the option to view and print the list even if the content has been varified to have not changed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:40:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:40:20 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-yXSZAF0sZh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136354|0 |1 is obsolete| | --- Comment #239 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136623 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136623&action=edit Bug 28854: Add ordering to checkin validation modal This enhancement adds simple dataTable ordering to the verification modal table at bundle checkin time. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:40:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:40:31 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Fdwt1ovqUV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136355|0 |1 is obsolete| | --- Comment #240 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136624 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136624&action=edit Bug 28854: Improve lost details display for bundle items This patch adds the return claim details to the bundle item status display on the catalogue details page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:40:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:40:40 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-hIO6kyAibd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136356|0 |1 is obsolete| | --- Comment #241 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136625 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136625&action=edit Bug 28854: Enable claims return view when BundleLostValue is set This patch adds the alternation of BundleLostValue to enable the return claims functionality when Bundles are enbled. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:40:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:40:48 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-zRKdwrmG01@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136357|0 |1 is obsolete| | --- Comment #242 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136626 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136626&action=edit Bug 28854: Highlight when a scanned item is unexpected -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:40:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:40:56 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-MjYqnQBa7i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136358|0 |1 is obsolete| | --- Comment #243 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136627 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136627&action=edit Bug 28854: Add count of scanned items to verification modal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:41:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:41:03 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-V0J8xO0Psj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136359|0 |1 is obsolete| | --- Comment #244 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136628 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136628&action=edit Bug 28854: Add 'Remove from bundle' dialogue to details display This patch adds the counterpart of the 'Add to bundle' modal prompt for adding items to bundles from the catalogue details display. It allows for scanning barcodes to remove them from a bundle. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:41:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:41:11 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Ou6mc4LDE5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136360|0 |1 is obsolete| | --- Comment #245 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136629 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136629&action=edit Bug 28854: Add modal after checkin to print missing items list This patch adds a further modal to the post checkin alert to allow the user to print a view and print a list of items that went missing at this checkin to allow for replacements to be picked. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:41:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:41:18 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-DBOSJLQen6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136361|0 |1 is obsolete| | --- Comment #246 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136630 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136630&action=edit Bug 28854: (follow-up) Only count rows in the body This patch fixes the count to only include table rows in the body, i.e. skip the header row. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:41:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:41:25 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-ZBE6mj98oY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136362|0 |1 is obsolete| | --- Comment #247 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136631 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136631&action=edit Bug 28854: Make barcode comparison case insensative -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:41:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:41:32 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-gwlwsI7VPw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136363|0 |1 is obsolete| | --- Comment #248 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136632 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136632&action=edit Bug 28854: (QA follow-up) Fix QA tool complaints * Typo in code comment * Permissions on atomicupdate * Missing TT filter in template * Spelling in template Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:41:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:41:40 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-TZbI3ctIvy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136364|0 |1 is obsolete| | --- Comment #249 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136633 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136633&action=edit Bug 28854: (follow-up) Use Koha::Item->itemtype introduced with bug 20469 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:41:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:41:47 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-2kJPznDtKr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136365|0 |1 is obsolete| | --- Comment #250 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136634 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136634&action=edit Bug 28854: Unit test for Koha::Item additions This patch adds unit tests for the new methods added to Koha::Item including: * return_claim * return_claims * is_bundle * in_bundle * bundle_host * bundle_items * add_to_bundle * remove_from_bundle Test plan 1) Run t/db_dependent/Koha/Item.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:41:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:41:54 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-gGdOt8qAFT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136366|0 |1 is obsolete| | --- Comment #251 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136635 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136635&action=edit Bug 28854: Unit test for AddReturn addition This patch adds tests for the AddReturn change that adds an 'InBundle' message to the return. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:42:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:42:02 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-H5J785DmlK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136367|0 |1 is obsolete| | --- Comment #252 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136636 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136636&action=edit Bug 28854: Unit tests - chargelostitem This patch adds unit tests for the changes to chargelositem to ensure bundle charging works as expected setting the correct issue_id. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:42:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:42:09 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-fs2ml0X45m@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136368|0 |1 is obsolete| | --- Comment #253 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136637 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136637&action=edit Bug 28854: Add default AV and Syspref values This patch adds the new AV and System Preferences to the installer. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:42:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:42:17 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-dZ3EA5EOvQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136369|0 |1 is obsolete| | --- Comment #254 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136638 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136638&action=edit Bug 28854: (follow-up) Translations fixes This patch wraps and unwraps strings appropriately for trasnlation. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:42:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:42:25 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-rBtMnPahYM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136370|0 |1 is obsolete| | --- Comment #255 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136639 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136639&action=edit Bug 28854: (follow-up) Rename column configuration to barcode This patch updates the column configuration from 'external_id' to 'barcode' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:42:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:42:33 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-ScD2Go1x0w@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136371|0 |1 is obsolete| | --- Comment #256 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136640 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136640&action=edit Bug 28854: (follow-up) Move preferences to "Item bundles" Move the preferences into a section under 'Circulation' called 'Item bundles' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:42:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:42:41 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-oGPmOY0NfK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136498|0 |1 is obsolete| | --- Comment #257 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136641 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136641&action=edit Bug 28854: (follow-up) Fix typo in templates and test plan * aready > already * 61 > 62 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:42:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:42:49 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-aypQtWSLZm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136529|0 |1 is obsolete| | --- Comment #258 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136642 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136642&action=edit Bug 28854: (follow-up) Improve error for item not found -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:42:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:42:56 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-4D9kMBD7yg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136530|0 |1 is obsolete| | --- Comment #259 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136643 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136643&action=edit Bug 28854: (follow-up) Use barcodedecode in Koha::REST::V1::Items This removes any leading or trailing whitespace from the external id passed -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:43:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:43:04 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Ayg6lmiRlf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #260 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136644 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136644&action=edit Bug 28854: (follow-up) Disable bundle editing for checked out This patch disables the add and remove options under bundle management when the bundled item in question is checked out. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:43:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:43:11 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-JzoSG9SMjP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #261 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136645 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136645&action=edit Bug 28854: (follow-up) Link bundle items to thier biblios This patch splits out the title formatting from the bundle item title display into it's own new js-biblio-format include file and adds biblio linking options. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:43:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:43:19 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-8a62q63jf4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #262 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136646 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136646&action=edit Bug 28854: (follow-up) Restore last seen date formatting We lost the date formatting somewhere along the line with rebases, this patch restores the call to $date for last seen date. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:43:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:43:26 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-5Ux7YulpNW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #263 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136647 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136647&action=edit Bug 28854: (follow-up) Expand itemtype [WIP] WIP: -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:43:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:43:34 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-FLeFJQCEP3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #264 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136648 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136648&action=edit Bug 28854: (follow-up) Add bundle item status to manage button This patch adds the item counts (Present|Lost) to the 'Manage bundle' button in the catalogue details page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:43:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:43:42 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Ov1KX3R8vQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #265 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136649 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136649&action=edit Bug 28854: (follow-up) Make 'Manage bundle' button a 'toggle' This patch adds and removes the 'active' class to the 'Manage bundle' button such that it correctly reflects whether the manage area is expanded or not for the bundle item. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:43:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:43:50 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-E3j6pthytC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #266 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136650 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136650&action=edit Bug 28854: (follow-up) Restore block styling on bundled span This patch restores a css rule that we lost during rebases that makes the 'bundled' span that appears for bundled items on their respective details pages so that the 'In bundle: ' text in the status field of the table appears beneath the 'Not for loan (Added to bundle)' text. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:43:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:43:58 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Y7dWKO1BRV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #267 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136651 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136651&action=edit Bug 28854: (follow-up) Link to 'In bundle' on OPAC This patch adds the 'In bundle: Link' to the OPAC to mirror what we have on the staff client. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 17:44:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 15:44:06 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-UyTa62MW9B@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #268 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136652 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136652&action=edit Bug 28854: (follow-up) Add handling for part_numbers/names This patch adds part number/name handling to the new biblio-format js include. This will add such details to bundle management tables. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:01:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:01:37 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-EDAH9ag0M8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #269 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Katrin Fischer from comment #224) > Taking things for a test run now :) > > c) If you have a leading space in front of the barcode, it won't be > recognized. This can happen easily if you copy and paste when forming the > bundle and we deal with it in other places - I think we should do it here > too for consistency (see also bug 30409) (normal) Decided to stick with barcodedecode as it does more than just whitespace depending on some koha settings. > d) Should we be able to change contents of a bundle while it is checked out? > At the moment it's possible. Maybe a 'safety question'? (question/suggestion) Fixed in follow-up. > 2) Detail view of bundle > > Staff: > > a) From the bundle, there is no way to access the record that holds the > bundled item. It would be nice if the Title could be linked in the table to > allow for that. (suggestion) Fixed in follow-up > b) Collection is not resolved into the description in the table. (blocker) I'm tempted to drop this column from the display entirely.. is it useful? Pulling through descriptions is not yet easily supported on the API and there's ongoing discussions around it. > c) The item type column is empty, although the bundled item has an itemtype > (blocker) As above; However, I felt this one probably was a more useful field.. I started (see WIP patch) but decided perhaps it should be done as it's own bug as it really involves adding a whole new set of API routes and js handling. > d) If an item is lost, the date is formatted 'database' style. DateFormat is > not applied: Last seen: 2022-06-24. DateFormat was set to DD.MM.YYYY. > (blocker) Restored in a follow-up.. it got lost somewhere during rebases. > e) As all items on collections now show the "Manage bundle" button, there is > no way to see which item actually has bundled items. An idea here would be > to add the number of bundled items to the button text. (strong suggestion?) > * Empty: Manage bundle > * 3 items bundled in: Manage bundle (3) Fixed in follow-up. Opted to go for (X|Y) where 'X' is "Present items attached" and Y is "Lost items attached". Might seem Owens thoughts on how this displays inside a button, I'm not entirely sure about the approach of using plain text. > f) If you have 2 items on a bundle record and "Manage bundle" the first, the > button appearance changes and looks a bit 'pushed'. > Now push the second "Manage bundle link". Both bundles are open now, but > only the second button appears 'pushed'. > Close the first bundle - the button looks pushed now... close the second, > now you have a detail page with the second button looking pushed. > This seems a bit of a confusing UI message. Maybe it was supposed to close > the first when the second was opened? (question) Enhanced in follow-up.. I wasn't actually doing anything to the button but perhaps your browser was.. I've not assigned an 'active' class to the button when the management UI is expanded and then remove it again if we collapse. > 3) Detail view of bundled items > > a) Staff - bundled: I like the link from the status to the record there, > although it makes the column quite wide for a longer one. It all has nice > class mark-up, so would be easy to play with if needed. (comment) Restored styling that was lost in rebases again.. we use 'block' display to make it go directly underneath the not for loan status. > b) OPAC - bundled: We show "Added to bundle" but there is no way for the > OPAC user to figure out "how to get it". I'd really like to see a way to > navigate this here. Maybe we could link the status on the detail page to the > bundle? (normal) This wasn't at all trivial given how our item status include is written.. I took the simple approach in the end of embedding the data in the controller.. but this is unlikely to work everwhere the include is called. I think we should take this as-is now and work together with NatFi and Tomas to make status's work via the API's. > 4) Checkout - nothing found there :) Awesome. > 5) Checkin - nothing to complain about here either. I like the new modal and > its functionality. Awesome. > 6) Lost/return claims > > Checked in a bundle of 3 items, but one was 'lost'. > > a) Details tab: The return claim was created and in the patron account it > shows Claims ( 0 1 ) on the tab. But when I click on the tab, there is > nothing below. (blocker) I couldn't replicate this, but will have another go sometime this week with cleared-down data. > b) Checkouts tab: The claim shows here, but also shows a little issue: In > the notes column, it shows the text 'null'. And when I edit the note the > text is there as well. Hmm, not sure where the 'null' text is coming from yet.. still working on this one. > c) When trying to resolve the checkout claim to "(Not lost)", I see an > "Uncaught ReferenceError" in the console and the display of the claims table > is not refreshed. When I reload the page, I can see that the claim was > actually resolved. (blocker?) Oop.. missed this one whilst working through the comments.. will have to revisit as above. > d) When the claim return is resolved to another lost status, like "Lost", > the bundle view will show: Lost: 1. It should resolve to the description > instead. (blocker) As above. > 7) Inventory on checkin feature - no complaints Awesome. > 8) Wish/suggestion list > > a) Some items are really similar if you don't see the subtitle, part_name > and part_number. The bundle display and the modals in circulation only show > title. I think it would make a lot of sense to add the other fields here to > display as well. The use case here would be language materials for us. They > often match on title ($a) and the important bit is in the other fields (work > book, DVD, etc.9. They would also lend themselves to be 'bundled up'. We use the standard biblio-title.inc include for the check-in modal so that should already contain all the details you mention. I've added a follow-up to include handling for part numbers and part names in the manage bundle UI now. Thanks for reviewing! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:04:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:04:54 +0000 Subject: [Koha-bugs] [Bug 28787] Send a notice with the TOTP token In-Reply-To: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28787-70-b0VC1nyiNR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28787 --- Comment #18 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- (In reply to Marcel de Rooy from comment #16) > [2] Code segment from Koha/REST/V1/Auth.pm > if ( !$authorization and > ( $params->{is_public} and > ( C4::Context->preference('RESTPublicAnonymousRequests') or > $user) or $params->{is_plugin} ) > or $pending_auth > This does not look good to me. Do we need pending_auth here ? If so, at > least we need parentheses etc. My follow-up removes the line now. Why? Can you explain? If the user is not fully authenticated they shouldn't be allowed to access REST API route. With your follow-up patch the tests are failing now. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:10:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:10:17 +0000 Subject: [Koha-bugs] [Bug 28787] Send a notice with the TOTP token In-Reply-To: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28787-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28787-70-odtW5P7cNi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28787 --- Comment #19 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Note that the tests need an SMTP server configured to pass (which is wrong - TODO). They can be proved anyway with: apt install python && python -m smtpd -n -c DebuggingServer localhost:25 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:21:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:21:37 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-SXBOW7Lhvv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 --- Comment #79 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136653 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136653&action=edit Bug 27113: (follow-up) fix adv. searches - more options display issue -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:22:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:22:26 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-UzqmpqHTLm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:22:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:22:28 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-LjPBT92lA9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #270 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136654 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136654&action=edit Bug 28854: (follow-up) Prevent stringification of null in return claims The return claims table was stringifying 'null'. This patch updates the code to check for definition so we don't stringify incorrectly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:24:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:24:38 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-zaaGFLgIhJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #271 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Martin Renvoize from comment #269) > (In reply to Katrin Fischer from comment #224) > > 6) Lost/return claims > > > > Checked in a bundle of 3 items, but one was 'lost'. > > > > b) Checkouts tab: The claim shows here, but also shows a little issue: In > > the notes column, it shows the text 'null'. And when I edit the note the > > text is there as well. > > Hmm, not sure where the 'null' text is coming from yet.. still working on > this one. This was a pre-existing bug in recalls.. I've fixed it in a follow-up attached.. but perhaps it should be on it's own bug report really.. Feel free to grab the patch and submit it distinctly. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:25:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:25:34 +0000 Subject: [Koha-bugs] [Bug 23991] Move SearchSuggestion to Koha::Suggestions In-Reply-To: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23991-70-zu0DBNNmfz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23991 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:25:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:25:37 +0000 Subject: [Koha-bugs] [Bug 23991] Move SearchSuggestion to Koha::Suggestions In-Reply-To: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23991-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23991-70-lBoMvgAyK6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23991 --- Comment #59 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:25:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:25:40 +0000 Subject: [Koha-bugs] [Bug 26486] Group edit buttons in reports toolbar In-Reply-To: <bug-26486-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26486-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26486-70-3rUnfNZJDQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26486 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:25:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:25:42 +0000 Subject: [Koha-bugs] [Bug 26486] Group edit buttons in reports toolbar In-Reply-To: <bug-26486-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26486-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26486-70-GSSGiWqZKC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26486 --- Comment #5 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:25:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:25:45 +0000 Subject: [Koha-bugs] [Bug 30775] 952w should have datepicker plugin enabled for it by default In-Reply-To: <bug-30775-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30775-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30775-70-FKy3kz1EIh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30775 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:25:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:25:47 +0000 Subject: [Koha-bugs] [Bug 30775] 952w should have datepicker plugin enabled for it by default In-Reply-To: <bug-30775-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30775-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30775-70-JPcaUih54y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30775 --- Comment #6 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:25:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:25:50 +0000 Subject: [Koha-bugs] [Bug 30937] Add a detail view for libraries In-Reply-To: <bug-30937-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30937-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30937-70-URO1aFxux3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30937 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:25:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:25:52 +0000 Subject: [Koha-bugs] [Bug 30937] Add a detail view for libraries In-Reply-To: <bug-30937-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30937-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30937-70-z6TPlF5MVZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30937 --- Comment #6 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:54:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:54:39 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-iolsUNuFcX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #272 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136655 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136655&action=edit Bug 28854: (follow-up) Reload return claims table on resolve This is another fix for a bug in return claims. We now test for the initialised datatable and call an ajax reload directly on it if we find one instead of calling a undefined function (the function is out of scope here). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 18:59:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 16:59:08 +0000 Subject: [Koha-bugs] [Bug 28854] Add ability to create bundles of items In-Reply-To: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28854-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28854-70-Zvz8MAYvKU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28854 --- Comment #273 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Martin Renvoize from comment #269) > (In reply to Katrin Fischer from comment #224) > > c) When trying to resolve the checkout claim to "(Not lost)", I see an > > "Uncaught ReferenceError" in the console and the display of the claims table > > is not refreshed. When I reload the page, I can see that the claim was > > actually resolved. (blocker?) > > Oop.. missed this one whilst working through the comments.. will have to > revisit as above. Another pre-existing bug in return claims. Fixed in a follow-up here, but may be better served moved to another bug.. I'm reluctant as I don't really want to hold this one up any further... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 19:33:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 17:33:40 +0000 Subject: [Koha-bugs] [Bug 30196] Odd number of elements warning caused by dt_from_string In-Reply-To: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30196-70-N3gpPXLAyW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131170|0 |1 is obsolete| | --- Comment #5 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136656 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136656&action=edit Bug 30196: Odd number of elements warning caused by dt_from_string Koha/DateUtils' dt_from_string is a sub expected to return a scalar, but does not in all case. In one instance, tt simply return... nothing, which cause one common call output_pref( { dt => dt_from_string( $serinfo->{$d} ), dateonly => 1 } ); to output a warning. Simply returning undef instead will solve the issue. Test plan: 1- Have a terminal tail intranet error logs 2- In the code, go to about.pl and change the only dt_from_string() to dt_from_string('0000-00-00') 3- Go to About Koha 4- Notice the logs output is: "Odd number of elements in anonymous hash at ..." and error 500 on the page. 5- Apply the patch 6- Redo step 3 and notice the previous log output is not there and the page loads 7- run `prove t/DateUtils.t` and all tests should pass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 19:35:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 17:35:16 +0000 Subject: [Koha-bugs] [Bug 30196] Odd number of elements warning caused by dt_from_string In-Reply-To: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30196-70-gr656osHvH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff --- Comment #6 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Also notice this code in t/DateUtils.t: ># Return undef if passed mysql 0 dates >$dt0 = dt_from_string( '0000-00-00', 'iso' ); >is( $dt0, undef, "undefined returned for 0 iso date" ); This means it is supposed to return undef. This patch only makes it clearly return undef instead of letting perl decide. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 20:04:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 18:04:06 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-ObLx8RZ9lG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 --- Comment #80 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Fixed the little display issue. Also, does anyone know how to have the same relative path to one file from both OPAC and staff interface url? (e.g. http://master/api/elasticsearch/elasticsearch.pl and http://master-intranet/api/elasticsearch/elasticsearch.pl) With this we would only need to create one .pl file to be used by both interface instead of one for each. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 20:37:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 18:37:42 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-QKKk4OGIuJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 20:37:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 18:37:49 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-xpLo01MStm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136456|0 |1 is obsolete| | --- Comment #81 from David Nind <david at davidnind.com> --- Created attachment 136657 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136657&action=edit Bug 27113: ElasticSearch: Autocomplete in input search Usually the user knows only part of the title of the book or only the name of the author, etc. When he start search something Koha (ElasticSearch) predicts the rest of a word or expression which user is typing. Autocomplete predicts that thanks to index of ElasticSearch. TEST PLAN Important! In this patch we need to do reindex ElasticSearch. ElasticSearch must have all information in his index. 1. Go Intranet -> Preference -> SearchEngine -> ElasticSearch !! APPLY PATCH !! 2. Mapping is good (Intranet -> Catalog -> Search engine configuration (Elasticsearch) ). !Recommended 'Reset Mapping' -> 'Yes' 3. In your koha-conf.xml file you must have good <index_name> for <elasticsearch> and version ES 4. Update Preference: ./installer/data/mysql/updatedatabase.pl If that passe good you can look the lines: - DEV atomic update: bug_27113-elasticsearch_autocomplete_input_search.perl - Upgrade to XXX done : Bug 27113 - Autocomplete input on main page with elasticsearch 5. After that we can look two options in the preferences: - IntranetAutocompleteElasticSearch; - OPACAutocompleteElasticSearch; 4. For add information in the index we must run script for reindexing: ./misc/search_tools/rebuild_elasticsearch.pl -v -d 5. Waiting for the end of indexing 6. Go on Preference and find : - IntranetAutocompleteElasticSearch; - OPACAutocompleteElasticSearch; Value "Show" turn on autocomplete. 7. Now we have Autocomplete for Intranet/OPAC search input (advanced search also). Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 20:37:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 18:37:57 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-7VSQd1dxDj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136457|0 |1 is obsolete| | --- Comment #82 from David Nind <david at davidnind.com> --- Created attachment 136658 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136658&action=edit Bug 27113: (follow-up) Move new CSS to main SCSS files This patch removes the separate CSS files added for the autocomplete feature and puts them into the "main" SCSS files. I think a separate file isn't necessary because the amount of CSS it adds is so small. I've also tweaked the style of the autocomplete menu shown when you use the arrow keys to navigate through the autocomplete choices. I think the previous white-on-light-green didn't have enough contrast. To test you must rebuild the OPAC and staff client CSS: https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client Follow the previous test plan, being careful to observe how it works when the autocomplete menu has been triggered and you use the arrow keys to navigate through the results. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 20:38:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 18:38:04 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-LqA1KOquLh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136464|0 |1 is obsolete| | --- Comment #83 from David Nind <david at davidnind.com> --- Created attachment 136659 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136659&action=edit Bug 27113: (follow-up) Update descriptions for system preferences Update the descriptions for the new system preferences - IntranetAutocompleteElasticSearch and OPACAutocompleteElasticSearch. Test plan: 1. Review the descriptions for the IntranetAutocompleteElasticSearch and OPACAutocompleteElasticSearch system preferences. 2. Make sure they are readable and make sense. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 20:38:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 18:38:11 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-bZw8fgHA06@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136653|0 |1 is obsolete| | --- Comment #84 from David Nind <david at davidnind.com> --- Created attachment 136660 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136660&action=edit Bug 27113: (follow-up) fix adv. searches - more options display issue Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 20:46:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 18:46:34 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-Fxuu1ApxeR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 --- Comment #85 from David Nind <david at davidnind.com> --- (In reply to Shi Yao Wang from comment #80) > Fixed the little display issue. Thanks! > Also, does anyone know how to have the same relative path to one file from > both OPAC and staff interface url? (e.g. > http://master/api/elasticsearch/elasticsearch.pl and > http://master-intranet/api/elasticsearch/elasticsearch.pl) > > With this we would only need to create one .pl file to be used by both > interface instead of one for each. Sorry, I don't. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 21:13:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 19:13:19 +0000 Subject: [Koha-bugs] [Bug 31056] New: Unable to 'Close and export as PDF' a basket group Message-ID: <bug-31056-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31056 Bug ID: 31056 Summary: Unable to 'Close and export as PDF' a basket group Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Acquisitions Assignee: koha-bugs at lists.koha-community.org Reporter: caroline.cyr-la-rose at inlibro.com QA Contact: testopia at bugs.koha-community.org The button to 'Close and export as PDF' in the basket groups page seems to be broken. To test: 0) Make sure to have budgets, funds, and vendors set up in the acquisitions module 1) Go to Acquisitions 2) Search for a vendor 3) Create a new basket 4) Add materials to the basket 5) Close the basket (do NOT create a basket group at this time) 6) Click on the Basket groups tab on the left 7) Create a new basket group and add the basket (do NOT check the 'close basket group' box) 8) From the open basket groups list, click 'Close and export as PDF' --> Nothing happens In order to export as PDF, you have to edit the basket group, check the 'Close basket group' box, save and then export as PDF. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 21:13:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 19:13:41 +0000 Subject: [Koha-bugs] [Bug 31057] New: Add clarifying text to 'To Date' Message-ID: <bug-31057-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31057 Bug ID: 31057 Summary: Add clarifying text to 'To Date' Change sponsored?: --- Product: Koha Version: 21.05 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Holidays Assignee: koha-bugs at lists.koha-community.org Reporter: bwsdonna at gmail.com QA Contact: testopia at bugs.koha-community.org In the Calendar tool it would be helpful to add text to the 'To Date' box indicating that the date only should be entered for holidays on a range. As it is now, if you are entering a single holiday, or holiday repeated weekly, or holiday repeated yearly, the 'To Date' field has no effect, nor is the information entered in the box retained. This is very confusing, especially to new users. I suggest adding 'Only used with holidays on a range' either next to or under the 'To Date' box. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 23:30:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 21:30:44 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-mEnXv6QjTV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136323|0 |1 is obsolete| | --- Comment #4 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136661 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136661&action=edit Bug 30939: Fix use statement for DelAuthority Without this patch, the script won't delete any unused authorities, but gives an error instead and dies: Undefined subroutine &main::DelAuthority called at ./misc/migration_tools/remove_unused_authorities.pl line 98. To test: - Run from koha-shell: ./misc/migration_tools/remove_unused_authorities.pl -t - Verify several authorities are reported as unused - ./misc/migration_tools/remove_unused_authorities.pl -c - Verify the error message is shown when the first unused authority is found and the script stops - Apply patch and rerun: ./misc/migration_tools/remove_unused_authorities.pl -t - Verify the error is gone, the script finishes and auhorities are deleted https://bugs.koha-community.org/show_bug.cgi?id=30936 Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 23:30:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 21:30:59 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-92xR6AmlVZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA CC| |fridolin.somers at biblibre.co | |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 23:31:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 21:31:05 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-tdbBPESeFq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |fridolin.somers at biblibre.co |y.org |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Jun 27 23:37:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 21:37:55 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-BcttPT0fWa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 --- Comment #5 from Fridolin Somers <fridolin.somers at biblibre.com> --- How could be search for thoses ? I try : git grep 'use C4::.*;' | egrep -v '^(C4|Koha|t)/' | egrep -v 'qw ?(\(|/)' | grep -v Context If found for example : tools/batch_delete_records.pl:use C4::AuthoritiesMarc; Is it a correct match ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 00:55:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 22:55:46 +0000 Subject: [Koha-bugs] [Bug 30931] Handling of items.dateaccessioned in the item editor In-Reply-To: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30931-70-fQH55a7srW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30931 Alex Buckley <alexbuckley at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135854|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 00:56:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 22:56:17 +0000 Subject: [Koha-bugs] [Bug 30931] Handling of items.dateaccessioned in the item editor In-Reply-To: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30931-70-dRxT9nay7q@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30931 --- Comment #13 from Alex Buckley <alexbuckley at catalyst.net.nz> --- Created attachment 136663 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136663&action=edit Bug 30931: (alternate) Display a hint in item editor that the dateaccessioned will be filled with current date if left blank This hint WILL show when: - Adding a new item - Receiving a serial issue This hint WILL NOT show when: - Batch modifying items - Editing existing items Test plan: 1. Apply patch 2. Add an item to a biblio record. Notice there is a hint message for the 952$d (date acquired) subfield. 3. Edit an existing item. Notice there is no hint message displaying for the 952$d subfield. 4. Batch modify an item by submitting an item barcode into Tools > Batch item modification. Notice no hint message is displayed for the 952$d subfield. 5. Receive a serial (The subscription must be setup to create an item upon receival to test this). 6. Notice there is a hint message displaying for the 952$d (Date acquired) subfield in both the main issue you are receiving and the supplemental issue form as well Sponsored-by: Catalyst IT -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 00:57:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 22:57:15 +0000 Subject: [Koha-bugs] [Bug 30931] Handling of items.dateaccessioned in the item editor In-Reply-To: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30931-70-jCoWu1KvRl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30931 --- Comment #14 from Alex Buckley <alexbuckley at catalyst.net.nz> --- (In reply to Katrin Fischer from comment #12) > Was just about to add the missing link: bug 29963 comment#28. I am not sure > if this bug covers the batch edit as well - Alex might be able to tell. Hi Katrin and Benjamin, Sincere apologies for my delay in replying! This bug report should only cover adding new items/serial issues, not batch editing. However, my previous hint patch on this bug report did incorrectly display on the batch edit page. I agree with Benjamin that having the hint text 'Today's date will be saved in this field if you leave it blank.' display for 952$d (date accessioned) when batch editing existing items is confusing. Therefore, I have modified my patch and attached a new one, so the hint only shows in two situations: - Receiving serial issues - Adding new items The hint no longer displayed when: - Editing individual existing items - Batch editing items Could you please take a look Benjamin? Thanks, Alex -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 01:08:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 23:08:58 +0000 Subject: [Koha-bugs] [Bug 28128] Uploading Process of New Cataloging Records Stalls When 952 $9 Is Filled In In-Reply-To: <bug-28128-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28128-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28128-70-Oiz6BqXtbn@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28128 --- Comment #3 from David Cook <dcook at prosentient.com.au> --- Actually it looks like this is a duplicate of bug 28152 *** This bug has been marked as a duplicate of bug 28152 *** -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 01:08:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 23:08:58 +0000 Subject: [Koha-bugs] [Bug 28152] Hidden error when importing an item with an existing itemnumber In-Reply-To: <bug-28152-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28152-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28152-70-3ZCvfJvLPg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28152 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cmkelleymls at gmail.com --- Comment #25 from David Cook <dcook at prosentient.com.au> --- *** Bug 28128 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 01:15:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 23:15:50 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-n6k6OGYSTr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |In Discussion --- Comment #10 from David Cook <dcook at prosentient.com.au> --- (In reply to Katrin Fischer from comment #6) > I think it's a bug and a regression. > > The direct link by biblionumber should not work - and it didn't in the past. > > How a direct link behaves, is supposed to be controlled by the > OpacSuppressionRedirect system preference. There is something broken here. Could the exact problem be detailed? Using koha-testing-docker, I turned on OpacSuppression, updated 942$n for bib 29, and now when I go to http://localhost:8080/cgi-bin/koha/opac-detail.pl?biblionumber=29 it redirects me to http://localhost:8080/cgi-bin/koha/opac-blocked.pl I updated to OpacSuppressionRedirect to use a 404 instead and that's working too. So this might already be fixed in master? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 01:18:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 23:18:06 +0000 Subject: [Koha-bugs] [Bug 30650] Convert the Curbside Pickup plugin to Koha core In-Reply-To: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30650-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30650-70-L0OwrHJc8E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30650 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 01:25:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 23:25:41 +0000 Subject: [Koha-bugs] [Bug 30808] Release team 22.11 In-Reply-To: <bug-30808-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30808-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30808-70-B0adNQkidk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30808 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.05.00 |22.05.00, 21.05.16 released in| | --- Comment #7 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Backported: Pushed to 21.05.x branch for 21.05.16 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 01:49:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 27 Jun 2022 23:49:42 +0000 Subject: [Koha-bugs] [Bug 31055] Move koha-functions to /usr/sbin instead of koha/bin In-Reply-To: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31055-70-Ujjf9fN7LI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31055 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #4 from David Cook <dcook at prosentient.com.au> --- (In reply to Marcel de Rooy from comment #0) > For a long time I am copying koha-functions.sh to /usr/share/koha/bin, since > that is the location that the koha-* scripts expect it to be. > It would be easier to put it in sbin too. > > Please tell me if there are valid legitimate reasons to do not so. Well, koha-functions.sh isn't a command/executable that should be in the $PATH, so really it shouldn't be in /usr/sbin (or /usr/share/koha/bin really). koha-functions.sh should probably be in /usr/lib/koha or /usr/share/koha/lib I suppose. For example: /usr/lib/lsb/init-functions /usr/lib/cryptsetup/functions -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 03:13:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 01:13:25 +0000 Subject: [Koha-bugs] [Bug 30654] Even with RabbitMQ enabled, we should poll the database for jobs at worker startup In-Reply-To: <bug-30654-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30654-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30654-70-p2NixE2u8i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30654 --- Comment #8 from David Cook <dcook at prosentient.com.au> --- (In reply to Martin Renvoize from comment #0) > Our worker currently starts up and immediately tries to listen for jobs > being passed via STOMP. However, if rabbitMQ wasn't running when the tasks > were enqueue, then the worker will never know about them. > > We should work through the outstanding queue before listening for new jobs. I was thinking about this again as I'm building a RabbitMQ based job queue for a different Perl project. (Part of me thought maybe I should just use Minion, but the Perl and DB dependencies aren't available and I'm already using RabbitMQ for other asynchronous work on that system.) It seems to me that the order of operations should be the following: 1. Connect to RabbitMQ 2. Insert job in DB 3. Commit job in DB 4. Send message to a durable RabbitMQ queue 5. Output result of send message to user 5a. If successful, say job has been created 5b. If unsuccessful, say there was a problem creating job and to contact an administrator -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 03:37:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 01:37:30 +0000 Subject: [Koha-bugs] [Bug 30654] Even with RabbitMQ enabled, we should poll the database for jobs at worker startup In-Reply-To: <bug-30654-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30654-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30654-70-QsCr59dTJy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30654 --- Comment #9 from David Cook <dcook at prosentient.com.au> --- After comparing the "background_jobs" table and the "minion_jobs" table, it seems like we've got a fairly similar schema. https://metacpan.org/release/SRI/Minion-10.25/source/lib/Minion/Backend/resources/migrations/pg.sql I think the additions it has are: - attempts (number of retries allowed) - delayed (for scheduling jobs in the future although API is based off seconds from now) - notes (arbitrary metadata - progress is a note key that uses % values) - parents - priority - retried (time it was last retried) - retries (number of retries attempted) - expires - lax (for managing parent/child dependencies) One difference is that we use "data" whereas "minion" has two different columns for task arguments and task result, which makes sense to me... - args - result Another difference is that we track the borrowernumber. I suppose that could arguably be part of "args", but having it in its own column where it could be indexed makes jobs easier to manage on a per-user basis. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 03:38:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 01:38:45 +0000 Subject: [Koha-bugs] [Bug 30654] Even with RabbitMQ enabled, we should poll the database for jobs at worker startup In-Reply-To: <bug-30654-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30654-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30654-70-3MqqJZPwKE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30654 --- Comment #10 from David Cook <dcook at prosentient.com.au> --- (In reply to David Cook from comment #8) > It seems to me that the order of operations should be the following: > > 1. Connect to RabbitMQ > 2. Insert job in DB > 3. Commit job in DB > 4. Send message to a durable RabbitMQ queue > 5. Output result of send message to user > 5a. If successful, say job has been created > 5b. If unsuccessful, say there was a problem creating job and to contact an > administrator Actually that should be: 1. Connect to RabbitMQ 2. Insert job in DB 3. Commit job in DB 4. Send message to a durable RabbitMQ queue 5. Output result of send message to user 5a. If successful, say job has been created. 5b. If unsuccessful, say there was a problem creating job and to contact an administrator, and update/commit job in DB as failed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 03:48:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 01:48:34 +0000 Subject: [Koha-bugs] [Bug 30654] Even with RabbitMQ enabled, we should poll the database for jobs at worker startup In-Reply-To: <bug-30654-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30654-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30654-70-BOWj1yrqV2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30654 --- Comment #11 from David Cook <dcook at prosentient.com.au> --- Now this is a tangent, but... I notice in "background_jobs" we have "data" as "longtext". According to https://mariadb.com/kb/en/json-data-type/, the JSON datatype is an alias for LONGTEXT (from MariaDB 10.2.7) It looks like JSON_VALUE was added in MariaDB 10.2.3, and using a virtual column we could index JSON data as well which is interesting (https://mariadb.com/resources/blog/using-json-in-mariadb/) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 07:02:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 05:02:30 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-6kMubVdbYE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 07:02:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 05:02:34 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-QXKdwzjYzw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 --- Comment #2 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Created attachment 136664 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136664&action=edit Bug 31051: Show patron savings on the OPAC This new feature shows a patron how much they have saved by using the library rather than purchasing items. Savings are calculated based on item replacement prices. The system preference allows you to choose where to display the savings - the user page, the summary box on the OPAC homepage, or the checkout history page. To test: 1. Update database and restart services 2. Confirm the new OPACShowSavings system preference is found in the OPAC tab of Administration -> global system preferences. There should be no options selected. 3. Find a patron with a checkout history, or check out a few items to a patron. 4. Test with different values of OPACShowSavings and confirm that savings are shown in the expected places. Sponsored-by: Horowhenua Libraries Trust -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 08:18:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 06:18:17 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-ubc9kahhDQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131295|0 |1 is obsolete| | --- Comment #27 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136665 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136665&action=edit Bug 26311: Add patron invalid age to search_for_data_inconsistencies.pl Patron categories may have age limits. Add to script misc/maintenance/search_for_data_inconsistencies.pl the list of patrons which age is invalid regarding there category. Test plan : 1) Create an adult patron category limited to 18-99 years 2) Create a patron in the category 3) Edit in database its date of birth so that he is 17 years old 4) Run misc/maintenance/search_for_data_inconsistencies.pl => You see the patron Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 08:18:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 06:18:34 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-B6ahv2XNZl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131296|0 |1 is obsolete| | --- Comment #28 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136666 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136666&action=edit Bug 26311: (QA follow-up) Rephrase output message This is a suggestion for rephrasing the message slightly: Before: * Patron borrowernumber=15 in category 'J' has invalid age '56' After: * Patron borrowernumber=37 has an invalid age of 37 for their category 'K' Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 08:18:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 06:18:48 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-K6iHbzvE8W@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131297|0 |1 is obsolete| | --- Comment #29 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136667 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136667&action=edit Bug 26311: (follow-up) loop through the patron with date of birth and in categories having age limits Also added category limits in message, for example (12-18) Check patron : - with no date of birth - with invalid age in category having age required - with invalid age in category having upper age limit - with invalid age in category having age required and upper age limit -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 08:19:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 06:19:54 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-QW3hKaReVB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 08:19:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 06:19:59 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-jbf3EbvN0o@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 --- Comment #30 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136668 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136668&action=edit Bug 26311: (follow-up) Fix undefined values in sprintf Avoid warns 'Use of uninitialized value in sprintf' by using '0' if lower age is undefined 'unlimited' if upper are is undefined -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 08:20:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 06:20:55 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-1pcNrl3VLN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 --- Comment #31 from Fridolin Somers <fridolin.somers at biblibre.com> --- Warns uninitialized value in sprintf removed. Thanks again for testing David :D -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 08:23:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 06:23:33 +0000 Subject: [Koha-bugs] [Bug 30896] Running misc/batchRebuildBiblioTables.pl -c fails with error "Running Data too long for column 'lccn'" In-Reply-To: <bug-30896-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30896-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30896-70-3RxtLivx34@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30896 --- Comment #7 from David Nind <david at davidnind.com> --- WONTFIX maybe, possibly a real edge case having the test data with two 010s. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 08:56:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 06:56:17 +0000 Subject: [Koha-bugs] [Bug 30865] Koha::Biblio->get_components_query should double quote Host-item search In-Reply-To: <bug-30865-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30865-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30865-70-9EeWBZf6LO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30865 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135445|0 |1 is obsolete| | --- Comment #3 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136669 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136669&action=edit Bug 30865: Double-quote Host-item in Koha::Biblio->get_components_query This patch adds double quotes around the term qualified by "Host-item" in Koha::Biblio->get_components_query(). Without them, reserved charactrs like "=" will cause syntax errors like "CCL parsing error (10014) Unknown qualifier ZOOM for query: Host-item=(MyTitle = Mysubtitle) at /usr/share/koha/lib/C4/Search.pm line 245." Test plan: 0) Don't apply the patch 1) Create biblio with title and subtitle like (MyTitle : MySubtitle) 2) Note the warning "There was an error searching for analytic records, please see the logs for details." on the detail page 3) Apply the patch 4) koha-plack --restart kohadev 5) Refresh the detail page 6) Note that the warning message is gone 7) prove t/db_dependent/Koha/Biblio.t Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 08:57:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 06:57:40 +0000 Subject: [Koha-bugs] [Bug 30865] Koha::Biblio->get_components_query should double quote Host-item search In-Reply-To: <bug-30865-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30865-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30865-70-3qRXlivaB5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30865 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |martin.renvoize at ptfs-europe | |.com --- Comment #4 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Thanks for working on this David, my apologies for not getting to testing it as quickly as I should. This works great, a much cleaner solution too. Tested with Zebra and Elastic and as the docs say it works well for both. In the end, this is a trivial patch so I'm going straight for QA. QA script happy, Unit tests passing, No regressions and bug is fixed. Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 08:57:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 06:57:46 +0000 Subject: [Koha-bugs] [Bug 30865] Koha::Biblio->get_components_query should double quote Host-item search In-Reply-To: <bug-30865-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30865-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30865-70-n6Ef3SSwKp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30865 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 09:12:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 07:12:14 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-z5lbrKcWNY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136245|0 |1 is obsolete| | --- Comment #4 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136670 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136670&action=edit Bug 30982: REST API specs Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 09:12:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 07:12:17 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-v3HobGFcTy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136246|0 |1 is obsolete| | --- Comment #5 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136671 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136671&action=edit Bug 30982: Use the REST API for background job list view Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 09:12:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 07:12:21 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-SgX2i7hSu3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 --- Comment #6 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136672 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136672&action=edit Bug 30982: (QA follow-up) Double quoting and console.log This patch fixes the issues highlighted by the QA script; We use double quotes for translatable strings in JS and remove an errant console.log call. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 09:12:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 07:12:49 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-7ibSVpoBw4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Signed Off --- Comment #7 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- This is great, much cleaner! Signing off. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 09:31:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 07:31:38 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-DFd8bDhjxk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 --- Comment #48 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Gone cold again.. to think this one's getting increasingly important with the API getting more and more use. I also think the search_limited stuff could perhaps be expanded further after this to handle things like the special 'allow_owner' access permission. The background jobs list API Jonathan introduces in a recent bug submission hard codes such a filter in the controller.. it's clear and simple but won't carry across should we end up allowing embedding of jobs in other routes in the future. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 10:05:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 08:05:22 +0000 Subject: [Koha-bugs] [Bug 31037] 'borrower_attribute_types' table contains references to invalid category codes In-Reply-To: <bug-31037-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31037-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31037-70-oi8hFC24aH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31037 justanothermate at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #1 from justanothermate at gmail.com --- assigned a value to show_bcode category code (previously empty) upgrade worked after that. resolved for me so far. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 10:22:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 08:22:20 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-H1PCYT1rlx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 --- Comment #8 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Comment on attachment 136671 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136671 Bug 30982: Use the REST API for background job list view Review of attachment 136671: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=30982&attachment=136671) ----------------------------------------------------------------- ::: Koha/REST/V1/BackgroundJobs.pm @@ +43,5 @@ > + my $background_jobs_set = > + $can_manage_background_jobs > + ? Koha::BackgroundJobs->new > + : Koha::BackgroundJobs->search( > + { borrowernumber => $patron->borrowernumber } ); This feels like it should be achievable with the 'allow_owner: true' swagger definition rather than needing special handling here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 10:57:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 08:57:30 +0000 Subject: [Koha-bugs] [Bug 28093] Additional configuration option(s) for Shibboleth-only mode In-Reply-To: <bug-28093-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28093-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28093-70-ShXhvot0Ev@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28093 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=18506 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 10:57:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 08:57:30 +0000 Subject: [Koha-bugs] [Bug 18506] SSO - Shibboleth Only Mode In-Reply-To: <bug-18506-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-18506-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-18506-70-bacSpI25eW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18506 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=28093 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 11:45:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 09:45:02 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-FTaeVUDyK8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 --- Comment #11 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Hm, it could be. I am seeing the issue in 20.11. It would be great if we could limit it down a bit more. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 12:06:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 10:06:51 +0000 Subject: [Koha-bugs] [Bug 31058] New: Bug 17600 follow-up - fix import in auto_unsuspend_holds Message-ID: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 Bug ID: 31058 Summary: Bug 17600 follow-up - fix import in auto_unsuspend_holds Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 12:09:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 10:09:22 +0000 Subject: [Koha-bugs] [Bug 31058] Bug 17600 follow-up - fix import in auto_unsuspend_holds In-Reply-To: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31058-70-dtByaRFKqR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 12:09:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 10:09:25 +0000 Subject: [Koha-bugs] [Bug 31058] Bug 17600 follow-up - fix import in auto_unsuspend_holds In-Reply-To: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31058-70-PKDLW3lc8W@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 --- Comment #1 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136673 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136673&action=edit Bug 31058: Bug 17600 follow-up - import AutoUnsuspendHolds This patch corrects missing import To test: 1 - perl misc/cronjobs/holds/auto_unsuspend_holds.pl 2 - It dies Undefined subroutine &main::AutoUnsuspendReserves called at misc/cronjobs/holds/auto_unsuspend_holds.pl line 38. 3 - Apply patch 4 - run again 5 - It succeeds! -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 12:09:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 10:09:34 +0000 Subject: [Koha-bugs] [Bug 31058] Bug 17600 follow-up - fix import in auto_unsuspend_holds In-Reply-To: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31058-70-hnLWsLaBPC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |17600 Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17600 [Bug 17600] Standardize the EXPORT -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 12:09:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 10:09:34 +0000 Subject: [Koha-bugs] [Bug 17600] Standardize the EXPORT In-Reply-To: <bug-17600-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-17600-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-17600-70-LXCC0paJbm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17600 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31058 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 [Bug 31058] Bug 17600 follow-up - fix import in auto_unsuspend_holds -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 12:23:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 10:23:03 +0000 Subject: [Koha-bugs] [Bug 31054] Manual importing for EDIFACT invoices fails with a 500 error page In-Reply-To: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31054-70-OJ29i6hJCX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31054 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com, | |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 12:24:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 10:24:11 +0000 Subject: [Koha-bugs] [Bug 27685] Syspref OpacSuppression has no effect on the bibliographic detail page In-Reply-To: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27685-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27685-70-r8yyNvTkCu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27685 --- Comment #12 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- > Could the exact problem be detailed? There is not much to detail I think. The record is not turning up in search, but can be accessed by biblionumber link. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 12:24:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 10:24:36 +0000 Subject: [Koha-bugs] [Bug 31054] Manual importing for EDIFACT invoices fails with a 500 error page In-Reply-To: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31054-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31054-70-WQ63IX1YUH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31054 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|21.05 |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 12:46:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 10:46:30 +0000 Subject: [Koha-bugs] [Bug 17805] Add new authority type EVENT_TERM In-Reply-To: <bug-17805-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-17805-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-17805-70-XllLh2wAgJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17805 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com Status|NEW |RESOLVED Resolution|--- |DUPLICATE --- Comment #1 from Nick Clemens <nick at bywatersolutions.com> --- *** This bug has been marked as a duplicate of bug 21958 *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 12:46:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 10:46:30 +0000 Subject: [Koha-bugs] [Bug 21958] _check_valid_auth_link checks too many subfields In-Reply-To: <bug-21958-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-21958-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-21958-70-dman2ds9p5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21958 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |verolencinas at yahoo.com.ar --- Comment #25 from Nick Clemens <nick at bywatersolutions.com> --- *** Bug 17805 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:00:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:00:15 +0000 Subject: [Koha-bugs] [Bug 30838] to_address is misleading for sms transports In-Reply-To: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30838-70-TFsPciLMrd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30838 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:04:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:04:02 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-pYFzCZNunB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |27783 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27783 [Bug 27783] Introduce background job queues -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:04:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:04:02 +0000 Subject: [Koha-bugs] [Bug 27783] Introduce background job queues In-Reply-To: <bug-27783-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27783-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27783-70-QiJQ9bqyf6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27783 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30889 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 [Bug 30889] Background jobs lead to wrong/missing info in logs -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:04:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:04:49 +0000 Subject: [Koha-bugs] [Bug 30654] Even with RabbitMQ enabled, we should poll the database for jobs at worker startup In-Reply-To: <bug-30654-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30654-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30654-70-67EZVVS4NP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30654 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30889 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:04:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:04:49 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-0qnRKn2v3Q@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30654 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:12:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:12:58 +0000 Subject: [Koha-bugs] [Bug 30966] Record Overlay Rules - can't use Z39.50 filter In-Reply-To: <bug-30966-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30966-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30966-70-xCHP6nD3aN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30966 --- Comment #2 from Björn Hellberg <bjornbibblan at gmail.com> --- (In reply to Katrin Fischer from comment #1) > Hi Björn, that's a great hint already - does your coworker want to provide a > patch for this? We are happy to help with the steps! Hi, we've asked our administrators to check if this could be a solution. If it is, we'll ask them if they can provide a patch. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:26:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:26:24 +0000 Subject: [Koha-bugs] [Bug 31055] Move koha-functions to /usr/sbin instead of koha/bin In-Reply-To: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31055-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31055-70-Ts0d8i4hQa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31055 --- Comment #5 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- (In reply to David Cook from comment #4) > Well, koha-functions.sh isn't a command/executable that should be in the > $PATH, so really it shouldn't be in /usr/sbin (or /usr/share/koha/bin > really). > > koha-functions.sh should probably be in /usr/lib/koha or /usr/share/koha/lib > I suppose. Thx David. Yes, you are quite right about that. Pragmatically, I would not mind pushing it along with the real scripts though. And cheatingly we could add some kind of help/usage statement to it, making it a real script too :) The fact that we are storing it in debian/scripts, gave it the .sh extension and copy it to koha/bin does not help either.. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:26:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:26:34 +0000 Subject: [Koha-bugs] [Bug 30931] Handling of items.dateaccessioned in the item editor In-Reply-To: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30931-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30931-70-WlAi0VUXNQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30931 Slava Shishkin <slavashishkin at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|slavashishkin at gmail.com | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:27:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:27:44 +0000 Subject: [Koha-bugs] [Bug 30838] to_address is misleading for sms transports In-Reply-To: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30838-70-F4kQCvDcx8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30838 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:27:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:27:49 +0000 Subject: [Koha-bugs] [Bug 30838] to_address is misleading for sms transports In-Reply-To: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30838-70-wJEAQ0uzqo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30838 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135298|0 |1 is obsolete| | Attachment #135299|0 |1 is obsolete| | --- Comment #5 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136674 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136674&action=edit Bug 30838: Don't fallback through phone numbers for sms This patch removes the fallback handling for smsalartnumber as the to_address in notices. We ignore the to_address field in the message queue at send time for sms anyway and use smsalertnumber exclusively so having this field populated is just confusing to the end user Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:28:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:28:02 +0000 Subject: [Koha-bugs] [Bug 30838] to_address is misleading for sms transports In-Reply-To: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30838-70-BmuGvqL1vw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30838 --- Comment #6 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136675 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136675&action=edit Bug 30838: Set to_address to smsalertnumber at send It may be helpful to know exactly what number was used for the sms alert that was sent. As such, we should ensure it's set at the time of sending. Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:28:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:28:07 +0000 Subject: [Koha-bugs] [Bug 30838] to_address is misleading for sms transports In-Reply-To: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30838-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30838-70-tBo5pKaoyP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30838 --- Comment #7 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136676 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136676&action=edit Bug 30838: (QA Follow-up) Add missing semicolon Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:31:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:31:55 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-tp0k8CIoAy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 --- Comment #18 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136677 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136677&action=edit Bug 30677: Cleanup This patch cleans up the regular expression to remove the superflous double check and use standard delimiters -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:32:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:32:27 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-VOsPlv95r7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|Small patch |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:33:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:33:42 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-1RF0r46WP7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:36:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:36:35 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-Gy6aYqKRhG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #3 from Owen Leonard <oleonard at myacpl.org> --- This didn't work at first when using my own test data. I got this error: Can't call method "replacementprice" on an undefined value at /kohadevbox/koha/Koha/Patron.pm line 2206 It seems to come from there being lines in old_issues where the itemnumber is null. I'm not sure if that's normal or not. The only other issue I have is that I don't think "do not display anywhere on the OPAC" should be one of the preference options. It's contradictory to be able to select that *and* the other options. Users can select no options if they want the information not to appear. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:37:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:37:30 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-YSMmHsaGdB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 --- Comment #19 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Will have a look right now ;) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:56:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:56:36 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-OFVeKuLs04@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:56:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:56:40 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-D7OhA3nRRN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134900|0 |1 is obsolete| | --- Comment #20 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136678 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136678&action=edit Bug 30677: Add tests Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:56:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:56:44 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-QmnmaZCsRI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134901|0 |1 is obsolete| | --- Comment #21 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136679 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136679&action=edit Bug 30677: Use lookahead in regex for biblioitem replacement This patch takes Andrew's suggested fix using a lookahead regex to correct our biblio vs biblioitem table name replacements. Please use the preceeding unit test patch proposed by Jonathan to test. Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 13:56:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 11:56:48 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-44T8UHGoeM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136677|0 |1 is obsolete| | --- Comment #22 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136680 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136680&action=edit Bug 30677: Cleanup This patch cleans up the regular expression to remove the superflous double check and use standard delimiters Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:11:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:11:46 +0000 Subject: [Koha-bugs] [Bug 30196] Odd number of elements warning caused by dt_from_string In-Reply-To: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30196-70-2dDePicvkl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha at gmail. | |com --- Comment #7 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Instead use: output_pref({ str => $serinfo->{$d}, dateonly => 1 }) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:12:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:12:50 +0000 Subject: [Koha-bugs] [Bug 30196] Odd number of elements warning caused by dt_from_string In-Reply-To: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30196-70-6cZCjglwcL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #8 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- % perlcritic Koha/DateUtils.pm "return" statement with explicit "undef" at line 61, column 5. See page 199 of PBP. (Severity: 5) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:24:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:24:30 +0000 Subject: [Koha-bugs] [Bug 30708] Creation of a new 'Preservation' module In-Reply-To: <bug-30708-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30708-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30708-70-xxH1lSc7Be@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30708 Julien Donadille <julien.donadille at bulac.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |julien.donadille at bulac.fr -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:24:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:24:40 +0000 Subject: [Koha-bugs] [Bug 30708] Creation of a new 'Preservation' module In-Reply-To: <bug-30708-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30708-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30708-70-dYtvBwNmVl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30708 Cécile Gobbo <cecile.gobbo at bulac.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cecile.gobbo at bulac.fr -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:24:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:24:55 +0000 Subject: [Koha-bugs] [Bug 30708] Creation of a new 'Preservation' module In-Reply-To: <bug-30708-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30708-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30708-70-s1VDif2HbO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30708 mathilde.marechal at bulac.fr changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mathilde.marechal at bulac.fr -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:24:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:24:55 +0000 Subject: [Koha-bugs] [Bug 30708] Creation of a new 'Preservation' module In-Reply-To: <bug-30708-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30708-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30708-70-lJawIiP6ia@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30708 mathilde.marechal at bulac.fr changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mathilde.marechal at bulac.fr Saïra Munir Qureshi <saira.munir-qureshi at bulac.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |saira.munir-qureshi at bulac.f | |r -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:29:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:29:40 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-lhCMmE2GpM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |17600 CC| |tomascohen at gmail.com Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17600 [Bug 17600] Standardize the EXPORT -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:29:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:29:40 +0000 Subject: [Koha-bugs] [Bug 17600] Standardize the EXPORT In-Reply-To: <bug-17600-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-17600-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-17600-70-1FIYbRORU2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17600 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30939 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 [Bug 30939] remove_unused_authorities.pl is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:33:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:33:23 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-BtOkMIw9mW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 --- Comment #6 from Tomás Cohen Arazi <tomascohen at gmail.com> --- (In reply to Fridolin Somers from comment #5) > How could be search for thoses ? > > I try : > git grep 'use C4::.*;' | egrep -v '^(C4|Koha|t)/' | egrep -v 'qw ?(\(|/)' | > grep -v Context > > If found for example : > tools/batch_delete_records.pl:use C4::AuthoritiesMarc; > > Is it a correct match ? Nope. Because the script is using fully-qualified method names (e.g. C4::AuthoritiesMarc::GetAuthority( $record_id ) ) so not importing the function names into the package scope is not a real issue. We need to check that C4::AuthoritiesMarc defines a method that is used in a script. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:34:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:34:46 +0000 Subject: [Koha-bugs] [Bug 31058] Bug 17600 follow-up - fix import in auto_unsuspend_holds In-Reply-To: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31058-70-ZI4iaJwCtg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:34:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:34:51 +0000 Subject: [Koha-bugs] [Bug 31058] Bug 17600 follow-up - fix import in auto_unsuspend_holds In-Reply-To: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31058-70-GuTy2bjoXG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136673|0 |1 is obsolete| | --- Comment #2 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136681 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136681&action=edit Bug 31058: Bug 17600 follow-up - import AutoUnsuspendHolds This patch corrects missing import To test: 1 - perl misc/cronjobs/holds/auto_unsuspend_holds.pl 2 - It dies Undefined subroutine &main::AutoUnsuspendReserves called at misc/cronjobs/holds/auto_unsuspend_holds.pl line 38. 3 - Apply patch 4 - run again 5 - It succeeds! Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:38:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:38:50 +0000 Subject: [Koha-bugs] [Bug 31058] Bug 17600 follow-up - fix import in auto_unsuspend_holds In-Reply-To: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31058-70-TEjPXm44n3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com Status|Signed Off |Passed QA --- Comment #3 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Straight QA. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:39:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:39:15 +0000 Subject: [Koha-bugs] [Bug 31058] Bad import in auto_unsuspend_holds In-Reply-To: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31058-70-lw8Ex49mlY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Bug 17600 follow-up - fix |Bad import in |import in |auto_unsuspend_holds |auto_unsuspend_holds | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:41:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:41:19 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-nyQuSQczq1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:41:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:41:22 +0000 Subject: [Koha-bugs] [Bug 30677] Unknown column 'biblioitem.title' in 'where clause' 500 error in API /api/v1/acquisitions/orders In-Reply-To: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30677-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30677-70-YX5qllAaiV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30677 --- Comment #23 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:41:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:41:25 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-SyxBkPoHmO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:41:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:41:27 +0000 Subject: [Koha-bugs] [Bug 30939] remove_unused_authorities.pl is broken In-Reply-To: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30939-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30939-70-RGz6LYQ4th@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30939 --- Comment #7 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:41:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:41:30 +0000 Subject: [Koha-bugs] [Bug 31058] Bad import in auto_unsuspend_holds In-Reply-To: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31058-70-2stZC1bNbY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |22.11.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:41:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:41:32 +0000 Subject: [Koha-bugs] [Bug 31058] Bad import in auto_unsuspend_holds In-Reply-To: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31058-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31058-70-zT3veKUysb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31058 --- Comment #4 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:45:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:45:21 +0000 Subject: [Koha-bugs] [Bug 31059] New: encryption_key config entry not generated when upgrading Message-ID: <bug-31059-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31059 Bug ID: 31059 Summary: encryption_key config entry not generated when upgrading Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: jonathan.druart+koha at gmail.com QA Contact: testopia at bugs.koha-community.org It's required for 2FA (from bug 28786) but it's not added to koha-conf.xml when upgrading. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:45:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:45:34 +0000 Subject: [Koha-bugs] [Bug 31059] encryption_key config entry not generated when upgrading In-Reply-To: <bug-31059-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31059-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31059-70-01rHtq5LhA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31059 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=28911 Depends on| |28786 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28786 [Bug 28786] Two-factor authentication for staff client - TOTP -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:45:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:45:34 +0000 Subject: [Koha-bugs] [Bug 28786] Two-factor authentication for staff client - TOTP In-Reply-To: <bug-28786-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28786-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28786-70-nmhv5XidaT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28786 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31059 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31059 [Bug 31059] encryption_key config entry not generated when upgrading -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 14:45:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 12:45:34 +0000 Subject: [Koha-bugs] [Bug 28911] Bcrypt settings are required for pseudonymization but are not set on upgrade In-Reply-To: <bug-28911-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28911-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28911-70-xOnmNoMc0K@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28911 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=31059 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 15:02:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 13:02:05 +0000 Subject: [Koha-bugs] [Bug 30196] Odd number of elements warning caused by dt_from_string In-Reply-To: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30196-70-oZtehuIfoe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 --- Comment #9 from Blou <philippe.blouin at inlibro.com> --- Which relate to https://metacpan.org/pod/Perl::Critic::Policy::Subroutines::ProhibitExplicitReturnUndef which I find the explanation funny. Yes, you might screw up boolean tests with returning an undef. But this bug here demonstrate you can screw up hash creation. Anyway, I have no problem using a standard. But your solution avoids the problem while not fixing it. Aren't you afraid somewhere someone will use it again the same way ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 15:22:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 13:22:02 +0000 Subject: [Koha-bugs] [Bug 30196] Odd number of elements warning caused by dt_from_string In-Reply-To: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30196-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30196-70-85a0JfbXsm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30196 --- Comment #10 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- We are trying to pass perlcritic, and it's a good idea to stick to it. We can easily workaround it, either using 'str' instead of 'dt' or adding 'scalar' to force the context. I wouldn't bother fixing this bug because: * There is bug 30718, and it would be way more interesting to work on it, and it should fix/remove most of the occurrences. * You shouldn't have 0000-00-00 dates anymore in your DB (how did it happen?). This is a bug or a config issue on itself. I stopped being afraid of Koha code, I sleep better now :D -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 15:50:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 13:50:33 +0000 Subject: [Koha-bugs] [Bug 29632] Callnumber sorting is incorrect in Elasticsearch In-Reply-To: <bug-29632-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29632-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29632-70-UhXFlqFOek@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29632 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 15:50:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 13:50:36 +0000 Subject: [Koha-bugs] [Bug 29632] Callnumber sorting is incorrect in Elasticsearch In-Reply-To: <bug-29632-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29632-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29632-70-ZF4lfVXBrq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29632 --- Comment #3 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136682 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136682&action=edit Bug 29632: Don't sort cn-sort numerically When defining our sort fields in we defined all as 'numeric' For other string containing numbers this is likely correct, however, for callnumbers it is not. e.g. E45 should sort before E7 This patch adds a new 'callnumber' type and deifnes this for cn-sort and adds to the field maping a sort without numeric set To test: 0 - Be using ES with Koha 1 - On records with single item, add callnumbers: VA65 E7 R63 1984 VA65 E7 T35 1990 VA65 E45 R67 1985 2 - Add public note 'shrimp' or something to make them easily searchable as a group 3 - Search for 'shrimp', sort by callnumber 4 - Note E45 comes last, it should come first 5 - Apply patch 6 - Reset ES mappings 7 - Reindex ES 8 - Repeat search 9 - Sorting should be correct when set to callnumber -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 16:01:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 14:01:19 +0000 Subject: [Koha-bugs] [Bug 26247] Search terms retained in header search creates UX inconsistency In-Reply-To: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26247-70-dkXyAG6p5e@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26247 Florian <florian.bontemps at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 16:01:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 14:01:33 +0000 Subject: [Koha-bugs] [Bug 26247] Search terms retained in header search creates UX inconsistency In-Reply-To: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26247-70-9s38aR5id9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26247 --- Comment #35 from Florian <florian.bontemps at biblibre.com> --- Created attachment 136683 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136683&action=edit Bug 26247: Adding two Sysprefs for Search Terms This patch adds two system preferences options : 'RetainCatalogSearchTerms' and 'RetainPatronsSearchTerms'. If enabled, search terms will be retained between searches made from, respectively, the Search Catalog header and the Checkout or Search Patrons headers. If disabled, the searchbars will clear out between page loads. To test: 1 - From the staff client, search some terms using the Check out header search bar. 2 - Confirm search terms are retained. 3 - Do Step 1-2 twice again, this time using the Search patrons and Search the catalog. 4 - Apply patch, update database. 5 - In the system preferences, look for RetainCatalogSearchTerms and set it to 'don't retain'. 6 - Use the checkout head search bar again, confirm that search terms aren't retained after page load. 7 - Do Step 5-6 once again, this time with the RetainPatronsSearchTerms and the Search Patrons and Search the catalog headers. 8 - Search boxes should be cleared. Thanks-to: Fridolin Somers and Nick Clemens for the bases I built on -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 16:22:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 14:22:45 +0000 Subject: [Koha-bugs] [Bug 25711] Move ExpireReservesMaxPickUpDelayCharge to the circulation rules In-Reply-To: <bug-25711-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25711-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25711-70-xWdPoWHOPP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25711 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com --- Comment #66 from Tomás Cohen Arazi <tomascohen at gmail.com> --- I agree with this 99%. But it is missing the 'Move' part. I think we should: 1. Migrate the syspref value into a global default using an atomicupdate 2. Delete the syspref 3. Adapt the code that uses the syspref (git grep ExpireReservesMaxPickUpDelayCharge) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:03:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:03:49 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-nHpVVDXpg0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #128688|0 |1 is obsolete| | --- Comment #49 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136684 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136684&action=edit Bug 29523: Add Koha::Objects->search_limited stub method This method is just a passthru to the search method. It is defined here to avoid the need to check if each class implements it. Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:03:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:03:54 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-pZlA95McIr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #128689|0 |1 is obsolete| | --- Comment #50 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136685 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136685&action=edit Bug 29523: Add Koha::Object->accessible This patch introduces a method for checking if an object can be retrieved by the current user. It depends on the plural class implementation of the ->search_limited method. To test: 1. Apply this patch 2. Run: $ kshell k$ prove t/db_dependent/Koha/Object.t => SUCCESS: Tests pass! 3. Sign off :-D Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:03:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:03:59 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-Ft66LDQxMJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #128690|0 |1 is obsolete| | --- Comment #51 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136686 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136686&action=edit Bug 29523: Regression tests Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:04:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:04:05 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-WuZgRee39J@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #128691|0 |1 is obsolete| | --- Comment #52 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136687 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136687&action=edit Bug 29523: Make Koha::Object->to_api respect accessibility This patch makes the *to_api* method honour the accessibility check for the object. This is relevant in the context of embedding single objects. The Koha::Patron->to_api method is adjusted to reflect this behavior as well (it does some manipulation after the ->to_api call and we need to prevent it). To test: 1. Apply up to the regression tests 2. Run: $ kshell k$ prove t/db_dependent/Koha/Object.t => FAIL: A patron, that shouldn't be accessed, is returned by ->to_api 3. Apply this patch 4. Repeat 2 => SUCCESS: Tests pass! 6. Pick Henry Acevedo from the sample data, assign him 'catalogue' permissions and a know user/password combination 7. Enable basic authentication 8. Point your favourite tool (Postman?) to GET http://kohadev-intra.myDNSname.org:8081/api/v1/biblio/245/checkouts Set the following header: x-koha-embed: patron Pick whatever biblio you want, actually. => SUCCESS: No checkouts 9. Perform a couple checkouts on the chosen biblio. Make sure one checkout is for a patron on the same library as Henry, and the other on a different one. 10. Repeat 8 => SUCCESS: You see two checkouts. One of them has an attribute 'patron' containing the patron from Henry's library. The other, has the attribute set to 'null'. 11. Sign off :-D Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:04:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:04:11 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-km9qtkd6Xw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #128692|0 |1 is obsolete| | --- Comment #53 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136688 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136688&action=edit Bug 29523: (QA follow-up) Catch remaining SUPER::to_api cases Koha::Object->to_api can now return undefined.. we should be catching that cases in all post manipulation cases. Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:04:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:04:16 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-GpvYllGR5O@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #128693|0 |1 is obsolete| | --- Comment #54 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136689 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136689&action=edit Bug 29523: (QA follow-up) Fix failing test in club holds With this patch series, all singular objects need to 'use' their plural counterparts.. otherwise the parent can't find search_related. Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:04:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:04:20 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-QgxeolLCWi@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131331|0 |1 is obsolete| | --- Comment #55 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136690 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136690&action=edit Bug 29523: Pass the logged user around and use for validating In this patch I add 'user', containing the Koha::Patron object for the logged in user in the params hash we pass around in to_api. I then use that in a new 'is_accessible' method added to Koha::Patron. The new method is really the equivilent of 'search_limited' in the plural class and could perhaps be renamed 'is_limited' or something clearer for the singular form 'is_filtered' or 'fitler_for_api' or something? Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:04:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:04:25 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-3HsDeqHjla@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131332|0 |1 is obsolete| | --- Comment #56 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136691 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136691&action=edit Bug 29523: Cache the restricted branches list This patch introduces a very localised cache of the restricted branches list in the logged in patron object. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:04:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:04:30 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-sBjIf9GgzA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 --- Comment #57 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136692 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136692&action=edit Bug 29523: Remove the FIXME This patch works through the unit tests and existing code to allow removal of the FIXME I introduced earlier in the patchset. We now require the current user object to be passed into the to_api and subsequent is_accessible method. This is a change to the method signature for the Koha::Patron case and results in use needing to add the user parameter in some unexpected locations (like update and add methods as they use to_api internally for the response). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:05:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:05:43 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-wuVIbwVgtR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:07:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:07:30 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-CK1JyDzRc7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 --- Comment #58 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Rebased and ready to go. The final patch is the removal of a FIXME I introduced in a prior patch in the series.. It's certainly the more secure way of doing it, requiring the user is passed in.. but it does introduce some slight peculiarities in some methods where we call to_api already. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:14:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:14:34 +0000 Subject: [Koha-bugs] [Bug 29275] Use the API to render checkout history for a biblio In-Reply-To: <bug-29275-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29275-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29275-70-qvfnUT9AVr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29275 --- Comment #35 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- OK, this needs another rebase and there's a bit more to it this time so I think I need to defer to you Tomas. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:14:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:14:50 +0000 Subject: [Koha-bugs] [Bug 29275] Use the API to render checkout history for a biblio In-Reply-To: <bug-29275-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29275-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29275-70-3P3HVHGIbT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29275 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:14:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:14:55 +0000 Subject: [Koha-bugs] [Bug 29275] Use the API to render checkout history for a biblio In-Reply-To: <bug-29275-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29275-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29275-70-EmAtYtJPfk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29275 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 18:27:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 16:27:52 +0000 Subject: [Koha-bugs] [Bug 29051] Seen renewal methods incorrectly blocked In-Reply-To: <bug-29051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29051-70-VkMtHNZcgU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29051 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 20:02:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 18:02:42 +0000 Subject: [Koha-bugs] [Bug 22042] BlockReturnofWithdrawn Items does not block refund generation when item is withdrawn and lost In-Reply-To: <bug-22042-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22042-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22042-70-EJa5ISR0yy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22042 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133123|0 |1 is obsolete| | --- Comment #6 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136693 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136693&action=edit Bug 22042: Block all return actions when BlockReturnOfWithdrawn items is set to block Currently this syspref only bokcs the literal 'return' from a patron, i.e. the checkin It still processes transfers, refunds lost items, updates NotForLoan status etc. We should block all of these things To test: 1 - Set BlockReturnOfWithdrawn to block 2 - Set an item as lost and withdrawn 3 - Check it in 4 - Item is found 5 - Apply patch 6 - Repeat 1-3 7 - Checkin is blocked, item still lost Signed-off-by: Michal Urban <michalurban177 at gmail.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 20:03:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 18:03:23 +0000 Subject: [Koha-bugs] [Bug 22042] BlockReturnofWithdrawn Items does not block refund generation when item is withdrawn and lost In-Reply-To: <bug-22042-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22042-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22042-70-yUImQwk6Z1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22042 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |michalurban177 at gmail.com Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 21:36:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 19:36:32 +0000 Subject: [Koha-bugs] [Bug 31060] New: Fine duplicates when returning item with accountline status marked as lost Message-ID: <bug-31060-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31060 Bug ID: 31060 Summary: Fine duplicates when returning item with accountline status marked as lost Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Fines and fees Assignee: koha-bugs at lists.koha-community.org Reporter: shi-yao.wang at inLibro.com QA Contact: testopia at bugs.koha-community.org To recreate: 1- System preferences: finesMode: Calculate and charge CalculateFinesOnReturn: Do WhenLostChargeReplacementFee: Don't charge MarkLostItemsAsReturned: uncheck from the items tab of the catalog module 2- Have a circulation rule with defined non-zero Fine amount and Fine charging interval. (Will have to use the patron category and item type associated to this circulation rule to test) 3- Checkout a document from the patron with backdated due date (backdated enough depending on the Fine charging interval set) 4- Run ./misc/cronjobs/fines.pl 5- There should be a Fine(Accruing) in accounting tab of the patron 6- Go to the checked out item detail and set Lost status: Long overdue (Lost) and click Set status 7- Now, Fine(Accruing) changed to Fine(Lost) in the accounting tab of the patron 8- In item detail, set Lost status: Choose and click Set status 9- Notice Fine(Lost) did not switch back to Fine(Accruing) in the accounting tab 10- Check in the item 11- Notice there is a duplicate fee Fine(Returned) and Fine(Lost) is still there -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 21:36:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 19:36:51 +0000 Subject: [Koha-bugs] [Bug 31060] Fine duplicates when returning item with accountline status marked as lost In-Reply-To: <bug-31060-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31060-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31060-70-IkHCrOEjaC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31060 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |shi-yao.wang at inLibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 21:42:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 19:42:38 +0000 Subject: [Koha-bugs] [Bug 31061] New: OPACSuppress does not work properly with Elasticsearch Message-ID: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31061 Bug ID: 31061 Summary: OPACSuppress does not work properly with Elasticsearch Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Searching - Elasticsearch Assignee: koha-bugs at lists.koha-community.org Reporter: fridolin.somers at biblibre.com OPACSuppress is system preference to hide records in OPAC search by adding a limit in search query. With Zebra, this limit is : not Suppress=1 https://git.koha-community.org/Koha-community/Koha/src/commit/244b847a08bf61a747a1e4be4eed86cc776eabd6/Koha/SearchEngine/Zebra/QueryBuilder.pm#L83 With Elasticsearch this limit is currently quite different : suppress:false https://git.koha-community.org/Koha-community/Koha/src/commit/244b847a08bf61a747a1e4be4eed86cc776eabd6/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm#L286 Main problem is that in default framework we define Suppress search field on 942$n with authorized values YES_NO. This generates records with 1 for YES and 0 for NO. But a boolean for Elasticsearch is not a perl boolean. So only missing subfield means false : https://www.elastic.co/guide/en/elasticsearch/reference/6.8/boolean.html Records with 0 are hidden ! Another side-effect : We whould like to have several MARC fields with 'suppress' search field. To distinguish several causes of hidden at OPAC. Any of those fields having 1 must hide at OPAC. So syntax 'NOT(suppress:1)' is more correct. I propose we change to have the same behavior as Zebra. Change 'suppress' search field to not remove boolean type. Change QueryBuilder to use 'NOT(suppress:1)'. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 21:42:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 19:42:43 +0000 Subject: [Koha-bugs] [Bug 31061] OPACSuppress does not work properly with Elasticsearch In-Reply-To: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31061-70-NtKhocTlQd@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31061 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |23676 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23676 [Bug 23676] Elasticsearch - 0 is not a valid boolean for suppress -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 21:42:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 19:42:43 +0000 Subject: [Koha-bugs] [Bug 23676] Elasticsearch - 0 is not a valid boolean for suppress In-Reply-To: <bug-23676-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23676-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23676-70-oYb1qoFoF7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23676 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31061 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31061 [Bug 31061] OPACSuppress does not work properly with Elasticsearch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 21:42:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 19:42:58 +0000 Subject: [Koha-bugs] [Bug 31061] OPACSuppress does not work properly with Elasticsearch In-Reply-To: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31061-70-3Qwd8kZwoc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31061 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|koha-bugs at lists.koha-commun |fridolin.somers at biblibre.co |ity.org |m -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 21:59:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 19:59:36 +0000 Subject: [Koha-bugs] [Bug 31060] Fine duplicates when returning item with accountline status marked as lost In-Reply-To: <bug-31060-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31060-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31060-70-W7DNtLgeVx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31060 --- Comment #1 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136694 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136694&action=edit Bug 31060: Fine duplicates when returning item with accountline status marked as lost Fine duplicates when returning an overdue item with Fine(Lost) fee. To test: 1- System preferences: finesMode: Calculate and charge CalculateFinesOnReturn: Do WhenLostChargeReplacementFee: Don't charge MarkLostItemsAsReturned: uncheck from the items tab of the catalog module 2- Have a circulation rule with defined non-zero Fine amount and Fine charging interval. (Will have to use the patron category and item type associated to this circulation rule to test) 3- Checkout a document from the patron with backdated due date (backdated enough depending on the Fine charging interval set) 4- Run ./misc/cronjobs/fines.pl 5- There should be a Fine(Accruing) in accounting tab of the patron 6- Go to the checked out item detail and set Lost status: Long overdue (Lost) and click Set status 7- Now, Fine(Accruing) changed to Fine(Lost) in the accounting tab of the patron 8- In item detail, set Lost status: Choose and click Set status 9- Notice Fine(Lost) did not switch back to Fine(Accruing) in the accounting tab 10- Check in the item 11- Notice there is a duplicate fee Fine(Returned) and Fine(Lost) is still there 12- Apply the patch 13- Write off all fines of the patron 14- Repeat step 3 to 10 15- Notice there is only Fine(Lost) and no duplicate -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:21:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:21:50 +0000 Subject: [Koha-bugs] [Bug 31061] OPACSuppress does not work properly with Elasticsearch In-Reply-To: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31061-70-jEC4gJfpbh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31061 --- Comment #1 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136695 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136695&action=edit Bug 31061: Fix test suite -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:21:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:21:54 +0000 Subject: [Koha-bugs] [Bug 31061] OPACSuppress does not work properly with Elasticsearch In-Reply-To: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31061-70-fJKs6KTciU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31061 --- Comment #2 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136696 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136696&action=edit Bug 31061: Change type of suppress in Elasticsearch mappings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:21:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:21:57 +0000 Subject: [Koha-bugs] [Bug 31061] OPACSuppress does not work properly with Elasticsearch In-Reply-To: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31061-70-9rnjoawcW4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31061 --- Comment #3 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136697 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136697&action=edit Bug 31061: OPACSuppress does not work properly with Elasticsearch OPACSuppress is system preference to hide records in OPAC search by adding a limit in search query. With Zebra, this limit is : not Suppress=1 https://git.koha-community.org/Koha-community/Koha/src/commit/244b847a08bf61a747a1e4be4eed86cc776eabd6/Koha/SearchEngine/Zebra/QueryBuilder.pm#L83 With Elasticsearch this limit is currently quite different : suppress:false https://git.koha-community.org/Koha-community/Koha/src/commit/244b847a08bf61a747a1e4be4eed86cc776eabd6/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm#L286 Main problem is that in default framework we define Suppress search field on 942$n with authorized values YES_NO. This generates records with 1 for YES and 0 for NO. But a boolean for Elasticsearch is not a perl boolean. So only missing subfield means false : https://www.elastic.co/guide/en/elasticsearch/reference/6.8/boolean.html Records with 0 are hidden ! Another side-effect : We whould like to have several MARC fields with 'suppress' search field. To distinguish several causes of hidden at OPAC. Any of those fields having 1 must hide at OPAC. So syntax 'NOT(suppress:1)' is more correct. I propose we change to have the same behavior as Zebra. Change 'suppress' search field to not remove boolean type. Change QueryBuilder to use 'NOT(suppress:1)'. Test plan : 1) Use search engine Elasticsearch 2) Disable system preference OpacSuppression 3) Search in OPAC for all records : '*:*' => Note how many results 4) Enable system preference OpacSuppression 5) Edit a biblio record with 942$n set to YES 6) Search in OPAC for all records : '*:*' => Note how many results, you should have 1 less than 3) 7) Edit a biblio record with 942$n set to NO 8) Search in OPAC for all records : '*:*' => Note how many results, you should have same number as 3) 9) Edit a biblio record to remove 942$n 10) Search in OPAC for all records : '*:*' => Note how many results, you should have same number as 3) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:22:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:22:14 +0000 Subject: [Koha-bugs] [Bug 31061] OPACSuppress does not work properly with Elasticsearch In-Reply-To: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31061-70-kWpuJgdh6h@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31061 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:22:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:22:20 +0000 Subject: [Koha-bugs] [Bug 31061] OPACSuppress does not work properly with Elasticsearch In-Reply-To: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31061-70-vnYs6bv9bV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31061 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:32:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:32:06 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-BPthqKgrQB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 --- Comment #4 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Sorry the first patch is a mistake, I seem to have missed attaching the correct one. Will fix -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:34:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:34:38 +0000 Subject: [Koha-bugs] [Bug 31060] Fine duplicates when returning item with accountline status marked as lost In-Reply-To: <bug-31060-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31060-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31060-70-Shhp9kRy16@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31060 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:35:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:35:35 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-qwAbHkrd65@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:35:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:35:39 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-ztpMA65PpP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 --- Comment #5 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Created attachment 136698 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136698&action=edit Bug 31051: Add OPACShowSavings system preference -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:35:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:35:43 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-R4olGWTnAu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136664|0 |1 is obsolete| | --- Comment #6 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Created attachment 136699 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136699&action=edit Bug 31051: Show patron savings on the OPAC This new feature shows a patron how much they have saved by using the library rather than purchasing items. Savings are calculated based on item replacement prices. The system preference allows you to choose where to display the savings - the user page, the summary box on the OPAC homepage, or the checkout history page. To test: 1. Update database and restart services 2. Confirm the new OPACShowSavings system preference is found in the OPAC tab of Administration -> global system preferences. There should be no options selected. 3. Find a patron with a checkout history, or check out a few items to a patron. 4. Test with different values of OPACShowSavings and confirm that savings are shown in the expected places. Sponsored-by: Horowhenua Libraries Trust -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:36:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:36:57 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-zLySsU7406@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136564|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 22:58:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 20:58:31 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-TtknbReHIN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com --- Comment #9 from Lucas Gass <lucas at bywatersolutions.com> --- Any chance of getting this moving again? It makes using a external stylesheet nearly impossible in 2022, as most things are https. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 23:18:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 21:18:51 +0000 Subject: [Koha-bugs] [Bug 31060] Fine duplicates when returning item with accountline status marked as lost In-Reply-To: <bug-31060-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31060-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31060-70-VR3kLjZKSY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31060 --- Comment #2 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Actually, unit tests doesn't seem happy with this: prove t/db_dependent/Circulation.t >t/db_dependent/Circulation.t .. 17/61 # No tests run! >t/db_dependent/Circulation.t .. 18/61 ># Failed test 'No tests run for subtest "GetUpcomingDueIssues"' ># at t/db_dependent/Circulation.t line 1594. >Exception 'Koha::Exceptions::Account::UnrecognisedType' thrown 'Update type not >allowed on this debit_type' ># Looks like your test exited with 255 just after 18. >t/db_dependent/Circulation.t .. Dubious, test returned 255 (wstat 65280, 0xff00) >Failed 44/61 subtests Maybe a better solution is to make accountlines with status=LOST to switch back to UNRETURNED at step 9. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 23:34:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 21:34:26 +0000 Subject: [Koha-bugs] [Bug 31062] New: Change description of QOTD tool in tools-home Message-ID: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Bug ID: 31062 Summary: Change description of QOTD tool in tools-home Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Tools Assignee: koha-bugs at lists.koha-community.org Reporter: caroline.cyr-la-rose at inlibro.com QA Contact: testopia at bugs.koha-community.org In the tools home page, the description for the QOTD tool currently says "Quote editor for Quote-of-the-day feature in OPAC". This feature was extended to the staff interface in bug 16371. Also, this is the only(?) tool whose title is an action and description is a noun. I would switch them. Tool title: Quote editor for 'Quote of the day' feature Description: Edit quotes for the 'Quote of the day' feature in OPAC and staff interface That way, it would be more constant with the other tool names and descriptions. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 23:39:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 21:39:13 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-axAyfozbqT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |String patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 23:39:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 21:39:16 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-yjWrrTVeat@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 --- Comment #1 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Created attachment 136700 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136700&action=edit Bug 31062: Change description of QOTD tool in tools-home This patch changes the name and description of the QOTD tool in order to make them more constant with the other tool names and descriptions, and to include the fact that QOTD can now be used in the staff interface as well as the OPAC. To test: 1) Go to Tools 2) Read the QOTD tool name and description, make sure they make sense and that there are no typos 3) Test the link to make sure it goes to the tool -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 23:40:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 21:40:11 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-wBmpeLmmlR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This patch changes the name release notes| |and description of the QOTD | |tool in order to make them | |more constant with the | |other tool names and | |descriptions, and to | |include the fact that QOTD | |can now be used in the | |staff interface as well as | |the OPAC. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 23:40:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 21:40:20 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-za70sZ8J2f@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |caroline.cyr-la-rose at inlibr |ity.org |o.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 23:40:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 21:40:39 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-t9PavjCxQY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This patch changes the name |This enhancement changes release notes|and description of the QOTD |the name and description of |tool in order to make them |the QOTD tool in order to |more constant with the |make them more constant |other tool names and |with the other tool names |descriptions, and to |and descriptions, and to |include the fact that QOTD |include the fact that QOTD |can now be used in the |can now be used in the |staff interface as well as |staff interface as well as |the OPAC. |the OPAC. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Jun 28 23:41:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 28 Jun 2022 21:41:10 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-8uJjY2uJCN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This enhancement changes |This enhancement changes release notes|the name and description of |the name and description of |the QOTD tool in order to |the QOTD tool in order to |make them more constant |make them more consistent |with the other tool names |with the other tool names |and descriptions, and to |and descriptions, and to |include the fact that QOTD |include the fact that QOTD |can now be used in the |can now be used in the |staff interface as well as |staff interface as well as |the OPAC. |the OPAC. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 02:07:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 00:07:02 +0000 Subject: [Koha-bugs] [Bug 26247] Search terms retained in header search creates UX inconsistency In-Reply-To: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26247-70-2Og4NRvNYj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26247 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |david at davidnind.com --- Comment #36 from David Nind <david at davidnind.com> --- Patch no longer applies: Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 26247: Make retaining search terms in staff client optional Using index info to reconstruct a base tree... M catalogue/search.pl M installer/data/mysql/mandatory/sysprefs.sql M installer/data/mysql/updatedatabase.pl M koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref Falling back to patching base and 3-way merge... Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref Auto-merging installer/data/mysql/updatedatabase.pl Auto-merging installer/data/mysql/mandatory/sysprefs.sql Auto-merging catalogue/search.pl Applying: Bug 26247: Consolidate search box code .git/rebase-apply/patch:170: trailing whitespace. </form> .git/rebase-apply/patch:217: trailing whitespace. </form> .git/rebase-apply/patch:242: trailing whitespace. </form> warning: 3 lines add whitespace errors. Using index info to reconstruct a base tree... M koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/cataloging-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/circ-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/contracts-admin-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/currencies-admin-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/letters-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/patrons-admin-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/prefs-admin-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/serials-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/suggestions-add-search.inc M koha-tmpl/intranet-tmpl/prog/en/includes/z3950-admin-search.inc .git/rebase-apply/patch:170: trailing whitespace. </form> .git/rebase-apply/patch:217: trailing whitespace. </form> .git/rebase-apply/patch:242: trailing whitespace. </form> warning: 3 lines add whitespace errors. Falling back to patching base and 3-way merge... Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/z3950-admin-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/z3950-admin-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/suggestions-add-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/suggestions-add-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/serials-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/serials-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/prefs-admin-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/prefs-admin-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/patrons-admin-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/letters-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/letters-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/currencies-admin-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/currencies-admin-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/contracts-admin-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/contracts-admin-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/circ-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/circ-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/cataloging-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/cataloging-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc Auto-merging koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-search.inc CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-search.inc error: Failed to merge in the changes. Patch failed at 0001 Bug 26247: Consolidate search box code -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 02:26:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 00:26:59 +0000 Subject: [Koha-bugs] [Bug 26247] Search terms retained in header search creates UX inconsistency In-Reply-To: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26247-70-yMtdqit55I@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26247 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes usability and release notes| |consistency issues with the | |staff interface search | |header. Retaining or | |clearing search terms | |between searches is now | |configurable using two new | |system preferences - | |RetainCatalogSearchTerms | |(for searching the catalog) | |and | |RetainPatronsSearchTerms | |(for check out and | |searching patrons). | |Previously, search terms | |from searching the catalog | |were retained. They were | |also retained when | |switching to check out, | |check in, and search | |patrons from the search | |results page - which then | |required manually clearing | |the input field. | | | |It also | |cleans up the various | |search bar templates to use | |a single template for the | |"Search the catalog" input | |in the search header. --- Comment #37 from David Nind <david at davidnind.com> --- These are my draft testing notes (may need updating when the patch applies again and I can complete the tests): 1. In the staff interface, type "perl" in the "Search the catalog" input field and click "Submit" 2. Switch between the different areas in the search header from the catalog search results page and confirm that the search term is retained for: - Check out - Check in - Renew 3. Go back to the staff interface home page for each of the following, and enter and submit appropriate information in the other input fields in the search header: - Search patrons, for example: 'a': search term retained when there is more than one search result - Search patrons, for example: 'Mary': search term cleared when there is only one result, and you select it from the autocomple and go to the patron's details page - Check out - same as for search patrons: search term retained if there is a search results page, not retained if select specific person, cleared once specific person selected from search results - Check in - enter a barcode: not retained (cleared) - Renew - enter a barcode: not retained (cleared) 4. Apply the patches (git bz apply 26247), update the database (updatedatabase), flush_memcached, restart_all, and clear your browser cache (or open the staff interface in a new private or incognito window) 5. In the system preferences, go to Searching > Search form and review the two new system preferences: . RetainCatalogSearchTerms . RetainPatronsSearchTerms 6. Review the text for the system preferences and make sure they make sense. 7. Test the retain and don't retain settings for each system preference and the various combinations, they should work as expected (see also step 3): - RetainCatalogSearchTerms (don't retain) and RetainPatronsSearchTerms (don't retain) - RetainCatalogSearchTerms (retain) and RetainPatronsSearchTerms (retain) - RetainCatalogSearchTerms (don't retain) and RetainPatronsSearchTerms (retain) - RetainCatalogSearchTerms (retain) and RetainPatronsSearchTerms (don't retain) 8. Confirm the "Search the catalog" appears and works as expected from modules: - Budgets - Cataloging - Circulation - Currencies - Contracts - Home page - Notices and slips - Patrons - Administration - Serials - Acquisitions -> suggestions - Z3950 Admin 9. Signoff! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 02:41:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 00:41:11 +0000 Subject: [Koha-bugs] [Bug 26247] Search terms retained in header search creates UX inconsistency In-Reply-To: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26247-70-Xb2NGDglyK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26247 --- Comment #38 from David Nind <david at davidnind.com> --- I think the text for the two new system preferences needs updating after the last patch (Adding two Sysprefs for Search Terms), similar to Katrin's QA follow-up - Fix 0/1 and terminology in preferences patch (staff client to staff interface): - RetainCatalogSearchTerms: When searching from search the catalog in the staff interface header, [don't retain|retain] search terms between searches. - RetainPatronsSearchTerms: When searching from check out or search patrons in the staff interface header, [don't retain|retain] search terms between searches. Simpler could be: [don't retain|retain] search terms between searches when searching from .... in the staff interface header. Not sure about the 0/1 settings... Also, whether they should be under Searching > Search form (like Katrin's patch) or split over circulation and searching system preference areas. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 02:48:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 00:48:12 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-ezBa8uwIqD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 02:48:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 00:48:16 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-VjOZm9bjuV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136700|0 |1 is obsolete| | --- Comment #2 from David Nind <david at davidnind.com> --- Created attachment 136701 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136701&action=edit Bug 31062: Change description of QOTD tool in tools-home This patch changes the name and description of the QOTD tool in order to make them more constant with the other tool names and descriptions, and to include the fact that QOTD can now be used in the staff interface as well as the OPAC. To test: 1) Go to Tools 2) Read the QOTD tool name and description, make sure they make sense and that there are no typos 3) Test the link to make sure it goes to the tool Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 02:56:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 00:56:50 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-osBIcGFu9O@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #3 from David Nind <david at davidnind.com> --- Thanks for doing this Caroline! I always thought it was a bit inconsistent with how the other tools are named and described (but hadn't got around to creating a bug!). I'm probably being picky, but my suggestion/further refinements would be: QOTD editor or Quote editor (used in the breadcrumb on the quotes page) Manage quotes (no other tool mentions feature) or Manage 'Quote of the day' quotes -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 03:23:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 01:23:25 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-Utq9BcKmPv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 03:23:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 01:23:29 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-7dlGwuPyPP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136437|0 |1 is obsolete| | --- Comment #22 from David Nind <david at davidnind.com> --- Created attachment 136702 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136702&action=edit Bug 30903: Fix POST /quote quote_id should not be required Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 03:23:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 01:23:34 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-FXaUQhlIJ6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136438|0 |1 is obsolete| | --- Comment #23 from David Nind <david at davidnind.com> --- Created attachment 136703 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136703&action=edit Bug 30903: Fix UI glitch on the quotes upload view Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 03:23:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 01:23:38 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-HUTnXlF54k@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136439|0 |1 is obsolete| | --- Comment #24 from David Nind <david at davidnind.com> --- Created attachment 136704 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136704&action=edit Bug 30903: (follow-up) Fix error message class Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 03:27:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 01:27:34 +0000 Subject: [Koha-bugs] [Bug 31063] New: [OMNIBUS] QOTD tool Message-ID: <bug-31063-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31063 Bug ID: 31063 Summary: [OMNIBUS] QOTD tool Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Tools Assignee: koha-bugs at lists.koha-community.org Reporter: david at davidnind.com QA Contact: testopia at bugs.koha-community.org There are several current bugs for the Quote of The Day tool. I've created this omnibus bug so that any changes required (including improvements) to the tool can be managed in small steps. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 03:31:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 01:31:47 +0000 Subject: [Koha-bugs] [Bug 31063] [OMNIBUS] QOTD tool In-Reply-To: <bug-31063-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31063-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31063-70-B49lrsLiGQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31063 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30903, 31012, 31014, 31062 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 [Bug 30903] CSV import of quotes broken https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31012 [Bug 31012] Quote import tool should send the user back to quotes pages after importing https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31014 [Bug 31014] Minor UI problems in QOTD editor tool https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 [Bug 31062] Change description of QOTD tool in tools-home -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 03:31:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 01:31:47 +0000 Subject: [Koha-bugs] [Bug 30903] CSV import of quotes broken In-Reply-To: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30903-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30903-70-zzB6eIfhtg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30903 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31063 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31063 [Bug 31063] [OMNIBUS] QOTD tool -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 03:31:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 01:31:47 +0000 Subject: [Koha-bugs] [Bug 31012] Quote import tool should send the user back to quotes pages after importing In-Reply-To: <bug-31012-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31012-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31012-70-Cv3TrBm6fW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31012 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31063 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31063 [Bug 31063] [OMNIBUS] QOTD tool -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 03:31:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 01:31:47 +0000 Subject: [Koha-bugs] [Bug 31014] Minor UI problems in QOTD editor tool In-Reply-To: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31014-70-Xa3LU3oTor@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31014 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31063 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31063 [Bug 31063] [OMNIBUS] QOTD tool -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 03:31:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 01:31:47 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-LZWGodSXWE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31063 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31063 [Bug 31063] [OMNIBUS] QOTD tool -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 04:23:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 02:23:22 +0000 Subject: [Koha-bugs] [Bug 31063] [OMNIBUS] QOTD tool In-Reply-To: <bug-31063-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31063-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31063-70-1xtVvcrghA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31063 --- Comment #1 from David Nind <david at davidnind.com> --- Some ideas and areas for improvement: 1. Title and description for the QOTD tool (on the tools page) - bug 31062 . the pages in the tool use 'Quote editor' as part of the breadcrumb 2. Quote list page: - Is the ID column required? If you delete a quote, it leaves a gap in the numbering. - Alignment of table of quotes: if you make your browser screen wide enough, the table is centered. Generally, tables elsewhere in the staff interface are left aligned. 3. Importing quotes: - Page name: change from 'Quote uploader' to 'Import quotes' - rationale: button on quotes page is "Import quotes" - Breadcrumb: Home > Tools Quote editor > Import quotes - Placement of instructions: there is quite a gap between the page heading (Quote uploader) and the instructions box - Instructions: text says "Click the "Choose file" button....", button name is "Browse", change text to "Browse and select the CSV file with the quotes to import." - Instructions: not sure the last bullet point is needed, "The file will be imported into an editable table for review prior to saving." (see discussion on process for import) - Upload quotes box: . change to title to "Import quotes" to be consistent . placement of the Browse button - too close to the heading, lots of extra space after . if process changed for how to import (for example, not giving the chance to review and edit), then add a button below browse - "Import quotes" - Actual import screen: . Instructions: gap between heading and instructions, if changed so that don't get a chance to edit then this can be removed (see next item), also there is extra space after the last bullet point in the instructions . Listing and editing: the layout reflects the old way to edit quotes, where you clicked on a cell to edit. I don't think we should give importers a chance to edit here - it should just cover whether the import was successful, or if there were any errors. - Title: change form 'Quote uploader' to 'Import quotes' - 'Save quotes' button: change to 'Import quotes' - How should this page work? bug 31012 . List quotes and then have 'Import quotes' and 'Cancel import' options . Error message if CSV file not in the right format . Go back to the main screen with a message box at the top saying something like "X quotes successfully imported", or if it is 'enqued', then 'The quotes are enqued' (or whatever message we use when enqued) 4. New quotes: - Size of input fields: These are quite small - make larger (bug 31014) - Breadcrumb: suggestion - Home > Tools > Quote editor > New quote 5. Modify quotes: - Size of input fields: same as 4 (new quotes) these are quite small (however, not familiar enough with our normal user interface patterns) (bug 31014) - Breadcrumb: not sure if one can be added, but maybe Home > Tools > Quote editor > Modify quote (not sure if we have standardised on 'Modify' or 'Edit" - I think we use both in various places!) 6. Deleting quotes: - Message: when you delete a quite, the modal windows says "You are about to delete the quote #2", if we do away with displaying the number in the quotes list this would need changed. Perhaps: "You are about to delete the quote: Whatever the quote is ~ Source ~" -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 04:28:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 02:28:07 +0000 Subject: [Koha-bugs] [Bug 31063] [OMNIBUS] QOTD tool In-Reply-To: <bug-31063-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31063-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31063-70-ygaVy7F8tk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31063 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Academy -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 05:43:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 03:43:16 +0000 Subject: [Koha-bugs] [Bug 28093] Additional configuration option(s) for Shibboleth-only mode In-Reply-To: <bug-28093-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28093-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28093-70-Ppj7zSUdCE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28093 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #1 from David Cook <dcook at prosentient.com.au> --- Sounds reasonable to me. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 07:55:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 05:55:13 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-QQ9cAVOcmt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff --- Comment #10 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Wow, I knew I recognised this one.. I reported it upstream many years ago: https://rt.cpan.org/Public/Bug/Display.html?id=98024 Looking at the discussions linked think there is looking less and less likely that such support will get baked into libxml2 upstream.. in fact it looks like they're actually considering the removal of the http client stuff entirely at some point and they strongly recommend against loading over remote resources for performance reasons. As such, I think we can and should follow Marcels 'hack' here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 09:39:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 07:39:51 +0000 Subject: [Koha-bugs] [Bug 31064] New: Local login is difficult to style using CSS Message-ID: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 Bug ID: 31064 Summary: Local login is difficult to style using CSS Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: dcook at prosentient.com.au QA Contact: testopia at bugs.koha-community.org There are times where it would be nice to style the local login inputs. For my purposes, that's usually to hide them in favour of button/link provided by OpacUserJS, but I'm sure people could use it for other things too. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 09:39:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 07:39:59 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-P5MLEmS0W8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=25405 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 09:39:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 07:39:59 +0000 Subject: [Koha-bugs] [Bug 25405] Make separation of Shibboleth and Local login clearer in modal login on OPAC In-Reply-To: <bug-25405-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25405-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25405-70-UXxyuE6tDr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25405 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=31064 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 09:42:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 07:42:13 +0000 Subject: [Koha-bugs] [Bug 31059] encryption_key config entry not generated when upgrading In-Reply-To: <bug-31059-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31059-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31059-70-faYaKiMccJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31059 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 10:47:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 08:47:50 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-JvGhheCHjW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 10:47:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 08:47:53 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-k5dYETszfw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 --- Comment #1 from David Cook <dcook at prosentient.com.au> --- Created attachment 136705 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136705&action=edit Bug 31064: Wrap local login with stylable element Test plan: 0. Apply patch 1. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACUserCSS 2. Set syspref to the following: .local-login { display: none; } 3. Go to http://localhost:8080/cgi-bin/koha/opac-main.pl 3b. Note that the local login boxes are hidden ("Log in to your account:" remains so that other login options can be supplied by OpacUserJS) 4. Click on "Log in to your account" on the top toolbar 4b. Note that the local login boxes are hidden ("Log in to your account:" remains so that other login options can be supplied by OpacUserJS) 5. Go to http://localhost:8080/cgi-bin/koha/opac-user.pl 5b. Note that the local login boxes are hidden ("Log in to your account" remains so that other login options can be supplied by OpacUserJS) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 10:48:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 08:48:13 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-cLHWsc3sTN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|oleonard at myacpl.org |dcook at prosentient.com.au See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30988 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 10:48:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 08:48:13 +0000 Subject: [Koha-bugs] [Bug 30988] Add generic OpenIDConnect client implementation In-Reply-To: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30988-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30988-70-aBQW17SEX3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30988 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=31064 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 10:49:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 08:49:33 +0000 Subject: [Koha-bugs] [Bug 25405] Make separation of Shibboleth and Local login clearer in modal login on OPAC In-Reply-To: <bug-25405-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25405-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25405-70-qeaITdCHIP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25405 --- Comment #29 from David Cook <dcook at prosentient.com.au> --- With bug 31064, it might be a bit easier. Admittedly I'm targeting a scenario where I insert a button using OpacUserJS to point to custom/plugin code. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 10:53:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 08:53:36 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-GBlYt87XFt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 10:54:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 08:54:25 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-49xE3xgBrs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 --- Comment #2 from Fridolin Somers <fridolin.somers at biblibre.com> --- +1 I have the same problem for CSS tunning -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:09:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:09:04 +0000 Subject: [Koha-bugs] [Bug 31005] Cannot edit patrons in other categories if an extended attribute is mandatory and limited to a category In-Reply-To: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31005-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31005-70-M7OPvUykFw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31005 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |Pushed to oldstable Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.10 --- Comment #11 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- backported to 21.11.x for 21.11.10, thx! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:14:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:14:14 +0000 Subject: [Koha-bugs] [Bug 30960] Koha lets you place item-level holds without a pick-up place In-Reply-To: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30960-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30960-70-FnRShTnfZv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30960 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Resolution|--- |FIXED Status|Pushed to stable |RESOLVED --- Comment #12 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- I don't reproduce the bug in 21.11.x. Not backporting. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:31:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:31:00 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-GEnIU2BZvl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136692|0 |1 is obsolete| | --- Comment #59 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136706 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136706&action=edit Bug 29523: Remove the FIXME This patch works through the unit tests and existing code to allow removal of the FIXME I introduced earlier in the patchset. We now require the `user` parameter be passed to `is_accessible` which in turn makes `user` a required parameter for `to_api` in the `Koha::Patron` case. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:32:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:32:13 +0000 Subject: [Koha-bugs] [Bug 31065] New: SearchLimitLibrary sys. pref. not limiting correctly when set to holding library Message-ID: <bug-31065-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31065 Bug ID: 31065 Summary: SearchLimitLibrary sys. pref. not limiting correctly when set to holding library Change sponsored?: --- Product: Koha Version: 21.11 Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Searching Assignee: koha-bugs at lists.koha-community.org Reporter: hc at interleaf.ie QA Contact: testopia at bugs.koha-community.org Bug 21249 added the system preference SearchLimitLibrary which allows a site to determine in an advanced search if the branch specified should be searched against the home library, the holding library or both the home and holding library of the item. On the release 21.11.06, I'm seeing instances where the sys. pref, set to "holding library", will still bring back results based on the home library. Example: The item record is set up with home library as branch A and holding library as branch B. A library group is set up with only branch A in it. The SearchLimitLibrary system preference is set to "holding library". Under Advanced search, under "search for", the dropdown is set to "barcode". Under "Location and Availability", the "Groups of libraries" option is set to the group containing only branch A. The barcode for the item is searched for and the item is returned. The item should not be returned, as the search should limit to the holding branch, which is not included in the library group being searched for. The same issue appears if branch A is searched for individually under the Advanced Search setting. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:32:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:32:29 +0000 Subject: [Koha-bugs] [Bug 31065] SearchLimitLibrary sys. pref. not limiting correctly when set to holding library In-Reply-To: <bug-31065-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31065-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31065-70-XEljSIUyzN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31065 Holly <hc at interleaf.ie> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hc at interleaf.ie -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:41:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:41:02 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-oo3JjYYzEK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 --- Comment #9 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136707 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136707&action=edit Bug 30982: Add tests and implement GET /background_jobs/$id -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:41:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:41:06 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-ruFagXIKjX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 --- Comment #10 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Created attachment 136708 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136708&action=edit Bug 30982: Try allow-owner -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:42:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:42:07 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-eyfUbkt4Yb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |In Discussion --- Comment #11 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- Martin, can you have a look at the last patch please? I've tried to implement your suggestion but either it does not work or I don't understand how it's supposed to work. I've added missing tests and implement the GET /background_jobs/$id route. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:48:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:48:35 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-ivhoTBEq5i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 Magnus Enger <magnus at libriotech.no> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |magnus at libriotech.no --- Comment #69 from Magnus Enger <magnus at libriotech.no> --- I can confirm the problem on 21.11.05. I applied the patch for 22.05 with one minor confict, and it seems to have fixed the problem. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:54:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:54:01 +0000 Subject: [Koha-bugs] [Bug 29325] commit_file.pl error 'Already in a transaction' In-Reply-To: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29325-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29325-70-mJ03x3b5wK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29325 --- Comment #70 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- (In reply to Magnus Enger from comment #69) > I can confirm the problem on 21.11.05. I applied the patch for 22.05 with > one minor confict, and it seems to have fixed the problem. I've run a first test on 20.11 (also with 2 minor conflicts) and the import worked fine and created no errors. But hope we can do more extensive testing for our daily imports soon. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 11:58:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 09:58:29 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-qP2b8d8r5T@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 --- Comment #60 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- QA comments: 1. Koha::Object::_get_objects_class added but no tests, and I don't see where it's used from. 2. + return $self->{_restricted_branchcodes} if exists($self->{_restricted_branchcodes}); Didn't we decide already that this was a wrong way to cache things? You cannot invalidate the "cache". Not considering blocker but worth raising it once again. 3. If I read the history correctly it seems that we don't longer need Koha::Objects->search_limited -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 12:12:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 10:12:02 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-zlxcOOnKe7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 --- Comment #12 from Jonathan Druart <jonathan.druart+koha at gmail.com> --- >From IRC: @ashimema> ack.. looking at the code it's allow-owner that I've discussed before and bemoaned it's a bit of a mess. @ashimema> I'm thinking drop that last patch as you've proved it doesn't work right now.. and we can follow through on that stuff in another way.. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 12:12:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 10:12:12 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-PrQr4nyDRp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136708|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 12:12:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 10:12:22 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-m5bP3zpCCK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 Jonathan Druart <jonathan.druart+koha at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 12:15:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 10:15:12 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-PQFC2q5X51@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 --- Comment #61 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Tomás Cohen Arazi from comment #24) > As for the gaps situation, this patch only covers the 'singular' use case, > so that's a different bug. I narrowed the implementation to what I needed > for bug 29275, and am willing to work on the plural embeds once we agree on > the implementation. I also think we shouldn't leave gaps. Actually, we do cover the plural somewhat here.. As we call `to_api` from within `_handle_to_api_child` and we're passing around the `user` now and using `is_accessible` we will end up null gaps in our plural embeds. I actually think that's correct as it stands.. we're sending back a null for the singular case and we're including the null in the count variable of the embed.. so gaps are meaningful. I however have no idea if our client-side code knows how to handle such situations as yet. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 13:16:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 11:16:20 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-dsOmId2E45@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #11 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Its a patch from 2014 from me. I kept it in FQA for reference. The way I am looking now against it, I would rather put some module in between to do the actual workaround in the (little) hope that LibXML would be resolved some day. I might give it a chance, no promises.. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 13:23:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 11:23:15 +0000 Subject: [Koha-bugs] [Bug 31066] New: Can't use regex in batch modification on fields associated with a plugin Message-ID: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31066 Bug ID: 31066 Summary: Can't use regex in batch modification on fields associated with a plugin Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Tools Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org This was fixed by bug 27929 and then broken by bug 28445 which changed the type for fields associated with a plugin from text2 to text_plugin -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 13:25:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 11:25:48 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-tinV8CLIN3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 13:25:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 11:25:52 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-lrofm5eVGW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136705|0 |1 is obsolete| | --- Comment #3 from Owen Leonard <oleonard at myacpl.org> --- Created attachment 136709 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136709&action=edit Bug 31064: Wrap local login with stylable element Test plan: 0. Apply patch 1. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACUserCSS 2. Set syspref to the following: .local-login { display: none; } 3. Go to http://localhost:8080/cgi-bin/koha/opac-main.pl 3b. Note that the local login boxes are hidden ("Log in to your account:" remains so that other login options can be supplied by OpacUserJS) 4. Click on "Log in to your account" on the top toolbar 4b. Note that the local login boxes are hidden ("Log in to your account:" remains so that other login options can be supplied by OpacUserJS) 5. Go to http://localhost:8080/cgi-bin/koha/opac-user.pl 5b. Note that the local login boxes are hidden ("Log in to your account" remains so that other login options can be supplied by OpacUserJS) Signed-off-by: Owen Leonard <oleonard at myacpl.org> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 13:26:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 11:26:49 +0000 Subject: [Koha-bugs] [Bug 31066] Can't use regex in batch modification on fields associated with a plugin In-Reply-To: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31066-70-AeeQCnNVFU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31066 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |28445 Status|NEW |Needs Signoff Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28445 [Bug 28445] Use the task queue for the batch delete and update items tool -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 13:26:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 11:26:49 +0000 Subject: [Koha-bugs] [Bug 28445] Use the task queue for the batch delete and update items tool In-Reply-To: <bug-28445-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28445-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28445-70-4bw7Q2unMN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28445 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31066 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31066 [Bug 31066] Can't use regex in batch modification on fields associated with a plugin -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 13:26:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 11:26:53 +0000 Subject: [Koha-bugs] [Bug 31066] Can't use regex in batch modification on fields associated with a plugin In-Reply-To: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31066-70-SdRI6Yk3fI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31066 --- Comment #1 from Nick Clemens <nick at bywatersolutions.com> --- Created attachment 136710 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136710&action=edit Bug 31066: Update javascript to use 'text_plugin' type for regex option To test: 1 - Confirm 952$o is not linked to a plugin in the default marc framework 2 - Send some tiems to batch modification 3 - Confirm you can select RegEx as an option for callnumber during modification 4 - Link 952$o to the cn_browser.pl plugin 5 - Repeat batch modification 6 - Note there is no regex option 7 - Apply patch 8 - Confirm there is a regex option 9 - Unlink 952$o from plugin 10 - Confirm you still have a regex option in batch modification -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 13:35:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 11:35:16 +0000 Subject: [Koha-bugs] [Bug 31066] Can't use regex in batch modification on fields associated with a plugin In-Reply-To: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31066-70-SYvAjJQJqt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31066 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 14:18:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 12:18:34 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-s1seXzeCmA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 --- Comment #12 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136711 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136711&action=edit Bug 12758: Make LWP::Protocol::https required module Moving from recommends to required in cpanfile. Reference info: Debian package liblwp-protocol-https-perl is available for Buster (6.07-2) and Bullseye (6.10-1). Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 14:18:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 12:18:38 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-EwiCjfRuAU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 --- Comment #13 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136712 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136712&action=edit Bug 12758: Introduce Koha::XSLT::Loader Work in progress. This is the idea for a 'solution' ;) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 14:18:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 12:18:42 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-fGwx38zTYP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 --- Comment #14 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Created attachment 136713 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136713&action=edit Bug 12758: Add Loader call in Koha::XSLT::Base Reviving a report back from 2014. The workaround is now moved to a separate helper module from another patch. Test plan: Test OPACXSLTDetailsDisplay with an https reference. Test it again with a stylesheet referring to a https include. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 14:19:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 12:19:43 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-6HgNkuRDbQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |ASSIGNED --- Comment #15 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- This is just a rough sketch of how to address it. The Loader should be able to handle nested https includes.. Recursion. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 14:20:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 12:20:03 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-O4ONAr9oOa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 Marcel de Rooy <m.de.rooy at rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #31975|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 14:20:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 12:20:03 +0000 Subject: [Koha-bugs] [Bug 31014] Minor UI problems in QOTD editor tool In-Reply-To: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31014-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31014-70-A9uUpTUFvL@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31014 Owen Leonard <oleonard at myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 14:24:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 12:24:19 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-5YzIrpY8la@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 --- Comment #16 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> --- Will be continued later on. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 14:45:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 12:45:31 +0000 Subject: [Koha-bugs] [Bug 16207] Incorporate circulation and fine rules for library groups In-Reply-To: <bug-16207-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-16207-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-16207-70-7rMGjeGWFb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16207 Jessie Zairo <jzairo at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jzairo at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 15:19:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 13:19:17 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-9B5ZAQ6eGj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 --- Comment #62 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136714 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136714&action=edit Bug 29523: Remove no longer required methods -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 15:29:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 13:29:01 +0000 Subject: [Koha-bugs] [Bug 29523] Add a way to prevent embedding objects that should not be allowed In-Reply-To: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29523-70-mHyz8Am61d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29523 --- Comment #63 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Documenting for my own sanity. This patchset works as is.. but there are various ways we could improve. Right now when building an API response we... 1) Build up a query that includes a prefetch any relations we add with an embed (or add via the query) 2) We can't drop the prefetch because if we do we may affect the resulting related data we return if part of the query passed filters on the joined data. 3) We then recurse through the embeds and with this patchset we filter out based on the is_accessible method in each Object class. 4) This can result in 'nulls' in the array of related data if the relation returns multiple rows.. or a null for the related singular object for the singular case. This may not be the most efficient way to do things.. we're fetching all the data all the time and then filtering in perl as we iterate through the resultsets calling to_api. If we wanted to move this into a filtered query, because of the prefetch nature of it, we'd need to do it as a filtered relationship accessor added to the DBIx::Class schema files.. We should test whether adding a 'filter_by_accessible' method to the Koha::Objects class would work when chained onto an existing prefetched relation. I'm not sure how it handles such a chain and whether our original query would be taken into account correctly. If we do opt to add a filter_by_accessible to the Koha::Objects class, we will still need the is_accessible for the singular forms here anyway as the relationship will have already been prefetched by the original call. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 15:31:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 13:31:20 +0000 Subject: [Koha-bugs] [Bug 30019] We should DRY out search_limited (and rename it) In-Reply-To: <bug-30019-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30019-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30019-70-hBcSYImap8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30019 --- Comment #1 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Should these actually be.. * filter_by_library_limits * filter_by_patron_limits and * filter_by_accessible (combining both the above) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 15:34:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 13:34:15 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-dCLmK4Nioe@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 --- Comment #17 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Good call Marcel, thanks for taking a look. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 16:01:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 14:01:25 +0000 Subject: [Koha-bugs] [Bug 16207] Incorporate circulation and fine rules for library groups In-Reply-To: <bug-16207-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-16207-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-16207-70-7oRxHsA7Nt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16207 Jessie Zairo <jzairo at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kelly at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 16:27:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 14:27:18 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-ezMkfaslbN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 --- Comment #198 from Katrin Fischer <katrin.fischer at bsz-bw.de> --- Could you please rebase? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 16:27:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 14:27:30 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-v2yMVLjVIT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Katrin Fischer <katrin.fischer at bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Patch doesn't apply -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 16:39:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 14:39:24 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-U238IXALDO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 --- Comment #13 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136715 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136715&action=edit Bug 30982: Make code more re-usable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:10:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:10:37 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-b9L0wppakD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134684|0 |1 is obsolete| | --- Comment #199 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136716 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136716&action=edit Bug 23681: Add PatronRestrictionTypes syspref This patch adds the new syspref "PatronRestrictionTypes" Signed-off-by: Benjamin Veasey <B.T.Veasey at lboro.ac.uk> Sponsored-by: Loughborough University -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:10:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:10:44 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-txxD1hSXE3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134685|0 |1 is obsolete| | --- Comment #200 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136717 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136717&action=edit Bug 23681: Add debarment_types This patch adds the table debarment_types and changes borrower_debarments.type to be a foreign key to it Signed-off-by: Benjamin Veasey <B.T.Veasey at lboro.ac.uk> Sponsored-by: Loughborough University -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:10:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:10:51 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-ReZxCkIy6x@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134686|0 |1 is obsolete| | --- Comment #201 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136718 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136718&action=edit Bug 23681: Add modify_patron_restrictions perm This patch adds a new "modify_patron_restrictions" permission Signed-off-by: Benjamin Veasey <B.T.Veasey at lboro.ac.uk> Sponsored-by: Loughborough University -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:10:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:10:57 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-Q8AiUUAH6k@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134687|0 |1 is obsolete| | --- Comment #202 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136719 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136719&action=edit Bug 23681: Add Koha::RestrictionType(s) This patch adds the following objects: Koha::RestrictionType Koha::RestrictionTypes Signed-off-by: Benjamin Veasey <B.T.Veasey at lboro.ac.uk> Sponsored-by: Loughborough University -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:11:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:11:04 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-iWSakWO2Zz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134688|0 |1 is obsolete| | --- Comment #203 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136720 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136720&action=edit Bug 23681: Add management UI This patch adds UI to allow CRUD operations on restriction types Signed-off-by: Benjamin Veasey <B.T.Veasey at lboro.ac.uk> Sponsored-by: Loughborough University -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:11:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:11:11 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-EE7I8PeN9j@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134689|0 |1 is obsolete| | --- Comment #204 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136721 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136721&action=edit Bug 23681: Allow for changes to debarments The structure of debarments has changes slightly in that the displayed text is now a product of a call to Koha::RestrictionTypes rather than just the debarment's code. This patch allows for that Signed-off-by: Benjamin Veasey <B.T.Veasey at lboro.ac.uk> Sponsored-by: Loughborough University -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:11:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:11:18 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-SXKhKmOoqP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134690|0 |1 is obsolete| | --- Comment #205 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136722 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136722&action=edit Bug 23681: Allow for selection of restriction type This patch displays a restriction type select box (when appropriate) when adding manual patron restrictions Signed-off-by: Benjamin Veasey <B.T.Veasey at lboro.ac.uk> Sponsored-by: Loughborough University -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:11:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:11:25 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-eqavmKdbdg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134691|0 |1 is obsolete| | --- Comment #206 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136723 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136723&action=edit Bug 23681: Clean up on delete When a patron restriction type is deleted, any debarments that use that type need to revert to the default type, this patch implements this behaviour Signed-off-by: Benjamin Veasey <B.T.Veasey at lboro.ac.uk> Sponsored-by: Loughborough University -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:11:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:11:31 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-QhEpiKcIff@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134692|0 |1 is obsolete| | --- Comment #207 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136724 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136724&action=edit Bug 23681: Add unit tests Signed-off-by: Benjamin Veasey <B.T.Veasey at lboro.ac.uk> Sponsored-by: Loughborough University -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:11:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:11:38 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-JvEF37TBbX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134693|0 |1 is obsolete| | --- Comment #208 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136725 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136725&action=edit Bug 23681: (follow-up) Fix typo Signed-off-by: Benjamin Veasey <B.T.Veasey at lboro.ac.uk> Sponsored-by: Loughborough University -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:11:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:11:45 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-Nf7M5Uwoi0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134694|0 |1 is obsolete| | --- Comment #209 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136726 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136726&action=edit Bug 23681: (follow-up) Fix rebase issues -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:11:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:11:52 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-nFDK2ylYVl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134696|0 |1 is obsolete| | --- Comment #210 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136727 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136727&action=edit Bug 23681: (QA follow-up) Allow for translations This patch allows for existing translations to follow through if debarment type descriptions are left unaltered for the default types. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:11:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:11:58 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-slRqCx1zvX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134697|0 |1 is obsolete| | --- Comment #211 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136728 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136728&action=edit Bug 23681: Updates for bug 26703 This patch fixes the title ordering and also replaces the breadcrumbs with the modern nav block equivilent -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:12:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:12:05 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-YGPxIhNdr8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134698|0 |1 is obsolete| | --- Comment #212 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136729 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136729&action=edit Bug 23681: (QA follow-up) Fix license, perlcritic & executable This patch fixes the simple issues mentioned by the QA script. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:12:12 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:12:12 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-9j3ALCRrtC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134699|0 |1 is obsolete| | --- Comment #213 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136730 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136730&action=edit Bug 23681: (QA follow-up) Rename columns Renames ronly to readonly and dflt to is_system. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:12:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:12:18 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-2GSDC2S2kw@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134700|0 |1 is obsolete| | --- Comment #214 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136731 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136731&action=edit Bug 23681: (QA follow-up) Fix prefs Add the missing `.` and switch from `yes/no` to `1/0`. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:12:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:12:25 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-cDQI8S7TLH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134701|0 |1 is obsolete| | --- Comment #215 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136732 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136732&action=edit Bug 23681: Fix QA issues This patch fixes following QA issues: - convert intaller files as .yml - change column name readonly as is_system - change column name is_system as default_value - add column can_be_added_manually (testplan for this below) - move syspref "PatronRestrictionTypes" to "Accounting > Features" tab - tweak page title - tweak tests to apply these changes Also atomicupdate files have been updated. Issues with delete and tests is fixed with adding additional schema change file. To test: 1) Add new restriction type and make it manual. 2) Navigate to patron details page. 3) Add new restriction to patron. => Only selectable restriction should be the one you just created. Also prove t/db_dependent/RestrictionTypes.t. Sponsored-by: Koha-Suomi Oy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:12:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:12:31 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-TepFv2pqEv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134702|0 |1 is obsolete| | --- Comment #216 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136733 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136733&action=edit Bug 23681: DO NOT PUSH! Schema changes To be able to delete and pass tests we need to declare koha_object[s]_class to DebarmentType.pm. Otherwise following error is raised: "Can't locate object method "_new_from_dbic" via package "Koha::DebarmentType" (perhaps you forgot to load "Koha::DebarmentType"?) at /kohadevbox/koha/Koha/Object.pm line 237" -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:12:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:12:38 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-EKzJ4elK5C@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134703|0 |1 is obsolete| | --- Comment #217 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136734 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136734&action=edit Bug 23681: (QA follow-up) Move preference again This patch removes the new PatronRestrictionTypes preference from the accounting area in preference to creating a new group for 'Patron restriction' related preferences in the circulation preferences tab. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:12:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:12:46 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-zOg1SSq4oS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134704|0 |1 is obsolete| | --- Comment #218 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136735 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136735&action=edit Bug 23681: (QA follow-up) Restore customisablity of description This patch restores the customisability of description for system restriction types. Translatability is not affected as you can translate the defaults via template translation and assuming the end users leave their descriptions at the default, the translations will be picked. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:12:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:12:52 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-5gXGCWmu7z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134705|0 |1 is obsolete| | --- Comment #219 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136736 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136736&action=edit Bug 23681: (QA follow-up) Merge update files This patch merges the three atomic update files into one and also adds a check for foreing key existance to make the update idempotent. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:12:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:12:59 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-jQWFeDoqTk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134706|0 |1 is obsolete| | --- Comment #220 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136737 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136737&action=edit Bug 23681: (QA follow-up) Proper handling of default option This patch removes the 'can_be_added_manually' flag. Only non-system restriction types can be added manually, so we exclude is_system instead of having two flags. (And we set the 'Manual' that's added at install time to default but not system). We then add proper handling for setting the default manual restriction type in the management page and set the dropdown list to use that value by default. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:13:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:13:05 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-2DmOwT24Fy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134707|0 |1 is obsolete| | --- Comment #221 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136738 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136738&action=edit Bug 23681: DBIC Rebuild -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:13:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:13:13 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-bSvnQsrvkQ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134708|0 |1 is obsolete| | --- Comment #222 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136739 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136739&action=edit Bug 23681: (follow-up) Mark fields at booleans Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:14:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:14:21 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-JbyAA4TIP1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:14:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:14:30 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-KRaVIhsilJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:14:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:14:33 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-SeFB90QsOj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136701|0 |1 is obsolete| | --- Comment #4 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Created attachment 136740 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136740&action=edit Bug 31062: Change description of QOTD tool in tools-home This patch changes the name and description of the QOTD tool in order to make them more consistent with the other tool names and descriptions. To test: 1) Go to Tools 2) Read the QOTD tool name and description, make sure they make sense and that there are no typos 3) Test the link to make sure it goes to the tool -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:15:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:15:23 +0000 Subject: [Koha-bugs] [Bug 31067] New: Sub-tools permission not applying on intranet-main.tt Message-ID: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31067 Bug ID: 31067 Summary: Sub-tools permission not applying on intranet-main.tt Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Staff Client Assignee: koha-bugs at lists.koha-community.org Reporter: florian.bontemps at biblibre.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com News and content displayed on the main intranet homepage can be edited, deleted or created by anyone who has a tool sub-permission, even if it's not edit_additional_contents. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:16:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:16:23 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-S0866igWC5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 --- Comment #5 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- I changed it to Name: Quote editor Description: Manage 'Quote of the day' quotes It's more compact and consistent, but we lose the fact that it can be used in OPAC and staff. I guess it's not that important -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:16:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:16:44 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-h5LU80fumu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This enhancement changes |This enhancement changes release notes|the name and description of |the name and description of |the QOTD tool in order to |the QOTD tool in order to |make them more consistent |make them more consistent |with the other tool names |with the other tool names |and descriptions, and to |and descriptions. |include the fact that QOTD | |can now be used in the | |staff interface as well as | |the OPAC. | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:18:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:18:58 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-1DXfH2UUMk@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 --- Comment #223 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Rebased -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:19:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:19:14 +0000 Subject: [Koha-bugs] [Bug 23681] Patron restrictions should be user definable In-Reply-To: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23681-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23681-70-Nhu4tuqevj@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23681 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |katrin.fischer at bsz-bw.de -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:20:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:20:10 +0000 Subject: [Koha-bugs] [Bug 30935] Holds to pull shows wrong first patron In-Reply-To: <bug-30935-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30935-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30935-70-SJ3CKHvUJJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30935 --- Comment #4 from Shi Yao Wang <shi-yao.wang at inLibro.com> --- Created attachment 136741 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136741&action=edit Bug 30935: Holds to pull shows wrong first patron When different patrons have item level holds on the same item, Holds to pull shows wrong first patron. Test plan: 1) Place a record-level hold on a biblio with an available item 2) Check the Holds to pull page (circ/pendingreserves.pl) --> The biblio should appear in the list and the patron should appear in the 'First patron' column 3) Place a second record-level hold on the same biblio 4) Go back to the Holds to pull page --> The biblio is still there, but the patron in the 'First patron' column is the second patron 5) Place a third record-level hold on the same biblio 6) Go back to the Holds to pull page --> The biblio is still there, but the patron in the 'First patron' column is the third patron 7) Apply the patch 8) Go back to the Holds to pull page --> The biblio is still there and the patron in the 'First patron' column is the first patron -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:20:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:20:46 +0000 Subject: [Koha-bugs] [Bug 30935] Holds to pull shows wrong first patron In-Reply-To: <bug-30935-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30935-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30935-70-D8xOLn3ICu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30935 Shi Yao Wang <shi-yao.wang at inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff CC| |shi-yao.wang at inLibro.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:23:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:23:32 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-XiQagT9UyC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:34:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:34:43 +0000 Subject: [Koha-bugs] [Bug 31067] Sub-tools permission not applying on intranet-main.tt In-Reply-To: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31067-70-G7kVHmFooI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31067 --- Comment #1 from Florian <florian.bontemps at biblibre.com> --- Created attachment 136742 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136742&action=edit Bug 31067: Fixing missing permission check This patch just fixes a missing permission on the intranet main page. Currently, the Additional Content modules allows people to edit, modify or create new additional content just by checking if they have any tool permission at all, and not the right one. To test: 1 - From the staff client, create a news article for the intranet. 2 - Create (or use) an additional staff patron, giving them the necessary permissions to access the intranet, but no tool permission. 3 - Using another browser (or incognito mode), log on the intranet page with your new staff account, you should be able to see the news content, but not edit or delete it. That's the expected behavior. 4 - From your main admin account, give your test account the edit_additional_contents permission. 5 - Your test account should now be able to edit/delete the news content. This is also expected behavior. 6 - Using the main account again, remove this time the edit_additional_contents but add any other subtool permission (edit_calendar is a good one for instance) 7 - Repeat step 5 and confirm that your test account can still edit or delete the news content. This shouldn't happen. 8 - Apply patch 9 - Repeat steps 4-6, and confirm that your test account can now only edit or delete news content if they have the edit_additional_contents permission enabled. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:36:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:36:05 +0000 Subject: [Koha-bugs] [Bug 31067] Sub-tools permission not applying on intranet-main.tt In-Reply-To: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31067-70-yqdaOW6sUx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31067 Florian <florian.bontemps at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:46:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:46:40 +0000 Subject: [Koha-bugs] [Bug 29051] Seen renewal methods incorrectly blocked In-Reply-To: <bug-29051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29051-70-demxsfXkBp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29051 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Comment #6 is|1 |0 private| | --- Comment #7 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- I reckon go with this for now and work on the other bits as a distinct bug.. I've run out of time to continue here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:51:57 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:51:57 +0000 Subject: [Koha-bugs] [Bug 30578] We should drop circ/ysearch.pl in preference to using the REST API's In-Reply-To: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30578-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30578-70-zqMHT6jLxJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30578 --- Comment #32 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- (In reply to Jonathan Druart from comment #31) > Conflict with bug 21978 fixed. Thanks Joubu.. it was on my list to fix that conflict.. :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 17:57:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 15:57:10 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-GFccsAKrUJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 --- Comment #4 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- We could certainly need the payment type pulldown to go with it.. I can take a look at adding this. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 18:20:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 16:20:28 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-tdCqW8WK1r@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 --- Comment #5 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136743 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136743&action=edit Bug 29987: Add register support to manual credits This patch adds the register and transaction type selection options to the manual credit page. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 18:20:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 16:20:47 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-LUTNmGnaVP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 18:29:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 16:29:04 +0000 Subject: [Koha-bugs] [Bug 26689] Monetary accounts notices should be definable at the credit_type/debit_type level In-Reply-To: <bug-26689-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26689-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26689-70-cDzq2QAtXt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26689 --- Comment #19 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Created attachment 136744 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136744&action=edit Bug 26689: Prepend letter codes. This patch prepends the credit_type_code and debit_type_code with CREDIT_ and DEBIT_ respectively when doing a lookup on the notice letter code. Test plan 1) As previous patches, however instead of just naming your notice to match the credit_type_code or debit_type_code use CREDIT_credit_type_code and DEBIT_debit_type_code respectively. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 18:31:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 16:31:17 +0000 Subject: [Koha-bugs] [Bug 26689] Monetary accounts notices should be definable at the credit_type/debit_type level In-Reply-To: <bug-26689-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26689-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26689-70-q0Ec8Oo23i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26689 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This enhancement allows end release notes| |users to define their | |account notices (print | |receipt and print invoice | |for example) at the debit | |type and credit type level. | | | |Simply add a new notice | |with code | |'DEBIT_your_debit_type_code | |' or | |'CREDIT_your_credit_type_co | |de' to the notices and we | |will pick that over the | |existing default | |'ACCOUNT_DEBIT' and | |'ACCOUNT_CREDIT' notices. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 18:31:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 16:31:58 +0000 Subject: [Koha-bugs] [Bug 26689] Monetary accounts notices should be definable at the credit_type/debit_type level In-Reply-To: <bug-26689-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26689-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26689-70-J1ebi6NVTR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26689 --- Comment #20 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Nice catch Katrin.. added a follow-up and added notes for the release notes. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 18:36:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 16:36:51 +0000 Subject: [Koha-bugs] [Bug 30980] Make patron selection more consistent In-Reply-To: <bug-30980-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30980-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30980-70-9WUGaizqiU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30980 --- Comment #2 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- So go the other way and for all forms ensure we fall through to a full search window if autocomplete isn't enough ;P The point is I'd like to see some consistency around this. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 19:14:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 17:14:38 +0000 Subject: [Koha-bugs] [Bug 31067] Sub-tools permission not applying on intranet-main.tt In-Reply-To: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31067-70-qTJO0TGx3X@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31067 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 19:14:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 17:14:42 +0000 Subject: [Koha-bugs] [Bug 31067] Sub-tools permission not applying on intranet-main.tt In-Reply-To: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31067-70-d63D2OcXon@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31067 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136742|0 |1 is obsolete| | --- Comment #2 from Lucas Gass <lucas at bywatersolutions.com> --- Created attachment 136745 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136745&action=edit Bug 31067: Fixing missing permission check This patch just fixes a missing permission on the intranet main page. Currently, the Additional Content modules allows people to edit, modify or create new additional content just by checking if they have any tool permission at all, and not the right one. To test: 1 - From the staff client, create a news article for the intranet. 2 - Create (or use) an additional staff patron, giving them the necessary permissions to access the intranet, but no tool permission. 3 - Using another browser (or incognito mode), log on the intranet page with your new staff account, you should be able to see the news content, but not edit or delete it. That's the expected behavior. 4 - From your main admin account, give your test account the edit_additional_contents permission. 5 - Your test account should now be able to edit/delete the news content. This is also expected behavior. 6 - Using the main account again, remove this time the edit_additional_contents but add any other subtool permission (edit_calendar is a good one for instance) 7 - Repeat step 5 and confirm that your test account can still edit or delete the news content. This shouldn't happen. 8 - Apply patch 9 - Repeat steps 4-6, and confirm that your test account can now only edit or delete news content if they have the edit_additional_contents permission enabled. Signed-off-by: Lucas Gass <lucas at bywatersolutions.com> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 19:15:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 17:15:16 +0000 Subject: [Koha-bugs] [Bug 31067] Sub-tools permission not applying on intranet-main.tt In-Reply-To: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31067-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31067-70-bvOwmGnjIZ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31067 Lucas Gass <lucas at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |florian.bontemps at biblibre.c |ity.org |om CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 19:52:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 17:52:13 +0000 Subject: [Koha-bugs] [Bug 30468] koha-mysql does not honor Koha's timezone setting In-Reply-To: <bug-30468-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30468-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30468-70-svE6UmGVbX@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30468 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133000|0 |1 is obsolete| | --- Comment #5 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136746 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136746&action=edit Bug 30468: koha-mysql does not honor Koha's timezone setting If I run a query like "SELECT NOW()" from a koha report, I will get a different answer than if I had run it from koha-mysql. In Koha, we set the timezone for each database connection. However, koha-mysql does not do this, so instead we are left using the default timezone of the database. Test Plan: 1) Set your time zone to something other than the database time zone 2) run "SELECT NOW()" using debian/scripts/koha-mysql *not* /usr/sbin/koha-mysql 3) Note you get the database timezone's current time 4) Apply this patch 5) Repeat step 2 6) Now you get the correct time! Signed-off-by: Michal Urban <michalurban177 at gmail.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 19:52:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 17:52:36 +0000 Subject: [Koha-bugs] [Bug 30468] koha-mysql does not honor Koha's timezone setting In-Reply-To: <bug-30468-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30468-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30468-70-fIxHverd8J@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30468 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |michalurban177 at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 20:32:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 18:32:34 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-SqQvKuoZuD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 20:32:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 18:32:38 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-XHoP5JTOha@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136740|0 |1 is obsolete| | --- Comment #6 from David Nind <david at davidnind.com> --- Created attachment 136747 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136747&action=edit Bug 31062: Change description of QOTD tool in tools-home This patch changes the name and description of the QOTD tool in order to make them more consistent with the other tool names and descriptions. To test: 1) Go to Tools 2) Read the QOTD tool name and description, make sure they make sense and that there are no typos 3) Test the link to make sure it goes to the tool Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 21:02:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 19:02:09 +0000 Subject: [Koha-bugs] [Bug 30901] Add template method to be able to look up renewal data in Koha slips and notices In-Reply-To: <bug-30901-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30901-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30901-70-jqcUxqnRBo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30901 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 21:02:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 19:02:13 +0000 Subject: [Koha-bugs] [Bug 30901] Add template method to be able to look up renewal data in Koha slips and notices In-Reply-To: <bug-30901-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30901-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30901-70-KRLy0XlqoP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30901 --- Comment #14 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136748 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136748&action=edit Bug 30901: Add Unit Tests -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 21:06:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 19:06:58 +0000 Subject: [Koha-bugs] [Bug 31066] Can't use regex in batch modification on fields associated with a plugin In-Reply-To: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31066-70-hyBSUuYITl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31066 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 21:07:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 19:07:04 +0000 Subject: [Koha-bugs] [Bug 31066] Can't use regex in batch modification on fields associated with a plugin In-Reply-To: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31066-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31066-70-rZhtlKdpnP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31066 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136710|0 |1 is obsolete| | --- Comment #2 from David Nind <david at davidnind.com> --- Created attachment 136749 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136749&action=edit Bug 31066: Update javascript to use 'text_plugin' type for regex option To test: 1 - Confirm 952$o is not linked to a plugin in the default marc framework 2 - Send some tiems to batch modification 3 - Confirm you can select RegEx as an option for callnumber during modification 4 - Link 952$o to the cn_browser.pl plugin 5 - Repeat batch modification 6 - Note there is no regex option 7 - Apply patch 8 - Confirm there is a regex option 9 - Unlink 952$o from plugin 10 - Confirm you still have a regex option in batch modification Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 21:33:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 19:33:56 +0000 Subject: [Koha-bugs] [Bug 30025] BiblioAddsAuthorities is poorly named In-Reply-To: <bug-30025-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30025-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30025-70-UNfP5GFtlu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30025 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com --- Comment #4 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- In description of AutoLinkBiblios, there is a typo Do/Don't attempt to **utomatically** link headings when saving records in the cataloging module, obeys LinkerRelink and CatalogModuleRelink for record edits. The rest seems to work. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 21:43:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 19:43:37 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-yinvVXzepH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 --- Comment #32 from David Nind <david at davidnind.com> --- (In reply to Fridolin Somers from comment #31) > Warns uninitialized value in sprintf removed. Thanks Fridolin - the warnings are now removed and things work as expected. The only thing that's not working for me is when the date of birth is empty. Is this supposed to show in the list of data inconsistencies? For example, if a patron has no date of birth but is in the patron category with an age range from 18-99, then I would expect it to show - as there is no way to know how old they are. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 22:22:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 20:22:47 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-bKaB4iVPv8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 --- Comment #33 from Fridolin Somers <fridolin.somers at biblibre.com> --- (In reply to David Nind from comment #32) > (In reply to Fridolin Somers from comment #31) > > Warns uninitialized value in sprintf removed. > > Thanks Fridolin - the warnings are now removed and things work as expected. > > The only thing that's not working for me is when the date of birth is empty. > > Is this supposed to show in the list of data inconsistencies? For example, > if a patron has no date of birth but is in the patron category with an age > range from 18-99, then I would expect it to show - as there is no way to > know how old they are. Hi We decided in comment 6 to skip patron with no date of birth. So indeed they do not show in list of data inconsistencies. Some patron can be a virtual person (like a school) so no date of birth. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 22:48:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 20:48:05 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-kMPyjPLaja@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 22:48:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 20:48:10 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-PQgmMrr6d6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136665|0 |1 is obsolete| | --- Comment #34 from David Nind <david at davidnind.com> --- Created attachment 136750 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136750&action=edit Bug 26311: Add patron invalid age to search_for_data_inconsistencies.pl Patron categories may have age limits. Add to script misc/maintenance/search_for_data_inconsistencies.pl the list of patrons which age is invalid regarding there category. Test plan : 1) Create an adult patron category limited to 18-99 years 2) Create a patron in the category 3) Edit in database its date of birth so that he is 17 years old 4) Run misc/maintenance/search_for_data_inconsistencies.pl => You see the patron Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 22:48:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 20:48:15 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-VLQXw9zfmH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136666|0 |1 is obsolete| | --- Comment #35 from David Nind <david at davidnind.com> --- Created attachment 136751 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136751&action=edit Bug 26311: (QA follow-up) Rephrase output message This is a suggestion for rephrasing the message slightly: Before: * Patron borrowernumber=15 in category 'J' has invalid age '56' After: * Patron borrowernumber=37 has an invalid age of 37 for their category 'K' Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de> Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 22:48:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 20:48:20 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-cdfQvYLJbb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136667|0 |1 is obsolete| | --- Comment #36 from David Nind <david at davidnind.com> --- Created attachment 136752 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136752&action=edit Bug 26311: (follow-up) loop through the patron with date of birth and in categories having age limits Also added category limits in message, for example (12-18) Check patron : - with no date of birth - with invalid age in category having age required - with invalid age in category having upper age limit - with invalid age in category having age required and upper age limit Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 22:48:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 20:48:25 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-Cs6P0c2Zga@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136668|0 |1 is obsolete| | --- Comment #37 from David Nind <david at davidnind.com> --- Created attachment 136753 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136753&action=edit Bug 26311: (follow-up) Fix undefined values in sprintf Avoid warns 'Use of uninitialized value in sprintf' by using '0' if lower age is undefined 'unlimited' if upper are is undefined Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 22:49:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 20:49:39 +0000 Subject: [Koha-bugs] [Bug 26311] Add patron invalid age to search_for_data_inconsistencies.pl In-Reply-To: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26311-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26311-70-bT1dM73QhT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26311 --- Comment #38 from David Nind <david at davidnind.com> --- (In reply to Fridolin Somers from comment #33) > We decided in comment 6 to skip patron with no date of birth. > So indeed they do not show in list of data inconsistencies. > Some patron can be a virtual person (like a school) so no date of birth. I didn't see that, and that makes sense. Now signed-off! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 23:24:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 21:24:21 +0000 Subject: [Koha-bugs] [Bug 23469] Update of fr-CA default MARC21 framework In-Reply-To: <bug-23469-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-23469-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-23469-70-GZ2PMckxJl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23469 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #2 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- This is now in the po files -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 23:42:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 21:42:43 +0000 Subject: [Koha-bugs] [Bug 31068] New: Context for translation: Print (verb) vs. Print (noun) Message-ID: <bug-31068-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31068 Bug ID: 31068 Summary: Context for translation: Print (verb) vs. Print (noun) Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: I18N/L10N Assignee: koha-bugs at lists.koha-community.org Reporter: caroline.cyr-la-rose at inlibro.com QA Contact: testopia at bugs.koha-community.org CC: frederic at tamil.fr In English, the word "print" is the same whether it is a verb (to print something) or a noun (a print of something). In French, these two have different spellings, "Imprimer" or "Imprimé" (almost the same, and pronounced the same, but when one is used instead of the other, it hurts my eyes!) When the word is in a sentence, it's not too difficult to translate, but in cases where the string to translate is simply "Print", it is often used in different cases (noun or verb). Here are the strings where "Print" is alone #: koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt:61 #: koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt:109 #: koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt:111 #: koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt:39 #: koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt:479 #: koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt:98 #: koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc:171 #: koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc:5 #: koha-tmpl/intranet-tmpl/prog/en/includes/modals/cashup_summary.inc:29 #: koha-tmpl/intranet-tmpl/prog/en/includes/str/tinymce_i18n.inc:2 #, c-format msgid "Print" msgstr "Imprimer" #: koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt:118 #: koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc:22 #, c-format msgid "Print " msgstr "Imprimer " In the following pages, it is meant as a verb ("Print" button): basket.tt boraccount.tt routing-preview-slip.tt cat-toolbar.inc columns_settings.inc cashup_summary.inc tinymce_i18n.inc returns.tt members-toolbar.inc In the following pages, it is meant as a noun (type of message transport type, as opposed to email or sms): letter.tt overduerules.tt I propose to add some context where the meaning is the type of message transport. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 23:42:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 21:42:54 +0000 Subject: [Koha-bugs] [Bug 31068] Context for translation: Print (verb) vs. Print (noun) In-Reply-To: <bug-31068-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31068-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31068-70-0Y6pOSTQYv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31068 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |caroline.cyr-la-rose at inlibr |ity.org |o.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 23:56:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 21:56:02 +0000 Subject: [Koha-bugs] [Bug 29632] Callnumber sorting is incorrect in Elasticsearch In-Reply-To: <bug-29632-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29632-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29632-70-4HfQgxVNWg@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29632 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Jun 29 23:56:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 21:56:06 +0000 Subject: [Koha-bugs] [Bug 29632] Callnumber sorting is incorrect in Elasticsearch In-Reply-To: <bug-29632-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29632-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29632-70-aEglMP1d0z@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29632 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136682|0 |1 is obsolete| | --- Comment #4 from David Nind <david at davidnind.com> --- Created attachment 136754 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136754&action=edit Bug 29632: Don't sort cn-sort numerically When defining our sort fields in we defined all as 'numeric' For other string containing numbers this is likely correct, however, for callnumbers it is not. e.g. E45 should sort before E7 This patch adds a new 'callnumber' type and deifnes this for cn-sort and adds to the field maping a sort without numeric set To test: 0 - Be using ES with Koha 1 - On records with single item, add callnumbers: VA65 E7 R63 1984 VA65 E7 T35 1990 VA65 E45 R67 1985 2 - Add public note 'shrimp' or something to make them easily searchable as a group 3 - Search for 'shrimp', sort by callnumber 4 - Note E45 comes last, it should come first 5 - Apply patch 6 - Reset ES mappings 7 - Reindex ES 8 - Repeat search 9 - Sorting should be correct when set to callnumber Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 00:00:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 22:00:53 +0000 Subject: [Koha-bugs] [Bug 29632] Callnumber sorting is incorrect in Elasticsearch In-Reply-To: <bug-29632-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29632-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29632-70-26dt1hIQy8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29632 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #5 from David Nind <david at davidnind.com> --- Testing notes (using koha-testing-docker): - After applying the patch (step 5) you need to run a database update (updatedatabase0 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 00:20:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 22:20:08 +0000 Subject: [Koha-bugs] [Bug 30884] Incomplete replace of jQuery UI tabs in batch patron modification breaks the form sending In-Reply-To: <bug-30884-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30884-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30884-70-DKvHUE6rO7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30884 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30475 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30475 [Bug 30475] Convert tools pages tabs to Bootstrap (part 2) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 00:20:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 22:20:08 +0000 Subject: [Koha-bugs] [Bug 30475] Convert tools pages tabs to Bootstrap (part 2) In-Reply-To: <bug-30475-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30475-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30475-70-jzMmPEreLN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30475 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30884 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30884 [Bug 30884] Incomplete replace of jQuery UI tabs in batch patron modification breaks the form sending -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 01:12:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 23:12:47 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-ItnQG87byu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 01:12:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 23:12:51 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-V2OWjoLuAl@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136743|0 |1 is obsolete| | --- Comment #6 from David Nind <david at davidnind.com> --- Created attachment 136755 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136755&action=edit Bug 29987: Add register support to manual credits This patch adds the register and transaction type selection options to the manual credit page. Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 01:26:43 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 23:26:43 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-qrMrWOTli4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #7 from David Nind <david at davidnind.com> --- Testing notes (using koha-testing-docker): 1. Followed steps in the bug description to replicate the issue. 2. After applying the patch, repeated these steps to add some new transactions. There are now dropdown lists for transaction type and cash register when adding manual credits. 3. These transactions are now included in the cash summary report for the library, and a cashup can be recorded. Notes: 1. If the EnablePointOfSale system preference is disabled, but UseCashRegisters is enabled, then to get to the cash management area to cashup go to Tools > Cash management > Cash summary for <currentlibrary> (http://127.0.0.1:8081/cgi-bin/koha/pos/registers.pl) 2. I'm assuming that libraries would just use this going forward to manage cash - previous cash manual credits would have already been dealt with in someway (in terms of reconciling), so there is no need to update existing transactions. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 01:35:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 23:35:16 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-1UHfi7suj3@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the recording of release notes| |manual credits for patrons | |so that these transactions | |are now included in the | |cash summary report for a | |library. When adding a | |manual credit, there are | |now fields for choosing the | |transaction type and cash | |register. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 01:46:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 23:46:54 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-Wm3MsPm60t@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 --- Comment #8 from David Nind <david at davidnind.com> --- After testing this, signing off, and adding a draft release note, I noticed that: 1. In the cash summary for the library, the amounts are now included in the income (cash) total (good!). 2. However, they are not included in the bankable column (bad?). 3. In the details for the cash register, for transactions there is a total, but it says "No data available in table" (and the same for the older transactions). 4. If you do a cashup, these transactions are not included (if there are no other cash transactions, then do a cashup the message is "Please confirm that you have removed 0.00 from the cash register and left a float of 0.00."). My query: If you receive cash (say, paying charges in advance) and create a manual credit, then should it be included in items 2-4? I think it should, as when you go to do the banking you want it included in that total so that everything reconciles. However, other manual credits, for example if you write off charges, shouldn't be as you have neither added to or taken anything out of the cash register. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 01:58:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 23:58:35 +0000 Subject: [Koha-bugs] [Bug 30025] BiblioAddsAuthorities is poorly named In-Reply-To: <bug-30025-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30025-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30025-70-6zdU438SY4@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30025 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 01:59:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 29 Jun 2022 23:59:06 +0000 Subject: [Koha-bugs] [Bug 30468] koha-mysql does not honor Koha's timezone setting In-Reply-To: <bug-30468-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30468-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30468-70-LHK9WdjtXU@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30468 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #6 from David Cook <dcook at prosentient.com.au> --- Ohhh good catch. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 02:01:51 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 00:01:51 +0000 Subject: [Koha-bugs] [Bug 12758] Failure when loading or parsing XSLT stylesheets over HTTPS In-Reply-To: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-12758-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-12758-70-0wx4FAG9Bx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12758 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 02:03:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 00:03:56 +0000 Subject: [Koha-bugs] [Bug 30982] Use the REST API for background job list view In-Reply-To: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30982-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30982-70-TfYmwWJDTC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982 David Cook <dcook at prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 02:24:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 00:24:19 +0000 Subject: [Koha-bugs] [Bug 31069] New: Did you mean? in the OPAC - links have <span> tags Message-ID: <bug-31069-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31069 Bug ID: 31069 Summary: Did you mean? in the OPAC - links have <span> tags Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: david at davidnind.com QA Contact: testopia at bugs.koha-community.org Created attachment 136756 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136756&action=edit Screenshot - OPAC search showing <span> tags for Did you mean? In master, when "Did you mean?" is enabled <span> tags are exposed (see attached screenshot). To replicate: 1. Enable "Did you mean?": . go to Administration > Additional parameters > Did you mean? . put a tick in each plugin and save the configuration 2. In the OPAC, search for 'open source' This is showing only in master, and not in 22.05.x. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 02:47:44 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 00:47:44 +0000 Subject: [Koha-bugs] [Bug 15326] Add CMS feature In-Reply-To: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15326-70-4a4md8WFn9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15326 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 02:47:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 00:47:52 +0000 Subject: [Koha-bugs] [Bug 15326] Add CMS feature In-Reply-To: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15326-70-t6pkM4DfzT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15326 Aleisha Amohia <aleisha at catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136432|0 |1 is obsolete| | --- Comment #160 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Created attachment 136757 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136757&action=edit Bug 15326: Using AdditionalContents for custom pages on OPAC This page utilises the Additional Contents feature to add custom pages to the staff client and the OPAC in the user's desired language. To test: 1. Apply patch and restart services 2. In the staff client, go to Tools, then go to the new 'Pages' page 3. Add a new page to display on both the staff client and OPAC. 4. Confirm the URLs in the Page URL column work as expected. 5. Confirm that any pages made for the staff client only do not show in the OPAC, and that any pages made for the OPAC only do not show in the staff client. 6. Confirm that pages do not show on the OPAC main page where news items show. Confirm news items show on the OPAC main page as expected. Sponsored-by: Chartered Accountants Australia and New Zealand -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 02:49:31 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 00:49:31 +0000 Subject: [Koha-bugs] [Bug 31070] New: [DOCS] Did you mean? section needs an update Message-ID: <bug-31070-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31070 Bug ID: 31070 Summary: [DOCS] Did you mean? section needs an update Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Documentation Assignee: koha-bugs at lists.koha-community.org Reporter: david at davidnind.com QA Contact: testopia at bugs.koha-community.org The Did you mean? section in the administration chapter needs an update (https://koha-community.org/manual/22.05/en/html/administration.html#did-you-mean). Updates required include: - Updated screenshots - Remove important note about it only working in the OPAC - Add information about the LibrisSpellCheck plugin Related changes to the searching preferences page: - Punctuation and spelling - Link to administration > did you mean section Other changes: - Check whether any update to the OPAC page is required -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 02:49:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 00:49:46 +0000 Subject: [Koha-bugs] [Bug 15326] Add CMS feature In-Reply-To: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15326-70-XlcqtzS3su@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15326 --- Comment #161 from Aleisha Amohia <aleisha at catalyst.net.nz> --- Thanks for testing David. I changed 'View on staff client' to 'View on librarian interface' to match the language used elsewhere in the Additional Contents tools. I decided to remove the navigation for pages as, you're right, they didn't really make sense. I also removed the View buttons. Instead I added a new column to the Pages table to include the new Page URLs so they can be inserted where the library chooses, and be used to View. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 03:32:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 01:32:53 +0000 Subject: [Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search In-Reply-To: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27113-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27113-70-PtT7n8Fg9a@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=25532 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 03:32:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 01:32:53 +0000 Subject: [Koha-bugs] [Bug 25532] Add a wikipedia-style search suggestion feature to the OPAC In-Reply-To: <bug-25532-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25532-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25532-70-FTIlD3c6Ap@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25532 David Nind <david at davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=27113 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 05:00:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 03:00:45 +0000 Subject: [Koha-bugs] [Bug 31069] Did you mean? in the OPAC - links have <span> tags In-Reply-To: <bug-31069-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31069-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31069-70-D0b55d0hvC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31069 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Depends on| |30733 Status|NEW |ASSIGNED Assignee|oleonard at myacpl.org |victor at tuxayo.net --- Comment #1 from Victor Grousset/tuxayo <victor at tuxayo.net> --- oops, it must be from bug 30733 ^^" Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 [Bug 30733] Simplify translatable strings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 05:00:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 03:00:45 +0000 Subject: [Koha-bugs] [Bug 30733] Simplify translatable strings In-Reply-To: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30733-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30733-70-i8NKdMS9zF@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31069 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31069 [Bug 31069] Did you mean? in the OPAC - links have <span> tags -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 05:04:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 03:04:18 +0000 Subject: [Koha-bugs] [Bug 31069] Did you mean? in the OPAC - links have <span> tags In-Reply-To: <bug-31069-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31069-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31069-70-sHCKDJyxBV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31069 --- Comment #2 from Victor Grousset/tuxayo <victor at tuxayo.net> --- > This is showing only in master, and not in 22.05.x. We can expect it to be in 22.05.02 since it ships 30733. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 06:40:14 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 04:40:14 +0000 Subject: [Koha-bugs] [Bug 30430] UNIMARC XSLT : displaying field B_214 In-Reply-To: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30430-70-wZsR3OYJPp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30430 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m QA Contact|testopia at bugs.koha-communit |fridolin.somers at biblibre.co |y.org |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 06:56:01 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 04:56:01 +0000 Subject: [Koha-bugs] [Bug 30430] UNIMARC XSLT : displaying field B_214 In-Reply-To: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30430-70-pv8Ga4O7FY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30430 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134667|0 |1 is obsolete| | --- Comment #15 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136758 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136758&action=edit Bug 30430: UNIMARC XSLT add field B214 display test plan : - Apply patch - Find a record with a B214 - Check on both Opac-Details and Opac-Result that the field is displayed. - Do the same checks on catalogue/search results and catalogue/details in Staff interface. - Add a 210 field to the record (legacy) - It should be displayed as well Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 06:56:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 04:56:06 +0000 Subject: [Koha-bugs] [Bug 30430] UNIMARC XSLT : displaying field B_214 In-Reply-To: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30430-70-8kOrNtgZIS@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30430 --- Comment #16 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136759 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136759&action=edit Bug 30430: (QA follow-up) fix display of 210 only if no 214 + added 214r/s Signed-off-by: David Nind <david at davidnind.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 06:56:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 04:56:10 +0000 Subject: [Koha-bugs] [Bug 30430] UNIMARC XSLT : displaying field B_214 In-Reply-To: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30430-70-QO175TPeA0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30430 --- Comment #17 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136760 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136760&action=edit Bug 30430: (QA follow-up) Several fixes Several fixes : - Replace tab with spaces tag_210 : - Class 'value' and not 'valeur' - Loop on subfields must restrict to abcdg otherwise last() may not be correct (ie 214r and 214s) tag_214 : - Condition for coma after b should be same as after a : "position() != last()" tag_210 and tag_214 : - Space before ':' like in other fields - ':' before c or g does not exist in opac, removed from intranet file - Search links in intranet fixed (where composed with opac-search ^^) - Search links using 'str:encode-uri' like other places - Simplify title attribute with only 'Search for publisher' => Bad idea to use double quotes in a text tag_214_s and tag_214_r : - Loop on field+subfield otherwise last() may not be correct I've fixed intranet and copied to OPAC (only adapted search links) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:05:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:05:28 +0000 Subject: [Koha-bugs] [Bug 30430] UNIMARC XSLT : displaying field B_214 In-Reply-To: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30430-70-zhWbpuvLCu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30430 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #18 from Fridolin Somers <fridolin.somers at biblibre.com> --- I've tested with example record. with 210 with both 214 and 210 with 214 missing some subfields : 214abcd 214bcd 214cd 214abc 214ab 214a 214c 214d Found a lot of real bugs and some optimizations. I passe QA. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:05:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:05:54 +0000 Subject: [Koha-bugs] [Bug 30430] UNIMARC XSLT : displaying field B_214 In-Reply-To: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30430-70-KKlXOaL4Hc@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30430 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136758|0 |1 is obsolete| | --- Comment #19 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136761 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136761&action=edit Bug 30430: UNIMARC XSLT add field B214 display test plan : - Apply patch - Find a record with a B214 - Check on both Opac-Details and Opac-Result that the field is displayed. - Do the same checks on catalogue/search results and catalogue/details in Staff interface. - Add a 210 field to the record (legacy) - It should be displayed as well Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:05:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:05:59 +0000 Subject: [Koha-bugs] [Bug 30430] UNIMARC XSLT : displaying field B_214 In-Reply-To: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30430-70-CEPAGfnOkD@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30430 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136759|0 |1 is obsolete| | --- Comment #20 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136762 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136762&action=edit Bug 30430: (QA follow-up) fix display of 210 only if no 214 + added 214r/s Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:06:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:06:04 +0000 Subject: [Koha-bugs] [Bug 30430] UNIMARC XSLT : displaying field B_214 In-Reply-To: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30430-70-Rsc4kNsUf8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30430 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136760|0 |1 is obsolete| | --- Comment #21 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136763 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136763&action=edit Bug 30430: (QA follow-up) Several fixes Several fixes : - Replace tab with spaces tag_210 : - Class 'value' and not 'valeur' - Loop on subfields must restrict to abcdg otherwise last() may not be correct (ie 214r and 214s) tag_214 : - Condition for coma after b should be same as after a : "position() != last()" tag_210 and tag_214 : - Space before ':' like in other fields - ':' before c or g does not exist in opac, removed from intranet file - Search links in intranet fixed (where composed with opac-search ^^) - Search links using 'str:encode-uri' like other places - Simplify title attribute with only 'Search for publisher' => Bad idea to use double quotes in a text tag_214_s and tag_214_r : - Loop on field+subfield otherwise last() may not be correct I've fixed intranet and copied to OPAC (only adapted search links) Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:06:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:06:34 +0000 Subject: [Koha-bugs] [Bug 30430] UNIMARC XSLT : displaying field B_214 In-Reply-To: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30430-70-W3ERTjufdb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30430 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134668|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:07:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:07:27 +0000 Subject: [Koha-bugs] [Bug 30430] UNIMARC XSLT : displaying field B_214 In-Reply-To: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30430-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30430-70-Q38Agnd9xu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30430 --- Comment #22 from Fridolin Somers <fridolin.somers at biblibre.com> --- Great thanks for UNIMARC users ;) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:21:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:21:20 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-NOO0xXyvOC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136709|0 |1 is obsolete| | --- Comment #4 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136764 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136764&action=edit Bug 31064: Wrap local login with stylable element Test plan: 0. Apply patch 1. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACUserCSS 2. Set syspref to the following: .local-login { display: none; } 3. Go to http://localhost:8080/cgi-bin/koha/opac-main.pl 3b. Note that the local login boxes are hidden ("Log in to your account:" remains so that other login options can be supplied by OpacUserJS) 4. Click on "Log in to your account" on the top toolbar 4b. Note that the local login boxes are hidden ("Log in to your account:" remains so that other login options can be supplied by OpacUserJS) 5. Go to http://localhost:8080/cgi-bin/koha/opac-user.pl 5b. Note that the local login boxes are hidden ("Log in to your account" remains so that other login options can be supplied by OpacUserJS) Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:24:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:24:19 +0000 Subject: [Koha-bugs] [Bug 31064] Local login is difficult to style using CSS In-Reply-To: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31064-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31064-70-v5qQWSS25B@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31064 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA QA Contact|testopia at bugs.koha-communit |fridolin.somers at biblibre.co |y.org |m --- Comment #5 from Fridolin Somers <fridolin.somers at biblibre.com> --- Trivial but very useful, PQA BTW : a class on <h3>Local login</h3> would also be very useful. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:29:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:29:30 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-PfZTVcGiHB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:29:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:29:34 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-V5Kvz02lsb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136747|0 |1 is obsolete| | --- Comment #7 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136765 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136765&action=edit Bug 31062: Change description of QOTD tool in tools-home This patch changes the name and description of the QOTD tool in order to make them more consistent with the other tool names and descriptions. To test: 1) Go to Tools 2) Read the QOTD tool name and description, make sure they make sense and that there are no typos 3) Test the link to make sure it goes to the tool Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:29:48 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:29:48 +0000 Subject: [Koha-bugs] [Bug 31062] Change description of QOTD tool in tools-home In-Reply-To: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31062-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31062-70-4fFeHf9v3E@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31062 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |fridolin.somers at biblibre.co |y.org |m CC| |fridolin.somers at biblibre.co | |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:46:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:46:11 +0000 Subject: [Koha-bugs] [Bug 30152] Elasticsearch - queries with OR don't work with limits In-Reply-To: <bug-30152-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30152-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30152-70-Ckz3JL9Ukv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30152 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 07:46:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 05:46:16 +0000 Subject: [Koha-bugs] [Bug 30152] Elasticsearch - queries with OR don't work with limits In-Reply-To: <bug-30152-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30152-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30152-70-MooTrmIty5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30152 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136569|0 |1 is obsolete| | --- Comment #19 from Fridolin Somers <fridolin.somers at biblibre.com> --- Created attachment 136766 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136766&action=edit Bug 30152: Elasticsearch - queries with OR don't work with limits When a query with "OR" is combined with a limit in Elasticsearch, the precedence is not preserved and the results are not correct. To test: 1) Set SearchEngine to Elasticsearch 2) Index records in Elasticsearch 3) Do an advanced search 4) Select More options 5) Enter a value for the first Keyword (e.g. Novels) 6) Change "and" before the second Keyword to "or" 7) Enter another value for the second Keyword (e.g. Prose) 8) Limit the search (e.g. Item type Books) 9) Do the search 10) Observe that records with the first keyword are not in the results 11) Apply the patch 12) Repeat the search 13) Observe that results with both keywords are in the results 14) Sign off Sponsored-by: Lund University Library Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 08:11:47 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 06:11:47 +0000 Subject: [Koha-bugs] [Bug 22070] OpacBrowseResults has broken link back to search results In-Reply-To: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-22070-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-22070-70-AxBK46bMaa@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22070 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #12 from Fridolin Somers <fridolin.somers at biblibre.com> --- I do reproduce. Searching for bööks. Browsing from result n°18 to n°19 then n°20 does not break encoding. Browsing from result n°20 to n°19 breaks encoding. Browsing from result n°19 to n°18 does not break encoding. o_O -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 08:12:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 06:12:28 +0000 Subject: [Koha-bugs] [Bug 29987] Manual credits are not recorded for a register In-Reply-To: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29987-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29987-70-enokNaxMH2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29987 --- Comment #9 from Martin Renvoize <martin.renvoize at ptfs-europe.com> --- Thanks for reviewing David.. you've highlighted perfectly what I feared may be the case. Cashup as it stands makes some assumptions that adding cash to a register should always have an associated debt to offset. I'll try to remind myself how the maths and queries work today to see if this is resolvable. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 08:51:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 06:51:05 +0000 Subject: [Koha-bugs] [Bug 27809] Make entries from 'modification log' tab in patron record sort by date descending as a default In-Reply-To: <bug-27809-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-27809-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-27809-70-mghPxDp9NW@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27809 Magnus Enger <magnus at libriotech.no> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |magnus at libriotech.no --- Comment #1 from Magnus Enger <magnus at libriotech.no> --- As far as I can see, this is a problem for other "modification logs" too, not just patrons. I have seen it for record modification logs. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 10:05:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 08:05:07 +0000 Subject: [Koha-bugs] [Bug 30883] Authorities merge is limited to 100 biblio with Elasticsearch In-Reply-To: <bug-30883-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30883-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30883-70-CRJiYKyJ3l@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30883 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.10 CC| |arthur.suzuki at biblibre.com Status|Pushed to stable |Pushed to oldstable --- Comment #11 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- Pushed to 21.11.x for 21.11.10, thx! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 10:16:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 08:16:02 +0000 Subject: [Koha-bugs] [Bug 30972] "Replace existing covers" checkbox replaces ALL local covers for a biblio, not only the specific item's covers In-Reply-To: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30972-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30972-70-5BkBUvI5Cb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30972 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to stable |RESOLVED CC| |arthur.suzuki at biblibre.com --- Comment #8 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- I don't reproduce the issue on 21.11.x. not backporting :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 10:34:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 08:34:28 +0000 Subject: [Koha-bugs] [Bug 30234] Serial local covers don't appear in the staff interface for other libraries with SeparateHoldings In-Reply-To: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30234-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30234-70-rmTNcAsAgK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30234 Arthur Suzuki <arthur.suzuki at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arthur.suzuki at biblibre.com Version(s)|22.11.00, 22.05.01 |22.11.00, 22.05.01, released in| |21.11.10 Status|Pushed to stable |Pushed to oldstable --- Comment #27 from Arthur Suzuki <arthur.suzuki at biblibre.com> --- patch fixes the issue on 21.11.x, pushed for 21.11.10 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 10:38:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 08:38:52 +0000 Subject: [Koha-bugs] [Bug 26247] Search terms retained in header search creates UX inconsistency In-Reply-To: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26247-70-TWHvrsXIID@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26247 Florian <florian.bontemps at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 10:39:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 08:39:02 +0000 Subject: [Koha-bugs] [Bug 26247] Search terms retained in header search creates UX inconsistency In-Reply-To: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26247-70-Ukdcb1h0BP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26247 Florian <florian.bontemps at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136683|0 |1 is obsolete| | --- Comment #39 from Florian <florian.bontemps at biblibre.com> --- Created attachment 136767 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136767&action=edit Bug 26247: [ALTERNATE] Adding 2 Sysprefs for Search Terms This patch adds two system preferences options : 'RetainCatalogSearchTerms' and 'RetainPatronsSearchTerms'. If enabled, search terms will be retained between searches made from, respectively, the Search Catalog header and the Checkout or Search Patrons headers. If disabled, the searchbars will clear out between page loads. Attention, this is an alternate solution from the previous patches, ONLY apply this patch when testing and not the previous ones.Changed the syspref wording as well. To test: 1 - From the staff client, search some terms using the Check out header search bar. 2 - Confirm search terms are retained. 3 - Do Step 1-2 twice again, this time using the Search patrons and Search the catalog. 4 - Apply patch (again, only this one), update database. 5 - In the system preferences, look for RetainCatalogSearchTerms and set it to 'don't retain'. 6 - Use the checkout head search bar again, confirm that search terms aren't retained after page load. 7 - Do Step 5-6 once again, this time with the RetainPatronsSearchTerms and the Search Patrons and Search the catalog headers. 8 - Search boxes should be cleared. Thanks-to: Fridolin Somers and Nick Clemens for the bases I built on. Signed-off-by: Florian Bontemps <florian.bontemps at biblibre.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 10:41:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 08:41:24 +0000 Subject: [Koha-bugs] [Bug 26247] Search terms retained in header search creates UX inconsistency In-Reply-To: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-26247-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-26247-70-69RdGxFIhJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26247 Florian <florian.bontemps at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |florian.bontemps at biblibre.c | |om --- Comment #40 from Florian <florian.bontemps at biblibre.com> --- This should work now as a standalone patch, do not apply the previous ones when testing my proposed solution, as this does not build on what was proposed first. Also rephrased the system preferences texts according to David's suggestion. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 10:50:03 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 08:50:03 +0000 Subject: [Koha-bugs] [Bug 31071] New: Bug 28321 removed date due in results page Message-ID: <bug-31071-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31071 Bug ID: 31071 Summary: Bug 28321 removed date due in results page Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org Bug 28321 changed the TT of results page. It removed date due for onloan items : https://git.koha-community.org/Koha-community/Koha/src/branch/21.05.x/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt#L617 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 10:50:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 08:50:10 +0000 Subject: [Koha-bugs] [Bug 31071] Bug 28321 removed date due in results page In-Reply-To: <bug-31071-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31071-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31071-70-WOVQ8ekbW6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31071 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |28321 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28321 [Bug 28321] Use template block for display of items in search results -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 10:50:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 08:50:10 +0000 Subject: [Koha-bugs] [Bug 28321] Use template block for display of items in search results In-Reply-To: <bug-28321-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28321-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28321-70-kM0SyanwFH@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28321 Fridolin Somers <fridolin.somers at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31071 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31071 [Bug 31071] Bug 28321 removed date due in results page -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 11:04:53 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 09:04:53 +0000 Subject: [Koha-bugs] [Bug 31071] Bug 28321 removed date due in results page In-Reply-To: <bug-31071-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31071-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31071-70-uoSvngqty6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31071 Emmanuel Bétemps <e.betemps at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |e.betemps at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 12:34:58 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 10:34:58 +0000 Subject: [Koha-bugs] [Bug 30619] Add the option to email receipts as an alternative to printing In-Reply-To: <bug-30619-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30619-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30619-70-PIFBoGiqiN@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30619 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|martin.renvoize at ptfs-europe |isobel.graham09 at gmail.com |.com | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 13:40:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 11:40:08 +0000 Subject: [Koha-bugs] [Bug 29925] Add a 'set new password' page for patron's with expired passwords In-Reply-To: <bug-29925-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29925-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29925-70-09SudoMaPO@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29925 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Change sponsored?|--- |Sponsored -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 13:40:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 11:40:13 +0000 Subject: [Koha-bugs] [Bug 29926] Add ability for superlibrarians to edit password expiration dates In-Reply-To: <bug-29926-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29926-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29926-70-qBjaxxcTHG@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29926 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Change sponsored?|--- |Sponsored -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 13:40:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 11:40:28 +0000 Subject: [Koha-bugs] [Bug 29924] Introduce password expiration to patron categories In-Reply-To: <bug-29924-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29924-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29924-70-XbuVnGEHma@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29924 Nick Clemens <nick at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Change sponsored?|--- |Sponsored -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 14:28:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 12:28:00 +0000 Subject: [Koha-bugs] [Bug 31072] New: Remove direct CSV export in itemsearch.pl Message-ID: <bug-31072-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31072 Bug ID: 31072 Summary: Remove direct CSV export in itemsearch.pl Change sponsored?: --- Product: Koha Version: 21.11 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: simon.hohl at dainst.org QA Contact: testopia at bugs.koha-community.org I am not 100% sure if this is something you are considering in need of fixing, but anyway: We just had a colleague crashing our system by running multiple searches with cgi-bin/koha/catalogue/itemsearch.pl. The search scope was rather broad (a lot of entries) and the output option had been set to CSV (without going to the "screen" view). Because the interface did not give any feedback after starting the search (it just indicated "website loading"), the colleague refreshed the browser window and started another search. The result: We had 2 processes running on the server, using 8gb of RAM each, thus causing our server to grind to a halt. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 14:38:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 12:38:16 +0000 Subject: [Koha-bugs] [Bug 30975] Framework plugins do not work on cloned fields/subfields In-Reply-To: <bug-30975-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30975-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30975-70-yrEcbJbELf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30975 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com --- Comment #2 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Hi Julian, I would appreciate a more detailed test plan. barcode.pl is linked to an item field for me, so I can't clone it. All the other plugins for specific fields (e.g. 000, 005, 008) are on non-repeatable fields too. Do we have to modify the framework in order to test this? Thanks, Caroline -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:04:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:04:16 +0000 Subject: [Koha-bugs] [Bug 15326] Add CMS feature In-Reply-To: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15326-70-i8JXfLwC4h@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15326 sandboxes at biblibre.com <sandboxes at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136757|0 |1 is obsolete| | --- Comment #162 from sandboxes at biblibre.com <sandboxes at biblibre.com> --- Created attachment 136768 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136768&action=edit Bug 15326: Using AdditionalContents for custom pages on OPAC This page utilises the Additional Contents feature to add custom pages to the staff client and the OPAC in the user's desired language. To test: 1. Apply patch and restart services 2. In the staff client, go to Tools, then go to the new 'Pages' page 3. Add a new page to display on both the staff client and OPAC. 4. Confirm the URLs in the Page URL column work as expected. 5. Confirm that any pages made for the staff client only do not show in the OPAC, and that any pages made for the OPAC only do not show in the staff client. 6. Confirm that pages do not show on the OPAC main page where news items show. Confirm news items show on the OPAC main page as expected. Sponsored-by: Chartered Accountants Australia and New Zealand Signed-off-by: Thibault Kero <thibault.keromnes at univ-paris8.fr> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:08:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:08:36 +0000 Subject: [Koha-bugs] [Bug 15326] Add CMS feature In-Reply-To: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15326-70-c3PaEUMJ5i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15326 Thibault Keromnès <thibault.keromnes at univ-paris8.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |thibault.keromnes at univ-pari | |s8.fr -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:10:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:10:13 +0000 Subject: [Koha-bugs] [Bug 25711] Move ExpireReservesMaxPickUpDelayCharge to the circulation rules In-Reply-To: <bug-25711-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25711-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25711-70-6TU17bM5F9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25711 --- Comment #67 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136769 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136769&action=edit Bug 25711: Deprecate ExpireReservesMaxPickUpDelayCharge Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:12:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:12:28 +0000 Subject: [Koha-bugs] [Bug 15523] Move a number of sysprefs to circulation rules (Omnibus) In-Reply-To: <bug-15523-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15523-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15523-70-SonYVHYvOT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15523 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:13:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:13:54 +0000 Subject: [Koha-bugs] [Bug 25711] Move ExpireReservesMaxPickUpDelayCharge to the circulation rules In-Reply-To: <bug-25711-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-25711-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-25711-70-jtgZARiuIA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25711 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Failed QA --- Comment #68 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Petro et al, please look at the follow-up I've added. I think there's still some little work to do here. In particular, running: $ git grep ExpireReservesMaxPickUpDelayCharge showed that some spots need thought still. Places where templates still check the syspref when they should be checking the "effective value", even without my follow-up. Looking forward to the upcoming follow-ups for pushing this ASAP. Thanks! PS It also felt like we could move ExpireReservesMaxPickupDelay and put them both on its own section below the big matrix. We can do it on a follow-up bug of course. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:25:17 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:25:17 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-A1f3Bgux9T@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Marie-Luce Laflamme <marie-luce.laflamme at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marie-luce.laflamme at inlibro | |.com Status|Needs Signoff |Signed Off --- Comment #7 from Marie-Luce Laflamme <marie-luce.laflamme at inlibro.com> --- testing note: add an item replacement cost (952$ v) on checkout items it works well -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:30:02 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:30:02 +0000 Subject: [Koha-bugs] [Bug 31061] OPACSuppress does not work properly with Elasticsearch In-Reply-To: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31061-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31061-70-4PpnOoimUu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31061 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com --- Comment #4 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- I must not be completely awake, but I cannot reproduce the original "problematic" behaviour. Without applying the patch, using ES, the number of records fluctuates according to 942$n being Yes (1) or No (0) and OpacSuppression being on or off. There are 3 records with 1 in 942$n With OpacSuppression = 405 Without OpacSuppression = 408 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:41:52 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:41:52 +0000 Subject: [Koha-bugs] [Bug 29777] Fields 580 are wrong displayed in summary column In-Reply-To: <bug-29777-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29777-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29777-70-b4OHloV5jP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29777 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com Status|Needs Signoff |Failed QA --- Comment #4 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- I agree that the test plan is not very clear. What are we supposed to put in 580 (and which subfield(s)?) Are we supposed to put ; ? I catalogued my authority's 580 field as follows 580$v Form subdivision 580$x General subdivision 580$y Chronological subdivision 580$z Geographic subdivision (yes I actually put the name of the subfield in the subfield) The summary when searching for authorities looks like this (without patch) Personal Names: Ó Cadhain, Máirtín. see also: Form subdivision General subdivision Chronological subdivision Geographic subdivision Please review test plan and make it more detailed -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:42:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:42:37 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-svjz74tW2S@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 ByWater Sandboxes <bws.sandboxes at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136699|0 |1 is obsolete| | --- Comment #8 from ByWater Sandboxes <bws.sandboxes at gmail.com> --- Created attachment 136770 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136770&action=edit Bug 31051: Show patron savings on the OPAC This new feature shows a patron how much they have saved by using the library rather than purchasing items. Savings are calculated based on item replacement prices. The system preference allows you to choose where to display the savings - the user page, the summary box on the OPAC homepage, or the checkout history page. To test: 1. Update database and restart services 2. Confirm the new OPACShowSavings system preference is found in the OPAC tab of Administration -> global system preferences. There should be no options selected. 3. Find a patron with a checkout history, or check out a few items to a patron. 4. Test with different values of OPACShowSavings and confirm that savings are shown in the expected places. Sponsored-by: Horowhenua Libraries Trust Signed-off-by: Marie-Luce <marie-luce.laflamme at inlibro.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:47:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:47:39 +0000 Subject: [Koha-bugs] [Bug 30268] When creating an order from a staged file, mandatory item subfields that are empty do not block form submission In-Reply-To: <bug-30268-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30268-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30268-70-Dm1p5c7IQm@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30268 sandboxes at biblibre.com <sandboxes at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #131557|0 |1 is obsolete| | --- Comment #2 from sandboxes at biblibre.com <sandboxes at biblibre.com> --- Created attachment 136771 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136771&action=edit Bug 30268: Check mandatory fields in addorderiso2709.pl Test plan: 1. Make sure you have mandatory item subfields in the MARC bibliographic framework used in acquisitions ("ACQ" if it exists, the default framework otherwise). 2. Use the "Stage MARC records for import" tool to upload a file. Do not import the bibliographic records. 3. Create a new acquisition basket ("Create items when:" must be set to "placing an order") and add a new order from a staged file 4. Select the file you just uploaded 5. In the "Items information" tab, make sure at least one mandatory subfield is empty 6. Try to submit the form. If there are errors about other mandatory fields (like the fund for instance), fix those errors and resubmit. There should be an error message about mandatory item subfields. 7. Enter a value for the mandatory item subfields and resubmit the form. Verify that the order and the item have been correctly created. Signed-off-by: Thibault Kero <thibault.keromnes at univ-paris8.fr> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:48:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:48:23 +0000 Subject: [Koha-bugs] [Bug 31073] New: ThingISBN API being unavailable blocks loading of opac-detail when API can't be found Message-ID: <bug-31073-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31073 Bug ID: 31073 Summary: ThingISBN API being unavailable blocks loading of opac-detail when API can't be found Change sponsored?: --- Product: Koha Version: 20.05 Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: wizzyrea at gmail.com QA Contact: testopia at bugs.koha-community.org We've noticed that when the ThingISBN API is running slowly or down, that libraries that enable this preference can cause themselves a denial of service when patrons try to load the detail page of a book that has Editions. It would be good to make this not block the loading of the page, the Editions tab isn't the primary viewed tab anyway - it would be fine to load in it's data in the background. Thanks for looking, Liz -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:48:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:48:30 +0000 Subject: [Koha-bugs] [Bug 30268] When creating an order from a staged file, mandatory item subfields that are empty do not block form submission In-Reply-To: <bug-30268-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30268-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30268-70-idEnBOEJhV@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30268 Thibault Keromnès <thibault.keromnes at univ-paris8.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |thibault.keromnes at univ-pari | |s8.fr -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:49:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:49:04 +0000 Subject: [Koha-bugs] [Bug 31073] ThingISBN API being unavailable blocks loading of opac-detail when API can't be found In-Reply-To: <bug-31073-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31073-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31073-70-wQlkrdD7h1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31073 Liz Rea <wizzyrea at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wizzyrea at gmail.com --- Comment #1 from Liz Rea <wizzyrea at gmail.com> --- Specifically, when the patron clicks on the detail many times, because it appears that the page didn't load the first time. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:56:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:56:10 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-aKNVP3Djgo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Axelle Aix-Marseille Université <axelle.clarisse at univ-amu.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |axelle.clarisse at univ-amu.fr --- Comment #9 from Axelle Aix-Marseille Université <axelle.clarisse at univ-amu.fr> --- Tested with a UNIMARC sandbox : items replacement prices = 995$g in UNIMARC. It works well too. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:56:59 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:56:59 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-g2zcQxL8ci@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 sandboxes at biblibre.com <sandboxes at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136698|0 |1 is obsolete| | --- Comment #10 from sandboxes at biblibre.com <sandboxes at biblibre.com> --- Created attachment 136772 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136772&action=edit Bug 31051: Add OPACShowSavings system preference Signed-off-by: Axelle <axelle.clarisse at univ-amu.fr> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:57:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:57:04 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-z3PrBy92f5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 sandboxes at biblibre.com <sandboxes at biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136770|0 |1 is obsolete| | --- Comment #11 from sandboxes at biblibre.com <sandboxes at biblibre.com> --- Created attachment 136773 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136773&action=edit Bug 31051: Show patron savings on the OPAC This new feature shows a patron how much they have saved by using the library rather than purchasing items. Savings are calculated based on item replacement prices. The system preference allows you to choose where to display the savings - the user page, the summary box on the OPAC homepage, or the checkout history page. To test: 1. Update database and restart services 2. Confirm the new OPACShowSavings system preference is found in the OPAC tab of Administration -> global system preferences. There should be no options selected. 3. Find a patron with a checkout history, or check out a few items to a patron. 4. Test with different values of OPACShowSavings and confirm that savings are shown in the expected places. Sponsored-by: Horowhenua Libraries Trust Signed-off-by: Axelle <axelle.clarisse at univ-amu.fr> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:57:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:57:26 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-ZtFoZUuLUJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA Patch complexity|Medium patch |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:57:30 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:57:30 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-IN5utxLr3d@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136259|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:57:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:57:34 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-2R1o6t6alf@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136260|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:57:38 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:57:38 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-0PDAoaueaq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136261|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:57:41 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:57:41 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-cLjOYLQp0V@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136262|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:58:24 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:58:24 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-dzZZjypvF6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 --- Comment #49 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136774 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136774&action=edit Bug 30848: Add an ExpandCodedFields RecordProcessor filter This patch introduces a RecordProcessor filter for MARC::Record objects that replaces Koha codes with descriptions in the MARC::Record passed to the processor. Target usage: my $biblio = Koha::Biblios->find( $biblio_id, { prefetch => [ metadata ] } ); my $record = $biblio->metadata->record; my $processor = Koha::RecordProcessor->new( { filters => ('ExpandCodedFields'), options => { interface => 'opac', frameworkcode => $biblio->frameworkcode } } ); $processor->process( $record ); Test plan * Read the included unit test and confirm it makes sense and passes Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:58:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:58:29 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-nSmh849ZXt@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 --- Comment #50 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136775 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136775&action=edit Bug 30848: Expand unit tests Add to the unit tests to test Library and Itemtype expansions as well as linking multiple subfields of the same marc field to such expansions. Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:58:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:58:35 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-e39KQVgcfy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 --- Comment #51 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136776 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136776&action=edit Bug 30848: Fix issue exposed by unit tests This patch changes the 'map' to a simple for loop so that we can easily map multiple subfields to a field without overwriting the first previous subfields in the structure. Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 15:58:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 13:58:40 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-FjqfxhCHsP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 --- Comment #52 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136777 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136777&action=edit Bug 30848: Add exec flag to test Signed-off-by: Nick Clemens <nick at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:02:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:02:35 +0000 Subject: [Koha-bugs] [Bug 30918] Non-public note is visible in OPAC in Title Notes tab In-Reply-To: <bug-30918-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30918-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30918-70-bWfmXvWn8K@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30918 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:02:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:02:40 +0000 Subject: [Koha-bugs] [Bug 30918] Non-public note is visible in OPAC in Title Notes tab In-Reply-To: <bug-30918-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30918-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30918-70-wLQNRSl7kJ@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30918 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135772|0 |1 is obsolete| | --- Comment #6 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136778 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136778&action=edit Bug 30918: Allow passing filtered record to get_marc_notes This patch does the absolute bare minimum to prevent private notes from appearing on the OPAC. Test plan 1. Go to Koha Administration -> Koha bibliographic frameworks 2. View the MARC structure for your BKS framework (or something else) 3. Search for tag 583, edit subfields 4. Go to subfield 'x' - nonpublic note. Confirm the OPAC visibility checkbox is UNCHECKED. 5. Edit or create a record using the BKS framework. Put a note in the 583$x. 6. View this record in the OPAC 7. Go to the Title notes tab. Confirm the non-public note is showing, even though the framework says it should not be visible via the OPAC. 8. Apply patch 9. Confirm the non-public note is no longer visible Signed-off-by: Owen Leonard <oleonard at myacpl.org> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:08:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:08:07 +0000 Subject: [Koha-bugs] [Bug 30744] Use RecordProcessor in get_marc_notes to ensure non-public notes do not leak In-Reply-To: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30744-70-6bRIc256d0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30744 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:08:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:08:10 +0000 Subject: [Koha-bugs] [Bug 30744] Use RecordProcessor in get_marc_notes to ensure non-public notes do not leak In-Reply-To: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30744-70-9C7yz5BY7h@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30744 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135762|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:08:34 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:08:34 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-ZmeNZhpYiC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136772|0 |1 is obsolete| | --- Comment #12 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136779 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136779&action=edit Bug 31051: Add OPACShowSavings system preference Signed-off-by: Marie-Luce <marie-luce.laflamme at inlibro.com> Signed-off-by: Axelle <axelle.clarisse at univ-amu.fr> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:08:45 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:08:45 +0000 Subject: [Koha-bugs] [Bug 29051] Seen renewal methods incorrectly blocked In-Reply-To: <bug-29051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29051-70-yxdUz0aTCP@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29051 ByWater Sandboxes <bws.sandboxes at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134898|0 |1 is obsolete| | --- Comment #8 from ByWater Sandboxes <bws.sandboxes at gmail.com> --- Created attachment 136780 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136780&action=edit Bug 29051: Enable seen renewal in the staff client This patch updates the javascript for the checkouts table to add the checkbox back in for the case where too_unseen is the error returned by CanBookBeRenewed, allowing such issues to be renewed. Signed-off-by: Caroline <caroline.cyr-la-rose at inlibro.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:08:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:08:46 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-PRQSDHcvJs@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136773|0 |1 is obsolete| | --- Comment #13 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Created attachment 136781 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136781&action=edit Bug 31051: Show patron savings on the OPAC This new feature shows a patron how much they have saved by using the library rather than purchasing items. Savings are calculated based on item replacement prices. The system preference allows you to choose where to display the savings - the user page, the summary box on the OPAC homepage, or the checkout history page. To test: 1. Update database and restart services 2. Confirm the new OPACShowSavings system preference is found in the OPAC tab of Administration -> global system preferences. There should be no options selected. 3. Find a patron with a checkout history, or check out a few items to a patron. 4. Test with different values of OPACShowSavings and confirm that savings are shown in the expected places. Sponsored-by: Horowhenua Libraries Trust Signed-off-by: Marie-Luce <marie-luce.laflamme at inlibro.com> Signed-off-by: Axelle <axelle.clarisse at univ-amu.fr> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:08:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:08:49 +0000 Subject: [Koha-bugs] [Bug 29051] Seen renewal methods incorrectly blocked In-Reply-To: <bug-29051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29051-70-rUVmiww4a9@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29051 ByWater Sandboxes <bws.sandboxes at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #134899|0 |1 is obsolete| | --- Comment #9 from ByWater Sandboxes <bws.sandboxes at gmail.com> --- Created attachment 136782 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136782&action=edit Bug 29051: Update svc api to allow seen renewals This patch updates the svc/renew api endpoint to allow seen renewals when appropriate Signed-off-by: Caroline <caroline.cyr-la-rose at inlibro.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:09:08 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:09:08 +0000 Subject: [Koha-bugs] [Bug 30744] Use RecordProcessor in get_marc_notes to ensure non-public notes do not leak In-Reply-To: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30744-70-DeGCLnqide@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30744 --- Comment #23 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136783 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136783&action=edit Bug 30744: Use RecordProcessor in get_marc_notes This patch utilises RecordProcessor to filter the MARC::Record for the right interface prior to constructing the marc notes array. We also remove the use of C4::XSLT for replacing AV values in the MARC fields in preference to using the RecordProcessor filter. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:09:56 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:09:56 +0000 Subject: [Koha-bugs] [Bug 29051] Seen renewal methods incorrectly blocked In-Reply-To: <bug-29051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29051-70-zNBvv8SM63@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29051 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com Status|Needs Signoff |Signed Off --- Comment #10 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- 7 and 8 work with the patch! Thanks Andrew and Martin, this is major -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:11:09 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:11:09 +0000 Subject: [Koha-bugs] [Bug 31051] Show patron's 'savings' on the OPAC In-Reply-To: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31051-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31051-70-08xwFirlnY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31051 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #14 from Victor Grousset/tuxayo <victor at tuxayo.net> --- Marie-Luce and Axelle tested at the same time and one signoff line was lost. I just reattached the patches with both signoff lines. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:30:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:30:21 +0000 Subject: [Koha-bugs] [Bug 15326] Add CMS feature In-Reply-To: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-15326-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-15326-70-ftsA7PhJG1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15326 --- Comment #163 from Lucas Gass <lucas at bywatersolutions.com> --- When I add a custom page for the 'OPAC' or 'Librarian and OPAC' I do not see a news item but I do see the empty news container and the RSS container (.rssnews-container) and words like "RSS feed for Centerville and system-wide library news". Can that be removed if we have no actual news items? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:48:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:48:28 +0000 Subject: [Koha-bugs] [Bug 28975] Holds queue lists can show holds from all libraries even with IndependentBranches In-Reply-To: <bug-28975-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28975-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28975-70-1uKD93i30r@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28975 catherine.dupuy-lenen at univ-rennes1.fr changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA CC| |catherine.dupuy-lenen at univ- | |rennes1.fr --- Comment #3 from catherine.dupuy-lenen at univ-rennes1.fr --- I couldn't place a hold : I've got this error : "Can't call method "notforloan" on an undefined value at /kohadevbox/koha/C4/Reserves.pm line 1445". And I can't run the cronjob build_holds_queue -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:55:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:55:07 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-sie8GHRX4b@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:55:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:55:11 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-JSOPNFlRGT@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136294|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:55:18 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:55:18 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-PQ3BHwdTT8@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136295|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:55:22 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:55:22 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-Colt5aZjIq@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136296|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:55:26 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:55:26 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-tTlkkDo1Mr@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136297|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:55:29 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:55:29 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-pJ1vwmriic@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136298|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:55:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:55:33 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-3Gnvv4wOe6@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136299|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:55:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:55:35 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-ZdKJI2bgvb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136375|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:55:39 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:55:39 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-Phkw6Aiktx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136376|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:56:36 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:56:36 +0000 Subject: [Koha-bugs] [Bug 28975] Holds queue lists can show holds from all libraries even with IndependentBranches In-Reply-To: <bug-28975-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-28975-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-28975-70-I97LE0Ttkz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28975 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #4 from Victor Grousset/tuxayo <victor at tuxayo.net> --- > I couldn't place a hold : I've got this error : "Can't call method "notforloan" on an undefined value at /kohadevbox/koha/C4/Reserves.pm line 1445". Note: this is without the patch > And I can't run the cronjob build_holds_queue Note: this is from a sandbox (we are doing a test session with librarians ^^) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:56:54 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:56:54 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-7OWM08zIwA@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #33 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136784 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136784&action=edit Bug 30889: Set userenv for background jobs We need to set the userenv when we process the jobs. It is useful for stats (at least) Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:57:00 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:57:00 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-KvN3NBb93j@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #34 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136785 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136785&action=edit Bug 30889: Set interface to 'intranet' Is that correct? Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:57:05 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:57:05 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-u6ABiK9s0c@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #35 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136786 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136786&action=edit Bug 30889: (follow-up) Add context field to background_jobs This patch adds a new 'context' field to the background_jobs table to record the context in which the job was queued. Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:57:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:57:11 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-QZzBksqTXx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #36 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136787 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136787&action=edit Bug 30889: (follow-up) Record and use context in background_jobs This patch records the current context to the background_jobs table at enqueue time and then uses that record to set the context at process time. Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:57:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:57:16 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-yajIkZXZnB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #37 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136788 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136788&action=edit Bug 30889: Fix atomic update permissions Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:57:21 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:57:21 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-9vtJE3MZgK@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #38 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136789 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136789&action=edit Bug 30889: Unit tests This patch adds a unit test for the 'enqueue' part of the bug. We check that the mocked context (and interface) are recorded with the job enqueue in the new 'context' field. We do not yet test the 'process' end, where we then read the context out and set the job Context from it. Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:57:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:57:27 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-gshBu4iNaC@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #39 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136790 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136790&action=edit Bug 30889: Unit tests - process This patch adds corresponding unit tests for the 'process' side of this patchset. We check that the Context for the job to run in as set from the Job context recorded at enqueue time. Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:57:32 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:57:32 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-gT36AGUFVy@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #40 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136791 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136791&action=edit Bug 30889: Add comment for the new DB field Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:57:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:57:37 +0000 Subject: [Koha-bugs] [Bug 30889] Background jobs lead to wrong/missing info in logs In-Reply-To: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30889-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30889-70-f3R4Hk1pb5@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30889 --- Comment #41 from Tomás Cohen Arazi <tomascohen at gmail.com> --- Created attachment 136792 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136792&action=edit [DO NOT PUSH] Bug 30889: Schema update Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:58:27 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:58:27 +0000 Subject: [Koha-bugs] [Bug 30848] Introduce Koha::Filter::ExpandCodedFields In-Reply-To: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30848-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30848-70-YfJ7yb8mR0@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30848 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |rel_21_05_candidate, | |rel_21_11_candidate, | |rel_22_05_candidate -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:58:46 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:58:46 +0000 Subject: [Koha-bugs] [Bug 30744] Use RecordProcessor in get_marc_notes to ensure non-public notes do not leak In-Reply-To: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30744-70-KC50jhNHMx@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30744 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |rel_21_05_candidate, | |rel_21_11_candidate, | |rel_22_05_candidate -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:59:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:59:10 +0000 Subject: [Koha-bugs] [Bug 30918] Non-public note is visible in OPAC in Title Notes tab In-Reply-To: <bug-30918-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30918-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30918-70-X4hPLEFcW7@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30918 Tomás Cohen Arazi <tomascohen at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |rel_21_05_candidate, | |rel_21_11_candidate, | |rel_22_05_candidate CC| |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 16:59:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 14:59:33 +0000 Subject: [Koha-bugs] [Bug 29012] Some rules are not saved when left blank while editing a 'rule' line in smart-rules.pl In-Reply-To: <bug-29012-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29012-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29012-70-tlHdvP17Af@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29012 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com --- Comment #16 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- I tried to test, but I am unable to get the original "problematic" behaviour. My rules are as follows: Patron category: Teacher Item type: Books Current checkouts allowed: 10 Current on-site checkouts allowed: 10 Loan period: 10 Hard due date: None defined (I didn't fill out anything else) Patron category: Teacher Item type: All Current checkouts allowed: 10 Current on-site checkouts allowed: 10 Loan period: 10 Hard due date : Exactly on 2022-06-30 (I didn't fill out anything else) I also have the All/All rule that comes with a sandbox Patron category: All Item type: All Current checkouts allowed: 5 Current on-site checkouts allowed: 5 Loan period: 5 Hard due date: None defined (etc.) I checked out 39999000003857 (item-level itype = Music) to 23529000139858, and the due date was 2022-06-30 (today) I checked out 39999000010114 (item-level itype = Books) to the same patron and the due date was 2022-07-10 (ten days from now) I'm not sure what I did differently than the test plan. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 17:20:55 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 15:20:55 +0000 Subject: [Koha-bugs] [Bug 30744] Use RecordProcessor in get_marc_notes to ensure non-public notes do not leak In-Reply-To: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30744-70-UOgRuKqvIB@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30744 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com QA Contact|katrin.fischer at bsz-bw.de |kyle at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 17:43:50 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 15:43:50 +0000 Subject: [Koha-bugs] [Bug 31017] Add type field for vendors In-Reply-To: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31017-70-Stvo1GVein@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31017 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA CC| |caroline.cyr-la-rose at inlibr | |o.com --- Comment #5 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Hi Nick! 1) I second David in saying that the vendor type should appear on the vendor details page (supplier.pl). Right now, it only appears in booksellers.pl 2) I would add a description to the authorised value category. Maybe something like "Values that can be entered to fill in the 'Vendor type' field in the acquisitions module, that can be used for statistical purposes" (I copied from Bsort1, but feel free to put whatever description you think is best) To answer David' second comment, I think it is ok to have either free text or authorised value. It is the same about everywhere in Koha: patron sort fields, acquisitions statistical fields, drop downs in MARC frameworks, etc. In all those cases, if you add values in the AV category, the free text field will become a drop down and you cannot choose to have both free text and dropdown. The only exceptions AFAIK are in the MARC frameworks, where it is now possible to add values on the fly while cataloging; the suggestion approval/refusal reasons, where there is an 'Other' option that, when selected opens a free text field; and for the cities and towns in patron files, where you can choose from the drop down or manually enter a city. But that last one (cities) is not authorised values... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 17:44:13 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 15:44:13 +0000 Subject: [Koha-bugs] [Bug 29173] Button "replace authority record via Z39/50/SRU" doesn't pre-fill In-Reply-To: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29173-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29173-70-ggFcCWnzSo@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29173 Thibault Keromnès <thibault.keromnes at univ-paris8.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |thibault.keromnes at univ-pari | |s8.fr Status|Needs Signoff |Failed QA --- Comment #34 from Thibault Keromnès <thibault.keromnes at univ-paris8.fr> --- I have the same issue as David (from a sandbox). The patch applies but the error happens when trying to replace authorities (even by the method that works without the patch) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 17:46:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 15:46:49 +0000 Subject: [Koha-bugs] [Bug 30847] Cleanup opac-reserve.pl In-Reply-To: <bug-30847-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30847-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30847-70-5USyfX6tds@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30847 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com --- Comment #12 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Is this still to be tested or is it a duplicate or bug 27272? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 17:47:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 15:47:10 +0000 Subject: [Koha-bugs] [Bug 30847] Cleanup opac-reserve.pl In-Reply-To: <bug-30847-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30847-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30847-70-foSa9aPBfz@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30847 --- Comment #13 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- (In reply to Caroline Cyr La Rose from comment #12) > Is this still to be tested or is it a duplicate or bug 27272? *of -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 18:03:16 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 16:03:16 +0000 Subject: [Koha-bugs] [Bug 30744] Use RecordProcessor in get_marc_notes to ensure non-public notes do not leak In-Reply-To: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30744-70-UMCO3VK8Ff@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30744 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 18:03:20 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 16:03:20 +0000 Subject: [Koha-bugs] [Bug 30744] Use RecordProcessor in get_marc_notes to ensure non-public notes do not leak In-Reply-To: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30744-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30744-70-rIfdYlPeAv@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30744 Kyle M Hall <kyle at bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #136783|0 |1 is obsolete| | --- Comment #24 from Kyle M Hall <kyle at bywatersolutions.com> --- Created attachment 136793 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136793&action=edit Bug 30744: Use RecordProcessor in get_marc_notes This patch utilises RecordProcessor to filter the MARC::Record for the right interface prior to constructing the marc notes array. We also remove the use of C4::XSLT for replacing AV values in the MARC fields in preference to using the RecordProcessor filter. Signed-off-by: David Nind <david at davidnind.com> Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io> Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 18:16:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 16:16:35 +0000 Subject: [Koha-bugs] [Bug 30269] Use objects directly to display holds on request.pl In-Reply-To: <bug-30269-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30269-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30269-70-2STIOQVqXY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30269 Marie-Luce Laflamme <marie-luce.laflamme at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |marie-luce.laflamme at inlibro | |.com --- Comment #9 from Marie-Luce Laflamme <marie-luce.laflamme at inlibro.com> --- Patch doesn't apply. I've followed the test plan 1 - Place many holds on a record 2 - Set some waiting, some in transit 3 - View the holds page and note loading time 4 - Apply patch 5 - Reload 6 - Page appears the same 7 - Load time is faster (more with more holds) Somehow, the reserve/request.pl?biblionumber= display changed after applying the patch. It shows up a new button with the bugnumber. see my test in this sandboxe https://staff-test.sandbox.bywatersolutions.com/cgi-bin/koha/reserve/request.pl?biblionumber=144 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 18:18:23 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 16:18:23 +0000 Subject: [Koha-bugs] [Bug 30269] Use objects directly to display holds on request.pl In-Reply-To: <bug-30269-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30269-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30269-70-24oGPIs3mE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30269 --- Comment #10 from Marie-Luce Laflamme <marie-luce.laflamme at inlibro.com> --- Created attachment 136794 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136794&action=edit hold page incorrect display after applying the patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 18:27:04 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 16:27:04 +0000 Subject: [Koha-bugs] [Bug 30785] Typo in SIP2SortBinMapping In-Reply-To: <bug-30785-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30785-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30785-70-czavoP5zBh@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30785 --- Comment #1 from Isobel Graham <isobel.graham09 at gmail.com> --- Created attachment 136795 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136795&action=edit Bug 30785: Fixed typo in SIP2SortBinMapping To test: 1. Go to the admin page. 2. Search for the above preference. 3. Confirm that "Will" is now spelled correctly. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 18:27:49 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 16:27:49 +0000 Subject: [Koha-bugs] [Bug 30785] Typo in SIP2SortBinMapping In-Reply-To: <bug-30785-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30785-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30785-70-ra4KFgVOfY@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30785 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 18:28:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 16:28:25 +0000 Subject: [Koha-bugs] [Bug 30785] Typo in SIP2SortBinMapping In-Reply-To: <bug-30785-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30785-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30785-70-qPydTB7NSu@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30785 Martin Renvoize <martin.renvoize at ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|oleonard at myacpl.org |isobel.graham09 at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 18:58:07 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 16:58:07 +0000 Subject: [Koha-bugs] [Bug 29008] Warning when checking Koha version in plugins In-Reply-To: <bug-29008-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-29008-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-29008-70-8ySO05jB0v@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29008 Victor Grousset/tuxayo <victor at tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #17 from Victor Grousset/tuxayo <victor at tuxayo.net> --- (In reply to Martin Renvoize from comment #15) > This is all very cool thoughts.. but this bug is more around dealing with > Koha version comparisons than it is about Plugin versioning ;). That's why I was confused XD =========== I downloaded the kitchen sink plugin, changed our $MINIMUM_VERSION = "21.05"; ↓↓↓ our $MINIMUM_VERSION = "23.05.01.001"; I see the warning in the UI and Minimum Koha version: 23.05.01.001 But I don't get a warning in the logs. Any ideas? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 19:06:37 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 17:06:37 +0000 Subject: [Koha-bugs] [Bug 31074] New: Plugin metadata is kept in cache after uninstalling a plugin Message-ID: <bug-31074-70@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31074 Bug ID: 31074 Summary: Plugin metadata is kept in cache after uninstalling a plugin Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Plugin architecture Assignee: koha-bugs at lists.koha-community.org Reporter: victor at tuxayo.net QA Contact: testopia at bugs.koha-community.org == test plan == 1. Install a plugin, like the kitchen sink https://github.com/bywatersolutions/dev-koha-plugin-kitchen-sink/releases 2. Modify the .kpz and in KitchenSink.pm, change MINIMUN_VERSION 3. Uninstall the plugin 4. Install the new version 5. The Minimum Koha version column still lists the old version 6. restart services 7. The Minimum Koha version column is correct now -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 20:32:33 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 18:32:33 +0000 Subject: [Koha-bugs] [Bug 30411] Add separate shelving location column to Holds Queue In-Reply-To: <bug-30411-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30411-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30411-70-PezYoSFR8i@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30411 Rachael <rachael.laritz at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rachael.laritz at inlibro.com Status|Needs Signoff |Patch doesn't apply --- Comment #2 from Rachael <rachael.laritz at inlibro.com> --- patch does not apply -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 20:45:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 18:45:11 +0000 Subject: [Koha-bugs] [Bug 31017] Add type field for vendors In-Reply-To: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31017-70-PPuCx8Vzky@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31017 --- Comment #6 from David Nind <david at davidnind.com> --- (In reply to Caroline Cyr La Rose from comment #5) > To answer David' second comment, I think it is ok to have either free text > or authorised value. It is the same about everywhere in Koha: patron sort > fields, acquisitions statistical fields, drop downs in MARC frameworks, etc. > ... Thanks Caroline. I hadn't noticed this before, and this was the first time I'd come across it. (I've been living such a sheltered life in Kohaland!) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 21:23:15 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 19:23:15 +0000 Subject: [Koha-bugs] [Bug 30403] Update notforloan status also on check out In-Reply-To: <bug-30403-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30403-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30403-70-eCtq5PLXzI@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30403 Rachael <rachael.laritz at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rachael.laritz at inlibro.com Status|Needs Signoff |Patch doesn't apply --- Comment #4 from Rachael <rachael.laritz at inlibro.com> --- patch does not apply -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 21:46:25 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 19:46:25 +0000 Subject: [Koha-bugs] [Bug 30335] Add ability to hide/disable manual invoices and manual credits in patron accounts In-Reply-To: <bug-30335-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30335-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30335-70-qb0foY1NAM@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30335 Rachael <rachael.laritz at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 21:46:28 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 19:46:28 +0000 Subject: [Koha-bugs] [Bug 30335] Add ability to hide/disable manual invoices and manual credits in patron accounts In-Reply-To: <bug-30335-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30335-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30335-70-z0vAcB1DnR@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30335 Rachael <rachael.laritz at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #132031|0 |1 is obsolete| | --- Comment #2 from Rachael <rachael.laritz at inlibro.com> --- Created attachment 136796 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136796&action=edit Bug 30335: Add classes to invoice/credit tabs on patron accouting pages To test: 1. Apply patch and go to the patron accounting page. 2. Notice the class names for each list element on the page. 3. You can use the following CSS to try hiding each of the tabs: .transactions { display: none; } .makepayment { display: none; } .manualinvoice { display: none; } .manualcredit { display: none; } Signed-off-by: rachael <rachael at inlibro.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 22:14:40 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 20:14:40 +0000 Subject: [Koha-bugs] [Bug 30250] Configure when to apply framework defaults when cataloguing In-Reply-To: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30250-70-yfEerEwVx2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30250 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com --- Comment #11 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Hi Aleisha! I'm trying to test this using a sandbox. I was able to get the original behaviour (behaviour without the patch) and now I'm playing with the different options of the system preference. I'm at step 7 of the first test plan. When I uncheck the option so that no options are selected and save, I have a message saying 'Nothing to save'. I do have the message '(modified)' next to the pref name, but I am unable to change the pref to no options. I can save without problem when I check at least one option. I will continue the other steps, but I will not be able to sign off because I can't test without options... Thanks! Caroline -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 22:29:10 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 20:29:10 +0000 Subject: [Koha-bugs] [Bug 30250] Configure when to apply framework defaults when cataloguing In-Reply-To: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30250-70-BkCj8TpKjE@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30250 --- Comment #12 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Still in the first test plan, I'm at step 16 (Repeat steps 4 to 15 with authority types and authority records). I think that should be Repeat steps 4-12 as steps 13-15 deal with changing the framework, but this is not a possibility in authority records (unless I don't see it? But it wouldn't be logical...) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 22:33:06 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 20:33:06 +0000 Subject: [Koha-bugs] [Bug 30250] Configure when to apply framework defaults when cataloguing In-Reply-To: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30250-70-EMOeEkKGR1@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30250 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #13 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- I'm in the second test plan, step 4, I unchecked "when importing a record", but my Z39.50 record had the framework default in it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 22:36:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 20:36:11 +0000 Subject: [Koha-bugs] [Bug 31017] Add type field for vendors In-Reply-To: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-31017-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-31017-70-5Neb5d7F8Y@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31017 Rachael <rachael.laritz at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rachael.laritz at inlibro.com --- Comment #7 from Rachael <rachael.laritz at inlibro.com> --- Tester par Rachael Laritz -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 22:38:42 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 20:38:42 +0000 Subject: [Koha-bugs] [Bug 30250] Configure when to apply framework defaults when cataloguing In-Reply-To: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30250-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30250-70-yStVcbU9I2@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30250 --- Comment #14 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- I was wondering if "when importing a record" also works with the record file staging/importing tool or if it only works with Z39.50? Since I was unable to test that patch with Z39.50, I didn't try with the staging/importing tool. If it's only Z39.50, it should say so in the syspref, and add an option for when importing a file. If it's both, I will try to test that too when I am able. Thanks! Caroline (Sorry for spamming, I'm done now... :) ) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 22:44:11 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 20:44:11 +0000 Subject: [Koha-bugs] [Bug 30025] BiblioAddsAuthorities is poorly named In-Reply-To: <bug-30025-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30025-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30025-70-f0qTn4VoTb@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30025 Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #5 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> --- Just marking this as Failed QA to correct the typo. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 23:34:19 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 21:34:19 +0000 Subject: [Koha-bugs] [Bug 30580] GetItemsAvailableToFillHoldRequestsForBib should get transfers during initial query In-Reply-To: <bug-30580-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30580-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30580-70-c4huvXHmXp@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30580 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #133560|0 |1 is obsolete| | --- Comment #2 from Michal Urban <michalurban177 at gmail.com> --- Created attachment 136797 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=136797&action=edit Bug 30580: Don't use GetTransfers in GetItemsAvailableToFillHoldRequestsForBib This patch simply moves the check for transfers into the initial query Test result: Works as intended To test: 1 - Place some holds that show in the holds queue 2 - Add a manual transfer to one item 3 - Confirm it no longer hsows in the queue 4 - Apply patch 5 - Confirm item still does not appear in the queue Signed-off-by: Michal Urban <michalurban177 at gmail.com> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Jun 30 23:55:35 2022 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 30 Jun 2022 21:55:35 +0000 Subject: [Koha-bugs] [Bug 30580] GetItemsAvailableToFillHoldRequestsForBib should get transfers during initial query In-Reply-To: <bug-30580-70@https.bugs.koha-community.org/bugzilla3/> References: <bug-30580-70@https.bugs.koha-community.org/bugzilla3/> Message-ID: <bug-30580-70-DRWaiUlXON@https.bugs.koha-community.org/bugzilla3/> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30580 Michal Urban <michalurban177 at gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |michalurban177 at gmail.com Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes.