[Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113

--- Comment #123 from Magnus Enger  ---
(In reply to Katrin Fischer from comment #93)
> The last big question, I'll refer to the RM:
> This adds to /svc which is the outdated way of doing things as others have
> pointed out before. I think in order to move on here and before more time is
> spend, we should come to a decision of what is required for this patch to
> make it in and if it needs to be rewritten to use REST API or if this could
> be an exception.

As far as I can see, the patches are still adding to svc, not the REST API? So
I guess we need to resolve this question for the bug to move forward?

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 30230] Search for patrons in checkout should not require edit_borrowers permission

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30230

--- Comment #65 from David Cook  ---
(In reply to Katrin Fischer from comment #64)
> 1) Should we update existing staff patron accounts to make this change more
> convenient? Should everyone having edit_borrowers also have list_borrowers?

I don't think there's be anything functionally to gain from doing that, since
edit_borrowers implicitly has list_borrowers permissions. 

> And for my understanding: the permission description reads:
> Search and list patrons
> 
> Do we include "view" in list? 
> And should we add it to the description?

Personally, I don't love the description, but I figured it was good enough.
"Search, list, and view patrons" would work too though.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

--- Comment #87 from M  ---
I plan to make such a bug soon where I'd list more of them, but the most
important functional ones are:

* if more than one match is found with -match option, it won't skip or update
all such records, but rather create yet another duplicate (which I think is
wrong, as they can keep multiplying forever)

* matching but skipped records aren't logged, but I think they should be (it
currently skips updating authority records if their date indicates that they're
equal or newer in the Koha instance already)

Others are just some rather minor imperfections in the code, but the above may
matter for QA.

On top of that, the issue with `-match LC-card-number,010a` for authorities
remains, but I believe it's an issue with Zebra rather than this script, as I
think I had the same problem while trying to debug the search with yaz-client,
although not 100% sure (also that can be mitigated with Zebra with Any index,
but this sometimes created an issue of multiple matches for us, so that's not a
great workaround). The issue isn't present at all after switching to
Elasticsearch though...

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34082] Cut some redundancy in OPAC JavaScript string translations

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34082

David Nind  changed:

   What|Removed |Added

 Attachment #160147|0   |1
is obsolete||

--- Comment #7 from David Nind  ---
Created attachment 160170
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160170&action=edit
Bug 34082: Cut some redundancy in OPAC JavaScript string translations

This patch consolidates some JS code so that we're not defining a string
ine one place and using it once elsewhere. With JS-friendly translations
tools we don't need this workaround.

To test, apply the patch and go to Administration -> Circulation and
fine rules.

- Configure an item type rule with the "OPAC item level holds" setting
  set to "Force."
- Log in to the OPAC and locate a record with that item type and
  multiple items. An example in the sample data:
  /cgi-bin/koha/opac-detail.pl?biblionumber=12
- Place a hold on the item.
  - The holds screen should show a table of items.
  - Open your browser's developer tools.
  - In the Console tab, paste in this code and hit ENTER:

$(".checkitem").prop("checked", false);

  - All radio buttons in the table of items should be cleared.
- Click the "Confirm hold" button. You should get an alert:
  "Expecting a specific item selection."

- Log in to the OPAC and click the "Search history" tab from the user
  summary page.
- Check one or more checkboxes next to search history items and click
  the "Remove selected searches."
  - You should get an alert: "Are you sure you want to delete selected
search history entries?"

- Log in to the OPAC, create a new list if necessary, and add some
  titles to the list.
- Test that confirmation messages show correctly:
  - Deleting a single title by clicking the "Remove
from this list" link.
  - Deleting multiple titles by checking boxes and
clicking "Remove from list."
  - Deleting a list.

- In Administration -> System preferences, enable TagsEnabled if
  necessary.
- Log in to the OPAC and tag one or more items.
- From the Tag cloud page, check one or more boxes for your tags, and
  click the "Delete selected tags" button at the bottom of the page.
- The confirmation message should display correctly.

- To test the change to opac-account.tt you have to install a payment
  plugin, e.g.
  https://gitlab.com/thekesolutions/plugins/koha-plugin-pay-via-paypal,
  and attempt to submit a payment which is below the minimum payment
  threshold set in the plugin's configuration.

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34082] Cut some redundancy in OPAC JavaScript string translations

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34082

David Nind  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34082] Cut some redundancy in OPAC JavaScript string translations

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34082

--- Comment #6 from David Nind  ---
(In reply to Owen Leonard from comment #5)
> (In reply to David Nind from comment #3)
> > 2. Payment plugin: in the current master, the PayPal plugin doesn't work
> 
> It works for me with the latest version (v2.5.0). I think you need to
> restart_all after uploading the plugin.

That was what I needed to do. Thanks!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35624] Plugin tasks 'type' issue with plugins

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35624

Tomás Cohen Arazi  changed:

   What|Removed |Added

 CC||n...@bywatersolutions.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35624] Plugin tasks 'type' issue with plugins

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35624

--- Comment #1 from Tomás Cohen Arazi  ---
Created attachment 160169
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160169&action=edit
Bug 35624: Allow jobs to pass a calculated job_type parameter

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35624] Plugin tasks 'type' issue with plugins

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35624

