Bug 13946: Change order status 'Pending' to 'Ordered'
The order status after closing the basket is 'ordered' in the database, but displays as 'pending' in the staff interface. As we use 'pending' when you have to review a suggestion, this clashes in translations and the meaning is different. The patch renames 'pending' for the order status to 'Ordered' to be more clear. To test: - Verfiy 'Ordered' shows in the pull down on the acq advanced search and search still works correctly - Verify the results table also display 'Ordered' as the status Signed-off-by: Cédric Vita <cedric.vita@dracenie.com> Signed-off-by: Jonathan Druart <jonathan.druart@koha-community.org> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
parent
764b425c1c
commit
480ac86679
1 changed files with 3 additions and 3 deletions
|
@ -95,9 +95,9 @@ var MSG_REMOVE_PATRON = _("Remove");
|
|||
<option value="new">New</option>
|
||||
[% END %]
|
||||
[% IF orderstatus == "ordered" %]
|
||||
<option value="ordered" selected="selected">Pending</option>
|
||||
<option value="ordered" selected="selected">Ordered</option>
|
||||
[% ELSE %]
|
||||
<option value="ordered">Pending</option>
|
||||
<option value="ordered">Ordered</option>
|
||||
[% END %]
|
||||
[% IF orderstatus == "partial" %]
|
||||
<option value="partial" selected="selected">Partially received</option>
|
||||
|
@ -180,7 +180,7 @@ var MSG_REMOVE_PATRON = _("Remove");
|
|||
<td>
|
||||
[% SWITCH order.orderstatus %]
|
||||
[% CASE 'new' %]New
|
||||
[% CASE 'ordered' %]Pending
|
||||
[% CASE 'ordered' %]Ordered
|
||||
[% CASE 'partial' %]Partially received
|
||||
[% CASE 'complete' %]Received
|
||||
[% CASE 'cancelled' %]Cancelled
|
||||
|
|
Loading…
Reference in a new issue