View | Details | Raw Unified | Return to bug 20212
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-2 / +1 lines)
Lines 715-721 Link Here
715
                                        + _("Cancel order") + '</a><br/>';
715
                                        + _("Cancel order") + '</a><br/>';
716
                        }
716
                        }
717
717
718
                        if ( row.items.length > 0 ) {
718
                        if ( row.biblio.items_count - row.items.length > 0 ) {
719
                            result += '<b title="'
719
                            result += '<b title="'
720
                                      + _("Can't delete catalog record, because of %s existing item(s)").format(row.items.length)
720
                                      + _("Can't delete catalog record, because of %s existing item(s)").format(row.items.length)
721
                                      +'">' + (row.biblio.items_count - row.items.length) + _(" item(s) left") + '</b><br/>';
721
                                      +'">' + (row.biblio.items_count - row.items.length) + _(" item(s) left") + '</b><br/>';
722
- 

Return to bug 20212