Tomás Cohen Arazi  changed:

   What|Removed |Added

 CC||jonathan.druart+koha@gmail.
   ||com,
   ||k...@bywatersolutions.com,
   ||m.de.r...@rijksmuseum.nl,
   ||tomasco...@gmail.com
   Assignee|koha-b...@lists.koha-commun |tomasco...@gmail.com
   |ity.org |

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35624] New: Plugin tasks 'type' issue with plugins

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35624

Bug ID: 35624
   Summary: Plugin tasks 'type' issue with plugins
 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@lists.koha-community.org
  Reporter: tomasco...@gmail.com
QA Contact: testo...@bugs.koha-community.org

When we designed the 'background jobs for plugins', we let the plugins define a
`namespace` and each of it's jobs, a `type`.

Plugins pick a name and provide a mapping to the implementing class, and then
Koha's core handling calculates a plugin-specific type, to avoid collisions, in
the form of "plugin_$namespace_$type'.

This works correctly for picking the job from the DB, which is what we probably
tested.

The problem I found is the Koha::BackgroundJob::enqueue method doesn't have
enough information to calculate the 'job_type'. For that it would need to:

* know we're talking about a plugin job
* know which plugin and/or the namespace
* know how to calculate the name

Right now, it picks the type from $self->job_ype.

The simplest workaround for this situation would be (a) to do something like:

--- a/Koha/BackgroundJob.pm
+++ b/Koha/BackgroundJob.pm
@@ -95,12 +95,12 @@ Return the job_id of the newly created job.
 sub enqueue {
 my ( $self, $params ) = @_;

-my $job_type= $self->job_type;
+my $job_type= $params->{job_type} // $self->job_type;

and thus allow the plugin to deal with the calculation. The drawback being we
give too much responsibility to the plugin author and less flexibility if we
find we need to change this. I'm really not sure how bad it would be. Sounds
reasonable.

Another option would be (b) to require plugin authors to put the fully
qualified job type on their plugins [1], and get rid of doing it in
Koha::BackgroundJob::plugin_types_to_classes.

A third option would be to pass the information about the job coming from a
plugin (e.g. enqueue({ is_plugin => 1, plugin_namespage => 'kitchensink' }) and
have some internal sub to calculate the final 'type'.

Posting this to start the discussion, but I need to finish implementing plugin
jobs this week so, hurry!

[1] This is what we actually did on the KitchenSink plugin.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 22740] Automatically change lost status when item is paid for

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22740

Michelle Spinney  changed:

   What|Removed |Added

 CC||mspin...@clamsnet.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35622] New: Add "Test connection" function to EDI accounts configuration page

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35622

Bug ID: 35622
   Summary: Add "Test connection" function to EDI accounts
configuration page
 Change sponsored?: ---
   Product: Koha
   Version: 23.05
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Acquisitions
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: wizzy...@gmail.com
QA Contact: testo...@bugs.koha-community.org

It would be so awesome if libraries could test the EDI ftp/sftp connectivity
from the UI. Have had so many instances lately of libraries just getting the
connection information wrong and they cannot see why EDI isn't working. It
shouldn't require a sysadmin to verify these settings.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 26861] Indicate that a record is using OpacHiddenItems in the staff interface

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26861

Katie Bliss  changed:

   What|Removed |Added

 CC||kebl...@dmpl.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 32426] Make userid generation pluggable

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32426

Caroline Cyr La Rose  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 CC||caroline.cyr-la-rose@inlibr
   ||o.com
 Status|Needs documenting   |RESOLVED

--- Comment #47 from Caroline Cyr La Rose  ---
Plugin hooks are not documented in the manual. I see that this one is already
mentioned here https://wiki.koha-community.org/wiki/Koha_Plugin_Hooks
Unless there is somewhere else this should be documented, I think we can close
it. Feel free to reopen with more details, if necessary.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35559] Can't change the pickup date of holds on the last day of expiration

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35559

Katie Bliss  changed:

   What|Removed |Added

 CC||kebl...@dmpl.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35619] Change password form in patron account has misaligned validation errors

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35619

David Nind  changed:

   What|Removed |Added

 Attachment #160132|0   |1
is obsolete||

--- Comment #2 from David Nind  ---
Created attachment 160168
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160168&action=edit
Bug 35619: Fix validation error alignment in change password form

Bug 31829 made a change to the change password form in the staff
interface to accommodate a gap in the CSS following the staff interface
redesign. This gap has been fixed, so we don't need a double class on
the fieldset.

With this change, the "hint" div can also be put back into place.

To test, apply the patch and locate a patron record in the staff
interface.

 - Click the "Change password" button on the patron detail page.
 - Confirm that the form layout looks correct.
 - Enter mismatched passwords in the "New password" and "Confirm new
   password" fields and click "Save"
   - The validation error message should be aligned to the right of the
 input field.

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35619] Change password form in patron account has misaligned validation errors

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35619

David Nind  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 30241] Show description of fines in details of payment

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30241

Katie Bliss  changed:

   What|Removed |Added

 CC||kebl...@dmpl.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

David Nind  changed:

   What|Removed |Added

 CC||da...@davidnind.com

--- Comment #17 from David Nind  ---
Everything seems to work as expected - no changes noted.

One thing I noted (not related to this bug) in the OPAC: if you are not logged,
once you log in the report a concern the form doesn't include
CatalogConcernTemplate text. If you are already logged in, it has the text from
the CatalogConcernTemplate.

