https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39727 --- Comment #10 from David Nind <david@davidnind.com> --- Testing notes (using KTD): 1. Add a new suggestion: Acquisitions > Suggestions > New purchase suggestion 2. Change the status to 'Accepted' - Have the list of suggestions - Select the tick box for the suggestion - Change "Mark selected as" to "Accepted" 3. Update the dates in the database (not sure which dates are required): - Access the database: koha-mysql kohadev - Update the suggested date: update suggestions set suggesteddate = "2026-03-01"; - Update the managed date: update suggestions set manageddate = "2026-03-01"; - Update the accepted date: update suggestions set accepteddate = "2026-03-01"; 4. Run the purge suggestions cron job: - misc/cronjobs/purge_suggestions.pl -verbose -confirm -days 30 5. There should be no suggestions: - Staff interface: for suggestions for "Any" - Database: . Access the database: koha-mysql kohadev . SQL: select * from suggestions; 6. Apply the patch. 7. Repeat steps 1 to 5 - should all work the same. 8. I didn't test with PurgeSuggestionsOlderThan system preference. -- You are receiving this mail because: You are watching all bug changes.