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

(-)a/Koha/REST/V1/Illrequests.pm (-3 / +4 lines)
Lines 128-136 sub list { Link Here
128
        foreach my $p(@{$patron_arr}) {
128
        foreach my $p(@{$patron_arr}) {
129
            if ($p->{borrowernumber} == $req->borrowernumber) {
129
            if ($p->{borrowernumber} == $req->borrowernumber) {
130
                $to_push->{patron} = {
130
                $to_push->{patron} = {
131
                    firstname  => $p->{firstname},
131
                    borrowernumber => $p->{borrowernumber},
132
                    surname    => $p->{surname},
132
                    firstname      => $p->{firstname},
133
                    cardnumber => $p->{cardnumber}
133
                    surname        => $p->{surname},
134
                    cardnumber     => $p->{cardnumber}
134
                };
135
                };
135
                last;
136
                last;
136
            }
137
            }
(-)a/admin/columns_settings.yml (+4 lines)
Lines 321-326 modules: Link Here
321
        -
321
        -
322
          columnname: orderid
322
          columnname: orderid
323
        -
323
        -
324
          columnname: patron_borrowernumber
325
        -
326
          columnname: patron_cardnumber
327
        -
324
          columnname: biblio_id
328
          columnname: biblio_id
325
        -
329
        -
326
          columnname: borrowernumber
330
          columnname: borrowernumber
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-2 / +2 lines)
Lines 510-518 Link Here
510
                                    <th scope="col">Pages</th>
510
                                    <th scope="col">Pages</th>
511
                                    <th scope="col">Type</th>
511
                                    <th scope="col">Type</th>
512
                                    <th scope="col">Order ID</th>
512
                                    <th scope="col">Order ID</th>
513
                                    <th scope="col">Patron ID</th>
514
                                    <th scope="col" class="patron_cardnumber">Patron barcode</th>
513
                                    <th scope="col">Biblio ID</th>
515
                                    <th scope="col">Biblio ID</th>
514
                                    <th scope="col">Patron</th>
516
                                    <th scope="col">Patron</th>
515
                                    <th class="patron_cardnumber">Patron barcode</th>
516
                                    <th scope="col">Branch</th>
517
                                    <th scope="col">Branch</th>
517
                                    <th scope="col">Status</th>
518
                                    <th scope="col">Status</th>
518
                                    <th scope="col" class="placed">&nbsp;</th>
519
                                    <th scope="col" class="placed">&nbsp;</th>
519
- 

Return to bug 21063