The test plan I used:

1. Apply patches

2. Update database: updatedatabase

3. Run DBIC: dbic

4. Enable system preferences: OpacCatalogConcerns and CatalogConcerns

5. Report a catalog concern from the OPAC:
   5.1 Search for a record and view the details page
   5.2 Click on the "Report a concern" link in the actions box on the
right-hand sidebar (under "Suggest for purchase")
   5.4 Add some information to the form (Title, information for each of the
headings) and click Submit
   5.5 Log out from the OPAC and click on the "Report a concern" link for a
record - you should be prompted to log in. After logging in, you are then
redirected back to the record page and the form is displayed to report a
concern.

6. Manage catalog concerns from the staff interface:
   6.1 From the staff interface, select the link in the block after the module
options (the "Call to action" area): where there are concerns, "Catalog
concerns pending: X" is displayed
   OR
   6.2 Go to Cataloging > Reports > Catalog concerns
   6.3 The concern(s) you entered in the OPAC should be listed
   6.4 Click on "Details" in the actions column
   ==> Ticket details displayed in a modal window
   6.5 Add some text in the update field for the concern, select the Notify
checkbox, and click on either the Resolve or Comment buttons.
   6.6 Check that the 'Hide resolve' or 'Show all' toggles work and display
concerns raised correctly based on status
   6.7 If Comment clicked, this will continue to be displayed in the list of
concerns
   6.8 Check that the filters for each column work as expected
   6.9 Testing notifications - see step 8.2

7. Report a catalog concern from the staff interface:
   7.1 Search for a record and view the details page
   7.2 Select New > New catalog concern
   7.3 Add some information to the form (information for each of the headings)
and click Confirm

8. Other things to test:

8.1 API: not sure what to test here (assuming you can add, update and resolve
tickets using the API if you know how...)
. Enable the RESTPublicAPI system preference
. Go to http://127.0.0.1:8080/api/v1/.html
. Not that there are APIs for addTicket, addTicketPublic, addTicketUpdate,
deleteTicket, getTicket, listTicketUpdates, listTickets, and updateTicket

8.2 Notifications: 
. There are four new notice templates: TICKET_ACKNOWLEDGE, TICKET_NOTIFY,
TICKET_RESOLVE, TICKET_UPDATE
. [OPTIONAL] Set up KTD so that email can be sent (using a Gmail address
and an app password)
. [OPTIONAL] Set up a patron with your Gmail email address
. [OPTIONAL] Setup system preference CatalogerEmails with your Gmail email
address
. Trigger the various notices and make sure they work as expected (should
be triggered if you followed the test plan):
  . TICKET_ACKNOWLEDGE: email to patron when they raise a concern
  . TICKET_NOTIFY: email to library staff when a concern is raised
  . TICKET_UPDATE: add an update to a concern
  . TICKET_RESOLVE: when concern marked as resolved
. These notices should be viewable under the patron's Notices tab

8.3 Test a non-super librarian and set them up so that they can manage catalog
concerns. The minimum permissions are: catalogue (Staff access) and
editcatalogue (Edit catalog)
. Log in as a non-super librarian with the minimum permissions
. Check that they can view and manage catalog concerns

8.4 Table configuration: have some active catalog concerns, click configure,
hide status column by default, check that you can toggle the status column on
and off.

8.5 Customise the catalog concern help text and template:
   . Go to Tools > HTML customizations
   . Note that there are two entries available for editing: CatalogConcernHelp
and CatalogConcernTemplate
   . Make some edits to these entries
   . From the OPAC, report a concern for a record
   . The changes you made should be reflected in the report a concern form
   . [OPTIONAL] Test translation of HTML custizations

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

David Nind  changed:

   What|Removed |Added

 Attachment #160146|0   |1
is obsolete||

--- Comment #16 from David Nind  ---
Created attachment 160167
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160167&action=edit
Bug 35616: Update catalog concerns to set/filter on source

This patch updates the catalog concerns feature to respect the new
'source' field in the API.  We both set the source for new ticket
submissions and use it for filtering in the corresponding display
tables.

To test:
1) Nothing should noticably change here.. follow the test plan for bug
   31028 and confirm all continues to work as described there.

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

David Nind  changed:

   What|Removed |Added

 Attachment #160145|0   |1
is obsolete||

--- Comment #15 from David Nind  ---
Created attachment 160166
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160166&action=edit
Bug 35616: API specification update

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

David Nind  changed:

   What|Removed |Added

 Attachment #160144|0   |1
is obsolete||

--- Comment #14 from David Nind  ---
Created attachment 160165
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160165&action=edit
Bug 35616: DBIC Schema

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

David Nind  changed:

   What|Removed |Added

 Attachment #160143|0   |1
is obsolete||

--- Comment #13 from David Nind  ---
Created attachment 160164
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160164&action=edit
Bug 35616: Add source field to tickets table

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

David Nind  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 33698] Add fields to verbose output of cronjob delete_items.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33698

Caroline Cyr La Rose  changed:

   What|Removed |Added

 CC||caroline.cyr-la-rose@inlibr
   ||o.com
 Status|Needs documenting   |RESOLVED
  Documentation||Caroline Cyr La Rose
