Bug 25751: Add ORDERED in dropdown list of suggestion's statuses
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 16 Jun 2020 13:44:40 +0000 (15:44 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 18 Aug 2020 13:45:48 +0000 (15:45 +0200)
The status "ORDERED" is missing from the pull down list of
status values when editing a suggestion, so the first
option is selected "No status".

This leads to data loss when editing a suggestion in the
status "ORDERED". Worse: the status can't be reset to
"ORDERED" and so no AVAILABLE notice can be sent to the patron.

Test plan:
- Create a suggestion, accept it, create a new order from this suggestion.
- Verify status is "ORDERED"
- Edit the suggestion
=> Without this patch the dropdown list does not have
   "Ordered", and if you save you lost the status
=> With this patch applied the dropdown list has "Ordered"
   preselected. You can save and preserve the status.

Signed-off-by: Holly Cooper <hc@interleaf.ie>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt

index c293a57..02321e8 100644 (file)
                             <option value="REJECTED">Rejected</option>
                         [% END %]
 
+                        [% IF ( statusselected_ORDERED ) %]
+                            <option value="ORDERED" selected="selected">Ordered</option>
+                        [% ELSE %]
+                            <option value="ORDERED">Ordered</option>
+                        [% END %]
+
                         [% FOREACH s IN SuggestionStatuses %]
                             [% IF s.authorised_value == suggestion.STATUS %]
                                 <option value="[% s.authorised_value | html %]" selected="selected">[% s.lib | html %]</option>
                                <option value="REJECTED">Rejected</option>
                            [% END %]
 
+                           [% IF ( statusselected_ORDERED ) %]
+                               <option value="ORDERED" selected="selected">Ordered</option>
+                           [% ELSE %]
+                               <option value="ORDERED">Ordered</option>
+                           [% END %]
+
                            [% FOREACH s IN SuggestionStatuses %]
                                <option value="[% s.authorised_value | html %]">[% s.lib | html %]</option>
                            [% END %]
                                   <option value="REJECTED">Rejected</option>
                               [% END %]
 
+                               [% IF ( statusselected_ORDERED ) %]
+                                   <option value="ORDERED" selected="selected">Ordered</option>
+                               [% ELSE %]
+                                   <option value="ORDERED">Ordered</option>
+                               [% END %]
+
                               [% FOREACH s IN SuggestionStatuses %]
                                   [% IF s.authorised_value == selected_status %]
                                       <option value="[% s.authorised_value | html %]" selected="selected">[% s.lib | html %]</option>