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

(-)a/Koha/REST/V1/Illrequests.pm (-3 / +4 lines)
Lines 125-133 sub list { Link Here
125
        foreach my $p(@{$patron_arr}) {
125
        foreach my $p(@{$patron_arr}) {
126
            if ($p->{borrowernumber} == $req->borrowernumber) {
126
            if ($p->{borrowernumber} == $req->borrowernumber) {
127
                $to_push->{patron} = {
127
                $to_push->{patron} = {
128
                    firstname  => $p->{firstname},
128
                    borrowernumber => $p->{borrowernumber},
129
                    surname    => $p->{surname},
129
                    firstname      => $p->{firstname},
130
                    cardnumber => $p->{cardnumber}
130
                    surname        => $p->{surname},
131
                    cardnumber     => $p->{cardnumber}
131
                };
132
                };
132
                last;
133
                last;
133
            }
134
            }
(-)a/admin/columns_settings.yml (+4 lines)
Lines 374-379 modules: Link Here
374
        -
374
        -
375
          columnname: orderid
375
          columnname: orderid
376
        -
376
        -
377
          columnname: patron_borrowernumber
378
        -
379
          columnname: patron_cardnumber
380
        -
377
          columnname: biblio_id
381
          columnname: biblio_id
378
        -
382
        -
379
          columnname: borrowernumber
383
          columnname: borrowernumber
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-2 / +2 lines)
Lines 519-527 Link Here
519
                                    <th scope="col">Pages</th>
519
                                    <th scope="col">Pages</th>
520
                                    <th scope="col">Type</th>
520
                                    <th scope="col">Type</th>
521
                                    <th scope="col">Order ID</th>
521
                                    <th scope="col">Order ID</th>
522
                                    <th scope="col">Patron ID</th>
523
                                    <th scope="col" class="patron_cardnumber">Patron barcode</th>
522
                                    <th scope="col">Biblio ID</th>
524
                                    <th scope="col">Biblio ID</th>
523
                                    <th scope="col">Patron</th>
525
                                    <th scope="col">Patron</th>
524
                                    <th class="patron_cardnumber">Patron barcode</th>
525
                                    <th scope="col">Branch</th>
526
                                    <th scope="col">Branch</th>
526
                                    <th scope="col">Status</th>
527
                                    <th scope="col">Status</th>
527
                                    <th scope="col" class="placed">&nbsp;</th>
528
                                    <th scope="col" class="placed">&nbsp;</th>
528
- 

Return to bug 21063