contact||
 Resolution|--- |FIXED
  Documentation||https://gitlab.com/koha-com
 submission||munity/koha-manual/-/merge_
   ||requests/800

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35597] Purchase Suggestion changes aren't logged

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35597

Katie Bliss  changed:

   What|Removed |Added

 CC||kebl...@dmpl.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34950] ILS DI Availability is not accurate for items on holds shelf or in transit

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34950

Laura Escamilla  changed:

   What|Removed |Added

 Status|ASSIGNED|Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35584] Missing licenses in about page

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35584

--- Comment #4 from David Nind  ---
Thanks Owen!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35584] Missing licenses in about page

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35584

--- Comment #3 from David Nind  ---
Created attachment 160163
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160163&action=edit
Bug 35584: (follow-up) Add license information and fix sort order

Add license information and links. Put in alphabetical order.

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35584] Missing licenses in about page

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35584

David Nind  changed:

   What|Removed |Added

 Attachment #160116|0   |1
is obsolete||

--- Comment #2 from David Nind  ---
Created attachment 160162
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160162&action=edit
Bug 35584: Add missing licenses to about page

This patch adds license information to the about page which was missing
for several JavaScript libraries. The patch also makes a minor change to
CSS to improve alignment of content in the licenses tab.

One library, vis-timeline-graph2d.min.js, lacked the correct version
information in the source. This information has been added.

To test, apply the patch and rebuild the staff interface CSS.

- Go to the about page and open the "Licenses" tab.
- Confirm that the information looks correct.

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35584] Missing licenses in about page

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35584

David Nind  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34950] ILS DI Availability is not accurate for items on holds shelf or in transit

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34950

Brendan Lawlor  changed:

   What|Removed |Added

 Status|Signed Off  |ASSIGNED
 CC||blaw...@clamsnet.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

--- Comment #86 from Martin Renvoize  ---
Could you detail the issues you found in some new bugs and link them to this
please?  It would help me confidently QA this long standing improvement.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35608] Show on biblio detail page what lists this record belongs to

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35608

Aleisha Amohia  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|koha-b...@lists.koha-commun |alei...@catalyst.net.nz
   |ity.org |

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 25539] Remove AddBiblio "defer_marc_save" option

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25539

--- Comment #73 from Martin Renvoize  ---
This has been on my radar for a long time. I'll jump on it first thing in the
morning and get to through QA now it rebases and signed off again.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 28688] Automatically renew patron membership

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28688
Bug 28688 depends on bug 33522, which changed state.

Bug 33522 Summary: Optionally skip (in)active patrons when sending membership 
expiry notices
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33522

   What|Removed |Added

 Status|Needs documenting   |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 33522] Optionally skip (in)active patrons when sending membership expiry notices

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33522

Caroline Cyr La Rose  changed:

   What|Removed |Added

 CC||caroline.cyr-la-rose@inlibr
   ||o.com
  Documentation||Caroline Cyr La Rose
contact||
 Resolution|--- |FIXED
  Documentation||https://gitlab.com/koha-com
 submission||munity/koha-manual/-/merge_
   ||requests/799
 Status|Needs documenting   |RESOLVED

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 28688] Automatically renew patron membership

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28688

Caroline Cyr La Rose  changed:

   What|Removed |Added

 CC||caroline.cyr-la-rose@inlibr
   ||o.com
 Resolution|--- |FIXED
  Documentation||https://gitlab.com/koha-com
 submission||munity/koha-manual/-/merge_
   ||requests/799
  Documentation||Caroline Cyr La Rose
contact||
 Status|Needs documenting   |RESOLVED

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35509] Make SQL autocomplete an optional feature

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35509

Brendan Lawlor  changed:

   What|Removed |Added

 CC||blaw...@clamsnet.org

--- Comment #2 from Brendan Lawlor  ---
The Use SQL autocomplete check box worked to turn SQL autocomplete on and off
for a saved SQL report, but when you toggle the checkbox the SQL in the report
reverts to the last saved version of the SQL. 

That is not consistent with the other inputs in the SQL report form, which you
can  edit without reverting any new changes you have made in the SQL field. It
would be frustrating if you were working on writing a report and click to
change the autocomplete setting because you would lose your work.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35621] Map ÿ to y for searching (Non-ICU)

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35621

--- Comment #1 from Nick Clemens  ---
Created attachment 160161
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160161&action=edit
Bug 35621: Map ÿ to y for searching (Non-ICU)

To test:
1 - Find or add a record with title: Chevilly-Larue, L'Haÿ-les-Roses, Fresnes,
Rungis [par] Sté éditions et de publicité L.F.B.
2 - Search for 'L'Hay-les-Roses'
3 - No results
4 - Apply patch, copy the file:
sudo cp /kohadevbox/koha/etc/zebradb/etc/word-phrase-utf.chr
/etc/koha/zebradb/etc/word-phrase-utf.chr
5 - Restart all, Reindex
restart_all
sudo koha-rebuild-zebra -v -f kohadev
6 - Search again
7 - Success!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35621] Map ÿ to y for searching (Non-ICU)

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35621

Nick Clemens  changed:

   What|Removed |Added

 Status|NEW |Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 22073] Diacritics Ž and ž not being mapped for searching (Non-ICU)

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22073

