Summary: | Add URL encoding to status tabs in purchase suggestions management | ||
---|---|---|---|
Product: | Koha | Reporter: | Caroline Cyr La Rose <caroline.cyr-la-rose> |
Component: | Acquisitions | Assignee: | Bugs List <koha-bugs> |
Status: | NEW --- | QA Contact: | Testopia <testopia> |
Severity: | enhancement | ||
Priority: | P5 - low | CC: | philippe.blouin |
Version: | unspecified | ||
Hardware: | All | ||
OS: | All | ||
GIT URL: | Change sponsored?: | --- | |
Patch complexity: | --- | Documentation contact: | |
Documentation submission: | Text to go in the release notes: | ||
Version(s) released in: | Circulation function: |
Description
Caroline Cyr La Rose
2024-01-25 21:06:31 UTC
I added a note in the manual, but like I said, you can write it everywhere, there is still someone who will do it... https://gitlab.com/koha-community/koha-manual/-/merge_requests/827 A major problem with this is that users cannot correct this by themselves if they make the error. You must go into the database and update the value of suggestions.STATUS. If someone stumbled upon this and needs to correct their suggestions: Changing the authorized value (this can be done via the staff interface under Administration > Authorized values > SUGGEST_STATUS): UPDATE authorised_values SET authorised_value = 'SPACELESS_STATUS' WHERE category = 'SUGGEST_STATUS' AND authorised_value = 'Old status'; Changing the suggestions themselves (this must be done in the db): UPDATE suggestions SET STATUS = 'SPACELESS_STATUS' WHERE STATUS = 'Old status'; If you had notices linked to that status (this must be done in the db also): UPDATE letter SET code = 'SPACELESS_STATUS' WHERE code = 'Old status'; |