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

(-)a/admin/columns_settings.yml (+3 lines)
Lines 1587-1592 modules: Link Here
1587
              columnname: barcode
1587
              columnname: barcode
1588
            -
1588
            -
1589
              columnname: call_number
1589
              columnname: call_number
1590
            -
1591
              columname: copynumber
1592
              is_hidden: 1
1590
            -
1593
            -
1591
              columnname: item_type
1594
              columnname: item_type
1592
              is_hidden: 1
1595
              is_hidden: 1
(-)a/circ/overdue.pl (-2 / +5 lines)
Lines 252-259 if ($noreport) { Link Here
252
        biblio.author,
252
        biblio.author,
253
        biblio.biblionumber,
253
        biblio.biblionumber,
254
        items.itemcallnumber,
254
        items.itemcallnumber,
255
        items.replacementprice,
256
        items.enumchron,
255
        items.enumchron,
256
        items.copynumber,
257
        items.replacementprice,
257
        items.itemnotes_nonpublic,
258
        items.itemnotes_nonpublic,
258
        items.itype,
259
        items.itype,
259
        return_claims.created_on AS return_claim_created_on,
260
        return_claims.created_on AS return_claim_created_on,
Lines 348-353 if ($noreport) { Link Here
348
            holdingbranchcode      => $data->{holdingbranch},
349
            holdingbranchcode      => $data->{holdingbranch},
349
            location               => $data->{location},
350
            location               => $data->{location},
350
            itemcallnumber         => $data->{itemcallnumber},
351
            itemcallnumber         => $data->{itemcallnumber},
352
            enumchron              => $data->{enumchron},
353
            copynumber             => $data->{copynumber},
351
            replacementprice       => $data->{replacementprice},
354
            replacementprice       => $data->{replacementprice},
352
            itemnotes_nonpublic    => $data->{itemnotes_nonpublic},
355
            itemnotes_nonpublic    => $data->{itemnotes_nonpublic},
353
            return_claim_created_on => $data->{return_claim_created_on},
356
            return_claim_created_on => $data->{return_claim_created_on},
Lines 400-406 sub build_csv { Link Here
400
    # build header ...
403
    # build header ...
401
    my @keys =
404
    my @keys =
402
      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
403
      branchcode itemcallnumber biblionumber borrowernumber itemnum issuedate replacementprice itemnotes_nonpublic streetnumber streettype);
406
      branchcode itemcallnumber enumchron copynumber biblionumber borrowernumber itemnum issuedate replacementprice itemnotes_nonpublic streetnumber streettype);
404
    my $csv = Text::CSV_XS->new();
407
    my $csv = Text::CSV_XS->new();
405
    $csv->combine(@keys);
408
    $csv->combine(@keys);
406
    push @lines, $csv->string();
409
    push @lines, $csv->string();
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt (-2 / +3 lines)
Lines 94-99 Link Here
94
          <th>Shelving location</th>
94
          <th>Shelving location</th>
95
          <th>Barcode</th>
95
          <th>Barcode</th>
96
          <th>Call number</th>
96
          <th>Call number</th>
97
          <th>Copy number</th>
97
          <th>Item type</th>
98
          <th>Item type</th>
98
          <th>Price</th>
99
          <th>Price</th>
99
          <th>Non-public note</th>
100
          <th>Non-public note</th>
Lines 122-128 Link Here
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>
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>
124
          <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>
125
          <td>[% overdueloo.itemcallnumber | html %]</td>
125
            <td>[% ItemTypes.GetDescription( overdueloo.itemtype ) | html %]</td>
126
          <td>[% ItemTypes.GetDescription( overdueloo.itemtype ) | html %]</td>
127
          <td>[% overdueloo.copynumber | html %]</td>
126
          <td>[% overdueloo.replacementprice | $Price %]</td>
128
          <td>[% overdueloo.replacementprice | $Price %]</td>
127
          <td>[% overdueloo.itemnotes_nonpublic | html %]</td>
129
          <td>[% overdueloo.itemnotes_nonpublic | html %]</td>
128
          [% IF Koha.Preference('ClaimReturnedLostValue') %]
130
          [% IF Koha.Preference('ClaimReturnedLostValue') %]
129
- 

Return to bug 28577