Created attachment 152238 [details] Workflow of purchase suggestions search If a borrower logs into the OPAC and searches for a Purchase Suggestion it will only return hits if the exact string is entered (see attached). Looking at the underlying query it preforms an exact match on `title`. SELECT `me`.`suggestionid`, `me`.`suggestedby`, `me`.`suggesteddate`, `me`.`managedby`, `me`.`manageddate`, `me`.`acceptedby`, `me`.`accepteddate`, `me`.`rejectedby`, `me`.`rejecteddate`, `me`.`lastmodificationby`, `me`.`lastmodificationdate`, `me`.`STATUS`, `me`.`archived`, `me`.`note`, `me`.`staff_note`, `me`.`author`, `me`.`title`, `me`.`copyrightdate`, `me`.`publishercode`, `me`.`date`, `me`.`volumedesc`, `me`.`publicationyear`, `me`.`place`, `me`.`isbn`, `me`.`biblionumber`, `me`.`reason`, `me`.`patronreason`, `me`.`budgetid`, `me`.`branchcode`, `me`.`collectiontitle`, `me`.`itemtype`, `me`.`quantity`, `me`.`currency`, `me`.`price`, `me`.`total` FROM `suggestions` `me` WHERE ( ( `suggestedby` = '33805' AND `title` = 'suggested' ) ) Maybe a wildcard search might be better here? Or, using Datatables client side, like the staff interface. Observed on 22.11 and 23.05
Looks like a duplicate of bug 27278. *** This bug has been marked as a duplicate of bug 27278 ***