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

(-)a/Koha/REST/V1/Illrequests.pm (-3 / +4 lines)
Lines 126-134 sub list { Link Here
126
        foreach my $p(@{$patron_arr}) {
126
        foreach my $p(@{$patron_arr}) {
127
            if ($p->{borrowernumber} == $req->borrowernumber) {
127
            if ($p->{borrowernumber} == $req->borrowernumber) {
128
                $to_push->{patron} = {
128
                $to_push->{patron} = {
129
                    firstname  => $p->{firstname},
129
                    borrowernumber => $p->{borrowernumber},
130
                    surname    => $p->{surname},
130
                    firstname      => $p->{firstname},
131
                    cardnumber => $p->{cardnumber}
131
                    surname        => $p->{surname},
132
                    cardnumber     => $p->{cardnumber}
132
                };
133
                };
133
                last;
134
                last;
134
            }
135
            }
(-)a/admin/columns_settings.yml (+4 lines)
Lines 280-285 modules: Link Here
280
        -
280
        -
281
          columnname: orderid
281
          columnname: orderid
282
        -
282
        -
283
          columnname: patron_borrowernumber
284
        -
285
          columnname: patron_cardnumber
286
        -
283
          columnname: biblio_id
287
          columnname: biblio_id
284
        -
288
        -
285
          columnname: borrowernumber
289
          columnname: borrowernumber
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-2 / +2 lines)
Lines 505-513 Link Here
505
                                    <th scope="col">Pages</th>
505
                                    <th scope="col">Pages</th>
506
                                    <th scope="col">Type</th>
506
                                    <th scope="col">Type</th>
507
                                    <th scope="col">Order ID</th>
507
                                    <th scope="col">Order ID</th>
508
                                    <th scope="col">Patron ID</th>
509
                                    <th scope="col" class="patron_cardnumber">Patron barcode</th>
508
                                    <th scope="col">Biblio ID</th>
510
                                    <th scope="col">Biblio ID</th>
509
                                    <th scope="col">Patron</th>
511
                                    <th scope="col">Patron</th>
510
                                    <th class="patron_cardnumber">Patron barcode</th>
511
                                    <th scope="col">Branch</th>
512
                                    <th scope="col">Branch</th>
512
                                    <th scope="col">Status</th>
513
                                    <th scope="col">Status</th>
513
                                    <th scope="col" class="placed">&nbsp;</th>
514
                                    <th scope="col" class="placed">&nbsp;</th>
514
- 

Return to bug 21063