Nick Clemens  changed:

   What|Removed |Added

   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=35621

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 26390] Add transliteration of Ž in ICU chains

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26390

Nick Clemens  changed:

   What|Removed |Added

   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=35621

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 8426] Map ︡a to a and t︠ to t for searching (Non-ICU)

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8426

Nick Clemens  changed:

   What|Removed |Added

   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=35621

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35621] Map ÿ to y for searching (Non-ICU)

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35621

Nick Clemens  changed:

   What|Removed |Added

   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=8426,
   ||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=26390,
   ||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=22073
   Assignee|koha-b...@lists.koha-commun |n...@bywatersolutions.com
   |ity.org |

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35621] New: Map ÿ to y for searching (Non-ICU)

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35621

Bug ID: 35621
   Summary: Map ÿ to y for searching (Non-ICU)
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Searching - Zebra
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: n...@bywatersolutions.com

We have done this in the past to catch other instances, this is just one more

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

--- Comment #85 from M  ---
I also signed off Bug 25539, and I can suggest testing them together for the
final fixed behavior of this script... (my personal tests were done with both
applied)

I noticed some additional issues during my review (existing ones, not
regressions!), but those can be dealt with in some new bug later on (after
these two are merged to master, to prevent even bigger dependency mess)

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 20653] Issue expected from irregularities don't display right month

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20653

Kristi  changed:

   What|Removed |Added

 CC||kkrue...@cuyahogalibrary.or
   ||g

--- Comment #7 from Kristi  ---
This would help us, especially with popular titles like Forbes that publish
every other month and are named December/January, February/March, etc.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 25539] Remove AddBiblio "defer_marc_save" option

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25539

--- Comment #72 from M  ---
Signed off, but status remains as BLOCKED as it still depends on Bug 29440

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 25539] Remove AddBiblio "defer_marc_save" option

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25539

M  changed:

   What|Removed |Added

 Attachment #156226|0   |1
is obsolete||

--- Comment #71 from M  ---
Created attachment 160160
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160160&action=edit
Bug 25539: Enable bulkmarcimport overlay context

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 25539] Remove AddBiblio "defer_marc_save" option

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25539

M  changed:

   What|Removed |Added

 Attachment #156225|0   |1
is obsolete||

--- Comment #70 from M  ---
Created attachment 160159
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160159&action=edit
Bug 25539: Strip items when adding new biblio to preserve previous behaviour of
the script

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 25539] Remove AddBiblio "defer_marc_save" option

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25539

M  changed:

   What|Removed |Added

 Attachment #156224|0   |1
is obsolete||

--- Comment #69 from M  ---
Created attachment 160158
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160158&action=edit
Bug 25539: Remove AddBiblio option "defer_marc_save"

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29654] Add option to bulkmarimport.pl for matching on original id

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29654

M  changed:

   What|Removed |Added

 CC||schodkowy.omegi-0r@icloud.c
   ||om

--- Comment #10 from M  ---
I'm not sure, as far as I understand the code, that this is the best approach
to implementing it. It looks like it still tries to match the record by old
logic, and only afterwards swaps out the ID.

I don't think it should perform any matching when we specify the Koha record ID
upfront, or at most it should check if it already exists...

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

--- Comment #84 from M  ---
I've signed off on all patches after reviewing them. They improve the situation
over what's currently in master, fix inconsistent behavior and don't seem to
regress on anything.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34950] ILS DI Availability is not accurate for items on holds shelf or in transit

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34950

Laura Escamilla  changed:

   What|Removed |Added

 CC||mathsaby...@gmail.com

--- Comment #5 from Laura Escamilla  ---
*** Bug 32049 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 32049] ILSDI GetAvailability should consider holds awaiting pickup as unavailable

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32049

Laura Escamilla  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED
 CC||Laura.escamilla@bywatersolu
   ||tions.com

--- Comment #1 from Laura Escamilla  ---


*** This bug has been marked as a duplicate of bug 34950 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Attachment #157798|0   |1
is obsolete||

--- Comment #83 from M  ---
Created attachment 160157
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160157&action=edit
Bug 29440: Fix AddBiblio/ModBiblio options args

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Attachment #151301|0   |1
is obsolete||

--- Comment #82 from M  ---
Created attachment 160156
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160156&action=edit
Bug 29440: Replace removed syspref BiblioAddsAuthorities with AutoLinkBiblios

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Attachment #151300|0   |1
is obsolete||

--- Comment #81 from M  ---
Created attachment 160155
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160155&action=edit
Bug 29440: Only log items has been inserted if actually have been so, and
remove extra out of place logging of record insertion

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Attachment #151299|0   |1
is obsolete||

--- Comment #80 from M  ---
Created attachment 160154
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160154&action=edit
Bug 29440: Rename $modify_biblio_marc_options to $mod_bilbio_options

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Attachment #151298|0   |1
is obsolete||

--- Comment #79 from M  ---
Created attachment 160153
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160153&action=edit
Bug 29440: Remove pointless call to _strip_item_fields

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Attachment #151297|0   |1
is obsolete||

--- Comment #78 from M  ---
Created attachment 160152
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160152&action=edit
Bug 29440: replace usage of removed GetMarcBiblio

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Attachment #151296|0   |1
is obsolete||

