Lines 95-103
var MSG_REMOVE_PATRON = _("Remove");
Link Here
|
95 |
<option value="new">New</option> |
95 |
<option value="new">New</option> |
96 |
[% END %] |
96 |
[% END %] |
97 |
[% IF orderstatus == "ordered" %] |
97 |
[% IF orderstatus == "ordered" %] |
98 |
<option value="ordered" selected="selected">Pending</option> |
98 |
<option value="ordered" selected="selected">Ordered</option> |
99 |
[% ELSE %] |
99 |
[% ELSE %] |
100 |
<option value="ordered">Pending</option> |
100 |
<option value="ordered">Ordered</option> |
101 |
[% END %] |
101 |
[% END %] |
102 |
[% IF orderstatus == "partial" %] |
102 |
[% IF orderstatus == "partial" %] |
103 |
<option value="partial" selected="selected">Partially received</option> |
103 |
<option value="partial" selected="selected">Partially received</option> |
Lines 180-186
var MSG_REMOVE_PATRON = _("Remove");
Link Here
|
180 |
<td> |
180 |
<td> |
181 |
[% SWITCH order.orderstatus %] |
181 |
[% SWITCH order.orderstatus %] |
182 |
[% CASE 'new' %]New |
182 |
[% CASE 'new' %]New |
183 |
[% CASE 'ordered' %]Pending |
183 |
[% CASE 'ordered' %]Ordered |
184 |
[% CASE 'partial' %]Partially received |
184 |
[% CASE 'partial' %]Partially received |
185 |
[% CASE 'complete' %]Received |
185 |
[% CASE 'complete' %]Received |
186 |
[% CASE 'cancelled' %]Cancelled |
186 |
[% CASE 'cancelled' %]Cancelled |
187 |
- |
|
|