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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1864-1869 modules: Link Here
1864
              is_hidden: 1
1864
              is_hidden: 1
1865
            -
1865
            -
1866
              columnname: shelving_location
1866
              columnname: shelving_location
1867
            -
1868
              columnname: datelastborrowed
1867
            -
1869
            -
1868
              columnname: barcode
1870
              columnname: barcode
1869
            -
1871
            -
(-)a/circ/overdue.pl (-1 / +3 lines)
Lines 241-246 if ($noreport) { Link Here
241
        borrowers.branchcode,
241
        borrowers.branchcode,
242
        issues.itemnumber,
242
        issues.itemnumber,
243
        issues.issuedate,
243
        issues.issuedate,
244
        items.datelastborrowed,
244
        items.barcode,
245
        items.barcode,
245
        items.homebranch,
246
        items.homebranch,
246
        items.holdingbranch,
247
        items.holdingbranch,
Lines 336-341 if ($noreport) { Link Here
336
            email                  => $data->{email},
337
            email                  => $data->{email},
337
            branchcode             => $data->{branchcode},
338
            branchcode             => $data->{branchcode},
338
            barcode                => $data->{barcode},
339
            barcode                => $data->{barcode},
340
            datelastborrowed       => $data->{datelastborrowed},
339
            itemnum                => $data->{itemnumber},
341
            itemnum                => $data->{itemnumber},
340
            issuedate              => $data->{issuedate},
342
            issuedate              => $data->{issuedate},
341
            biblionumber           => $data->{biblionumber},
343
            biblionumber           => $data->{biblionumber},
Lines 400-406 sub build_csv { Link Here
400
    # build header ...
402
    # build header ...
401
    my @keys =
403
    my @keys =
402
      qw ( duedate title author borrowertitle firstname surname phone barcode email address address2 zipcode city country
404
      qw ( duedate title author borrowertitle firstname surname phone barcode email address address2 zipcode city country
403
      branchcode itemcallnumber biblionumber borrowernumber itemnum issuedate replacementprice itemnotes_nonpublic streetnumber streettype);
405
      branchcode datelastissued itemcallnumber biblionumber borrowernumber itemnum issuedate replacementprice itemnotes_nonpublic streetnumber streettype);
404
    my $csv = Text::CSV_XS->new();
406
    my $csv = Text::CSV_XS->new();
405
    $csv->combine(@keys);
407
    $csv->combine(@keys);
406
    push @lines, $csv->string();
408
    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