--- Comment #77 from M  ---
Created attachment 160151
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160151&action=edit
Bug 29440: defer biblio autolinking until records are indexed

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Attachment #151295|0   |1
is obsolete||

--- Comment #76 from M  ---
Created attachment 160150
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160150&action=edit
Bug 29440: Fix QA-tool issues

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Attachment #151294|0   |1
is obsolete||

--- Comment #75 from M  ---
Created attachment 160149
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160149&action=edit
Bug 29440: Make authorities import behavior consistent with biblios

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440

M  changed:

   What|Removed |Added

 Attachment #151293|0   |1
is obsolete||

--- Comment #74 from M  ---
Created attachment 160148
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160148&action=edit
Bug 29440: Refactor and clean up bulkmarcimport.pl

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35620] New: Scheduling batch jobs

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35620

Bug ID: 35620
   Summary: Scheduling batch jobs
 Change sponsored?: ---
   Product: Koha
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Tools
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: cbran...@cdalibrary.org
QA Contact: testo...@bugs.koha-community.org

I'm wondering if might have a conversation about scheduling batch jobs.  I
think there is another bug somewhere about having access in Koha staff to
scheduled cron jobs, but I wanted to take this discussion a step further.

I routinely go to the batch tools and delete patrons that have been expired 2
years or more.  It would be nice to automate this, and other cleanup tasks. 
But I was also thinking it might be worth having a discussion about notifying
patrons when their accounts have been expired a certain amount of time, and
warning them that their account will be permanently deleted by a certain time. 
We currently have no mechanism or workflow for that here.

Any thoughts?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34082] Cut some redundancy in OPAC JavaScript string translations

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34082

--- Comment #5 from Owen Leonard  ---
(In reply to David Nind from comment #3)
> 2. Payment plugin: in the current master, the PayPal plugin doesn't work

It works for me with the latest version (v2.5.0). I think you need to
restart_all after uploading the plugin.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34082] Cut some redundancy in OPAC JavaScript string translations

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34082

Owen Leonard  changed:

   What|Removed |Added

 Attachment #159521|0   |1
is obsolete||

--- Comment #4 from Owen Leonard  ---
Created attachment 160147
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160147&action=edit
Bug 34082: Cut some redundancy in OPAC JavaScript string translations

This patch consolidates some JS code so that we're not defining a string
ine one place and using it once elsewhere. With JS-friendly translations
tools we don't need this workaround.

To test, apply the patch and go to Administration -> Circulation and
fine rules.

- Configure an item type rule with the "OPAC item level holds" setting
  set to "Force."
- Log in to the OPAC and locate a record with that item type and
  multiple items. An example in the sample data:
  /cgi-bin/koha/opac-detail.pl?biblionumber=12
- Place a hold on the item.
  - The holds screen should show a table of items.
  - Open your browser's developer tools.
  - In the Console tab, paste in this code and hit ENTER:

$(".checkitem").prop("checked", false);

  - All radio buttons in the table of items should be cleared.
- Click the "Confirm hold" button. You should get an alert:
  "Expecting a specific item selection."

- Log in to the OPAC and click the "Search history" tab from the user
  summary page.
- Check one or more checkboxes next to search history items and click
  the "Remove selected searches."
  - You should get an alert: "Are you sure you want to delete selected
search history entries?"

- Log in to the OPAC, create a new list if necessary, and add some
  titles to the list.
- Test that confirmation messages show correctly:
  - Deleting a single title by clicking the "Remove
from this list" link.
  - Deleting multiple titles by checking boxes and
clicking "Remove from list."
  - Deleting a list.

- In Administration -> System preferences, enable TagsEnabled if
  necessary.
- Log in to the OPAC and tag one or more items.
- From the Tag cloud page, check one or more boxes for your tags, and
  click the "Delete selected tags" button at the bottom of the page.
- The confirmation message should display correctly.

- To test the change to opac-account.tt you have to install a payment
  plugin, e.g.
  https://gitlab.com/thekesolutions/plugins/koha-plugin-pay-via-paypal,
  and attempt to submit a payment which is below the minimum payment
  threshold set in the plugin's configuration.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34082] Cut some redundancy in OPAC JavaScript string translations

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34082

Owen Leonard  changed:

   What|Removed |Added

 Status|Failed QA   |Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

Martin Renvoize  changed:

   What|Removed |Added

 Attachment #160130|0   |1
is obsolete||

--- Comment #12 from Martin Renvoize  ---
Created attachment 160146
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160146&action=edit
Bug 35616: Update catalog concerns to set/filter on source

This patch updates the catalog concerns feature to respect the new
'source' field in the API.  We both set the source for new ticket
submissions and use it for filtering in the corresponding display
tables.

To test:
1) Nothing should noticably change here.. follow the test plan for bug
   31028 and confirm all continues to work as described there.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

Martin Renvoize  changed:

   What|Removed |Added

 Attachment #160129|0   |1
is obsolete||

--- Comment #11 from Martin Renvoize  ---
Created attachment 160145
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160145&action=edit
Bug 35616: API specification update

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

Martin Renvoize  changed:

   What|Removed |Added

 Attachment #160128|0   |1
is obsolete||

--- Comment #10 from Martin Renvoize  ---
Created attachment 160144
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160144&action=edit
Bug 35616: DBIC Schema

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

Martin Renvoize  changed:

   What|Removed |Added

 Attachment #160127|0   |1
