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

(-)a/Koha/Illrequest.pm (-3 / +4 lines)
Lines 1005-1013 sub TO_JSON { Link Here
1005
        if ( $embed->{patron} ) {
1005
        if ( $embed->{patron} ) {
1006
            my $patron = $self->patron;
1006
            my $patron = $self->patron;
1007
            $object->{patron} = {
1007
            $object->{patron} = {
1008
                firstname  => $patron->firstname,
1008
                borrowernumber => $patron->borrowernumber,
1009
                surname    => $patron->surname,
1009
                firstname      => $patron->firstname,
1010
                cardnumber => $patron->cardnumber
1010
                surname        => $patron->surname,
1011
                cardnumber     => $patron->cardnumber
1011
            };
1012
            };
1012
        }
1013
        }
1013
        # Augment the request response with metadata details if appropriate
1014
        # Augment the request response with metadata details if appropriate
(-)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 (-1 / +2 lines)
Lines 595-600 Link Here
595
                                    <th scope="col">Pages</th>
595
                                    <th scope="col">Pages</th>
596
                                    <th scope="col">Type</th>
596
                                    <th scope="col">Type</th>
597
                                    <th scope="col">Order ID</th>
597
                                    <th scope="col">Order ID</th>
598
                                    <th scope="col">Patron ID</th>
599
                                    <th scope="col">Patron barcode</th>
598
                                    <th scope="col">Biblio ID</th>
600
                                    <th scope="col">Biblio ID</th>
599
                                    <th scope="col">Patron</th>
601
                                    <th scope="col">Patron</th>
600
                                    <th scope="col">Branch</th>
602
                                    <th scope="col">Branch</th>
601
- 

Return to bug 21063