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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1918-1923 modules: Link Here
1918
              is_hidden: 1
1918
              is_hidden: 1
1919
            -
1919
            -
1920
              columnname: shelving_location
1920
              columnname: shelving_location
1921
            -
1922
              columnname: datelastborrowed
1921
            -
1923
            -
1922
              columnname: barcode
1924
              columnname: barcode
1923
            -
1925
            -
(-)a/circ/overdue.pl (-1 / +3 lines)
Lines 242-247 if ($noreport) { Link Here
242
        borrowers.branchcode,
242
        borrowers.branchcode,
243
        issues.itemnumber,
243
        issues.itemnumber,
244
        issues.issuedate,
244
        issues.issuedate,
245
        items.datelastborrowed,
245
        items.barcode,
246
        items.barcode,
246
        items.homebranch,
247
        items.homebranch,
247
        items.holdingbranch,
248
        items.holdingbranch,
Lines 337-342 if ($noreport) { Link Here
337
            email                  => $data->{email},
338
            email                  => $data->{email},
338
            branchcode             => $data->{branchcode},
339
            branchcode             => $data->{branchcode},
339
            barcode                => $data->{barcode},
340
            barcode                => $data->{barcode},
341
            datelastborrowed       => $data->{datelastborrowed},
340
            itemnum                => $data->{itemnumber},
342
            itemnum                => $data->{itemnumber},
341
            issuedate              => $data->{issuedate},
343
            issuedate              => $data->{issuedate},
342
            biblionumber           => $data->{biblionumber},
344
            biblionumber           => $data->{biblionumber},
Lines 401-407 sub build_csv { Link Here
401
    # build header ...
403
    # build header ...
402
    my @keys =
404
    my @keys =
403
      qw ( duedate title author borrowertitle firstname surname phone barcode email address address2 zipcode city country
405
      qw ( duedate title author borrowertitle firstname surname phone barcode email address address2 zipcode city country
404
      branchcode itemcallnumber biblionumber borrowernumber itemnum issuedate replacementprice itemnotes_nonpublic streetnumber streettype);
406
      branchcode datelastissued itemcallnumber biblionumber borrowernumber itemnum issuedate replacementprice itemnotes_nonpublic streetnumber streettype);
405
    my $csv = Text::CSV_XS->new();
407
    my $csv = Text::CSV_XS->new();
406
    $csv->combine(@keys);
408
    $csv->combine(@keys);
407
    push @lines, $csv->string();
409
    push @lines, $csv->string();
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt (-1 / +2 lines)
Lines 92-97 Link Here
92
          <th>Home library</th>
92
          <th>Home library</th>
93
          <th>Holding library</th>
93
          <th>Holding library</th>
94
          <th>Shelving location</th>
94
          <th>Shelving location</th>
95
          <th>Checked out on</th>
95
          <th>Barcode</th>
96
          <th>Barcode</th>
96
          <th>Call number</th>
97
          <th>Call number</th>
97
          <th>Item type</th>
98
          <th>Item type</th>
Lines 120-125 Link Here
120
            <td>[% Branches.GetName( overdueloo.homebranchcode ) | html %]</td>
121
            <td>[% Branches.GetName( overdueloo.homebranchcode ) | html %]</td>
121
            <td>[% Branches.GetName( overdueloo.holdingbranchcode ) | html %]</td>
122
            <td>[% Branches.GetName( overdueloo.holdingbranchcode ) | html %]</td>
122
            <td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => overdueloo.location ) | html %]</td>
123
            <td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => overdueloo.location ) | html %]</td>
124
            <td data-order="[% overdueloo.datelastborrowed | html %]"><span class='overdue'>[% overdueloo.datelastborrowed | $KohaDates %]</span></td>
123
          <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% overdueloo.biblionumber | uri %]&amp;itemnumber=[% overdueloo.itemnum | uri %]#item[% overdueloo.itemnum | uri %]">[% overdueloo.barcode | html %]</a></td>
125
          <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% overdueloo.biblionumber | uri %]&amp;itemnumber=[% overdueloo.itemnum | uri %]#item[% overdueloo.itemnum | uri %]">[% overdueloo.barcode | html %]</a></td>
124
          <td>[% overdueloo.itemcallnumber | html %]</td>
126
          <td>[% overdueloo.itemcallnumber | html %]</td>
125
            <td>[% ItemTypes.GetDescription( overdueloo.itemtype ) | html %]</td>
127
            <td>[% ItemTypes.GetDescription( overdueloo.itemtype ) | html %]</td>
126
- 

Return to bug 36547