is obsolete||

--- Comment #9 from Martin Renvoize  ---
Created attachment 160143
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160143&action=edit
Bug 35616: Add source field to tickets table

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113

--- Comment #122 from Salah Ghedda  ---
Created attachment 160142
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160142&action=edit
Bug 27113: Fix the Input Size of the Catalog Search Bar

This patch addresses the sizing issue with the catalog search bar, ensuring
that the input zone now covers the entire white bar area.

TEST PLAN:

   1) Apply the patches that precede this one.
   2) Activate IntranetAutocompleteElasticSearch and
  OPACAutocompleteElasticSearch in the system preferences.
   2) Click "Catalog search" in the navigation bar.
   3) Click on the right side of the white area of the search bar.
   4) Confirm that it does not allow you to start typing unless you click on
the left side of the search bar.
   5) Apply this patch.
   6) Repeat steps 2 and 3.
   7) Verify that this time it allows you to type in the search bar even if you
click on the right side of the searc  h bar.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113

Salah Ghedda  changed:

   What|Removed |Added

 Attachment #159775|0   |1
is obsolete||

--- Comment #121 from Salah Ghedda  ---
Created attachment 160141
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160141&action=edit
Bug 27113: Move filterAutocomplete to a new module and filter the result at
search time

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113

Salah Ghedda  changed:

   What|Removed |Added

 Attachment #159774|0   |1
is obsolete||

--- Comment #120 from Salah Ghedda  ---
Created attachment 160140
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160140&action=edit
Bug 27113: (follow-up) diacritics/acccents in sought word would make
autocomplete return nothing

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113

Salah Ghedda  changed:

   What|Removed |Added

 Attachment #159773|0   |1
is obsolete||

--- Comment #119 from Salah Ghedda  ---
Created attachment 160139
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160139&action=edit
Bug 27113: Allow for ending special characters in titles

Modifies the cleanup regex that removed )}' and " endings from the
suggested titles or authors.  When selected without those, the record
was not found.

Ex: "MyTitle (1234)" became "MyTitle (123" in the list.  It returned no
results, where the full title or "MyTitle 123" would.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113

Salah Ghedda  changed:

   What|Removed |Added

 Attachment #159772|0   |1
is obsolete||

--- Comment #118 from Salah Ghedda  ---
Created attachment 160138
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160138&action=edit
Bug 27113: (follow-up) replace removed GetMarcBiblio

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113

Salah Ghedda  changed:

   What|Removed |Added

 Attachment #159771|0   |1
is obsolete||

--- Comment #117 from Salah Ghedda  ---
Created attachment 160137
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160137&action=edit
Bug 27113: (follow-up) fix adv. searches - more options display issue

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113

Salah Ghedda  changed:

   What|Removed |Added

 Attachment #159770|0   |1
is obsolete||

--- Comment #116 from Salah Ghedda  ---
Created attachment 160136
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160136&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 

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113

Salah Ghedda  changed:

   What|Removed |Added

 Attachment #159769|0   |1
is obsolete||

--- Comment #115 from Salah Ghedda  ---
Created attachment 160135
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160135&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 

Signed-off-by: David Nind 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 27113] Elasticsearch: Autocomplete in search

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27113

Salah Ghedda  changed:

   What|Removed |Added

 Attachment #137780|0   |1
is obsolete||

--- Comment #114 from Salah Ghedda  ---
Created attachment 160134
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160134&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  for
 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 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35584] Missing licenses in about page

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35584

Owen Leonard  changed:

   What|Removed |Added

 Blocks||34623

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35619] Change password form in patron account has misaligned validation errors

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35619

--- Comment #1 from Owen Leonard  ---
Created attachment 160132
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160132&action=edit
Bug 35619: Fix validation error alignment in change password form

Bug 31829 made a change to the change password form in the staff
interface to accommodate a gap in the CSS following the staff interface
redesign. This gap has been fixed, so we don't need a double class on
the fieldset.

With this change, the "hint" div can also be put back into place.

To test, apply the patch and locate a patron record in the staff
interface.

 - Click the "Change password" button on the patron detail page.
 - Confirm that the form layout looks correct.
 - Enter mismatched passwords in the "New password" and "Confirm new
   password" fields and click "Save"
   - The validation error message should be aligned to the right of the
 input field.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35619] Change password form in patron account has misaligned validation errors

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35619

Owen Leonard  changed:

   What|Removed |Added

   Patch complexity|--- |Trivial patch
 Status|ASSIGNED|Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 31829] Change password form in patron account is misaligned

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31829

Owen Leonard  changed:

   What|Removed |Added

 Blocks||35619


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35619
[Bug 35619] Change password form in patron account has misaligned validation
errors
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35619] New: Change password form in patron account has misaligned validation errors

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35619

Bug ID: 35619
   Summary: Change password form in patron account has misaligned
validation errors
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: ASSIGNED
  Severity: normal
  Priority: P5 - low
 Component: Staff interface
  Assignee: oleon...@myacpl.org
  Reporter: oleon...@myacpl.org
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com
Depends on: 31829

Bug 31829 fixed the change password form layout but validation error messages
are still misaligned.


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31829
[Bug 31829] Change password form in patron account is misaligned
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 33317] Add system preference to set meta robots for the OPAC

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33317

