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

(-)a/C4/Items.pm (-2 / +1 lines)
Lines 764-770 sub GetItemsForInventory { Link Here
764
    my $max_cnsort = GetClassSort($class_source,undef,$maxlocation);
764
    my $max_cnsort = GetClassSort($class_source,undef,$maxlocation);
765
765
766
    my $select_columns = q{
766
    my $select_columns = q{
767
        SELECT DISTINCT(items.itemnumber), barcode, itemcallnumber, title, author, biblio.biblionumber, biblio.frameworkcode, datelastseen, homebranch, location, notforloan, damaged, itemlost, withdrawn, stocknumber
767
        SELECT DISTINCT(items.itemnumber), barcode, itemcallnumber, title, author, biblio.biblionumber, biblio.frameworkcode, datelastseen, homebranch, location, notforloan, damaged, itemlost, withdrawn, stocknumber, items.cn_sort
768
    };
768
    };
769
    my $select_count = q{SELECT COUNT(DISTINCT(items.itemnumber))};
769
    my $select_count = q{SELECT COUNT(DISTINCT(items.itemnumber))};
770
    my $query = q{
770
    my $query = q{
771
- 

Return to bug 24030