https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40105 Brendan Lawlor <blawlor@clamsnet.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #7 from Brendan Lawlor <blawlor@clamsnet.org> --- This works as described. I'm only failing QA because on the last step when you view the request the note renders as an input, which implies it's editable when it's not. It should just need a small change on opac-illrequests.tt so that it's not an input when you are viewing a request that's already created. Something like this on line 209: <label for="notesopac">Notes:</label> - [% IF !request.completed %] + [% IF !request.completed && !request.illrequest_id %] <textarea id="notesopac" name="notesopac" rows="5" cols="50">[% request.notesopac | html %]</textarea> [% ELSE %] [% request.notesopac | html %] [% END %] -- You are receiving this mail because: You are watching all bug changes.