Lucas Gass  changed:

   What|Removed |Added

 Status|Needs Signoff   |Failed QA

--- Comment #17 from Lucas Gass  ---
Hammat, 

The qa tool still complains. Please fix:

 FAIL   installer/data/mysql/atomicupdate/bug_33317.pl
   FAIL   file permissions
File must have the exec flag
   WARN   tidiness
The file is less tidy than before (bad/messy lines before: 0,
now: 1)


-perltidy all of bug_33317.pl
-Also make sure bug_33317.pl has the proper permissions set ( File must have
the exec flag )

sudo chmod 755 bug_33317.pl should do it.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35287] Add additional fields support to ERM Licenses

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35287

--- Comment #22 from Martin Renvoize  ---
Comment on attachment 159639
  --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159639
Bug 35287: REST API - Add additional fields support to ERM Licenses

Review of attachment 159639:
 --> 
(https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=35287&attachment=159639)
-

::: Koha/REST/V1/ERM/Licenses.pm
@@ +183,5 @@
>  $license->user_roles($user_roles);
>  $license->documents($documents);
>  
> +my @extended_attributes = map { {'id' => $_->{field_id}, 
> 'value' => $_->{value}} } @{$extended_attributes};
> +$license->extended_attributes( \@extended_attributes );

Won't you need to check here that @extended_attributes is indeed populated..
else you may wipe them away without meaning to?

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34950] ILS DI Availability is not accurate for items on holds shelf or in transit

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34950

Brendan Lawlor  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

--- Comment #4 from Brendan Lawlor  ---
In testing I also learned that you can make a call for multiple items at once
like this
http://localhost:8080/cgi-bin/koha/ilsdi.pl?service=GetAvailability&id=321+323+214&id_type=item

Thanks Laura!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 34950] ILS DI Availability is not accurate for items on holds shelf or in transit

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34950

Brendan Lawlor  changed:

   What|Removed |Added

 Attachment #160060|0   |1
is obsolete||

--- Comment #3 from Brendan Lawlor  ---
Created attachment 160131
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160131&action=edit
Bug 34950: Add availability statuses for in transit and on hold items.

To test:
1. Enable the ILS-DI system preference.
2. Place a hold for a patron and put it in transit. Place another hold for a
patron that is available for pickup at the local branch. And then select an
item that is available for checkout but don’t change the status for it.
3. Go to your testing OPAC and make an ILS-DI “Get Availability” call using the
item ids of the three items you worked with in step 2. (i.e.
http://localhost:8080/cgi-bin/koha/ilsdi.pl?service=GetAvailability&id=321+323+214&id_type=item)
4. Notice that the availability status for all three items is showing as
available. The item in transit and the item with a local hold should have a
status of not available and a message of why they are not available.
5. Apply the patch
6. Use restart_all.
7. Refresh the page and notice that the statuses are now correct. The item in
transit has a status of not available and an availability message of “In
transit”. The item with the local hold has an availability status of not
available with an availability message of “On hold”. Finally the available item
is correctly showing up as available.
8. Sign off and have a wonderful day. :)

Signed-off-by: Brendan Lawlor 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 32751] [Omnibus] Extend, improve and standardize additional fields

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32751

Martin Renvoize  changed:

   What|Removed |Added

 Depends on||35287


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35287
[Bug 35287] Add additional fields support to ERM Licenses
-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35287] Add additional fields support to ERM Licenses

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35287

Martin Renvoize  changed:

   What|Removed |Added

 Blocks||32751


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32751
[Bug 32751] [Omnibus] Extend, improve and standardize additional fields
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

Martin Renvoize  changed:

   What|Removed |Added

 Attachment #160121|0   |1
is obsolete||

--- Comment #8 from Martin Renvoize  ---
Created attachment 160130
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160130&action=edit
Bug 35616: Update catalog concerns to set/filter on source

This patch updates the catalog concerns feature to respect the new
'source' field in the API.  We both set the source for new ticket
submissions and use it for filtering in the corresponding display
tables.

To test:
1) Nothing should noticably change here.. follow the test plan for bug
   31028 and confirm all continues to work as described there.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

Martin Renvoize  changed:

   What|Removed |Added

 Attachment #160120|0   |1
is obsolete||

--- Comment #7 from Martin Renvoize  ---
Created attachment 160129
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160129&action=edit
Bug 35616: API specification update

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

Martin Renvoize  changed:

   What|Removed |Added

 Attachment #160119|0   |1
is obsolete||

--- Comment #6 from Martin Renvoize  ---
Created attachment 160128
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160128&action=edit
Bug 35616: DBIC Schema

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 35616] Add a 'source' field to Koha::Tickets to denote the path taken to report the ticket

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35616

Martin Renvoize  changed:

   What|Removed |Added

 Attachment #160118|0   |1
is obsolete||

--- Comment #5 from Martin Renvoize  ---
Created attachment 160127
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160127&action=edit
Bug 35616: Add source field to tickets table

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 30859] Upgrade jQuery Validation plugin from v1.19.1

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30859

Owen Leonard  changed:

   What|Removed |Added

 Blocks||34623

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 33317] Add system preference to set meta robots for the OPAC

2023-12-20 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33317

Hammat wele  changed:

   What|Removed |Added

 Status|Failed QA   |Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


  1   2   3   >