@@ -, +, @@ - create a basket and an order - delete the record used by that order - go on receipt page - in the line matching this order, you should see instead of the title "Deleted bibliographic record, can't find title" - click on "Delete order" : you should be able to delete the order - go to the basket, to check the order was properly cancelled - in receipt page, try to delete an other order (always linked to a record), to be sure there is no regression --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt | 8 ++++++++ 1 file changed, 8 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt @@ -140,7 +140,11 @@ [% loop_order.ordernumber | html %] + [% IF (loop_order.biblionumber) %] [% loop_order.title | html %] + [% ELSE %] + Deleted bibliographic record, can't find title
+ [% END %] [% IF ( loop_order.author ) %] by [% loop_order.author | html %][% END %] [% IF ( loop_order.isbn ) %] – [% loop_order.isbn | html %][% END %] [% IF ( loop_order.publishercode ) %] @@ -182,6 +186,9 @@ Transfer + [% UNLESS (books_loo.biblionumber) %] + Delete order
+ [% ELSE %] [% IF ( loop_order.left_holds_on_order ) %] Can't cancel order
[% ELSE %] @@ -204,6 +211,7 @@ [% IF ( loop_order.left_holds ) %] [% loop_order.holds | html %] hold(s) left [% END %] + [% END %] [% END %] --