@@ -, +, @@ received - In acquisitions: - Create a new basket - Add at least 2 order lines - Close the basket - Receive a new shipment and one of your order lines - Go back to your basket - One line should now show "(rcvd)" - Apply patch - Reload the basket page - Verify the text has changed and element now has a class in the HTML source --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt @@ -484,7 +484,7 @@

- [% IF ( books_loo.order_received ) %] (rcvd)[% END %] + [% IF ( books_loo.order_received ) %] (received)[% END %] [% IF books_loo.title %] [% books_loo.title | html %][% IF books_loo.author %] by [% books_loo.author | html %][% END %] [% ELSE %] @@ -620,7 +620,7 @@

- [% IF ( order.order_received ) %] (rcvd)[% END %] + [% IF ( order.order_received ) %] (received)[% END %] [% IF (order.title) %] [% order.title | html %][% IF order.author %] by [% order.author | html %][% END %] [% ELSE %] --