[Koha-bugs] [Bug 35915] Add URL encoding to status tabs in purchase suggestions management

2024-03-05 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35915

Caroline Cyr La Rose  changed:

   What|Removed |Added

 CC||philippe.blo...@inlibro.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 35915] Add URL encoding to status tabs in purchase suggestions management

2024-01-25 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35915

--- Comment #2 from Caroline Cyr La Rose  ---
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';

-- 
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 35915] Add URL encoding to status tabs in purchase suggestions management

2024-01-25 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35915

--- Comment #1 from Caroline Cyr La Rose  ---
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.

-- 
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/