@@ -, +, @@ --- Koha/REST/V1/Illrequests.pm | 7 ++++--- admin/columns_settings.yml | 4 ++++ koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 3 ++- 3 files changed, 10 insertions(+), 4 deletions(-) --- a/Koha/REST/V1/Illrequests.pm +++ a/Koha/REST/V1/Illrequests.pm @@ -125,9 +125,10 @@ sub list { foreach my $p(@{$patron_arr}) { if ($p->{borrowernumber} == $req->borrowernumber) { $to_push->{patron} = { - firstname => $p->{firstname}, - surname => $p->{surname}, - cardnumber => $p->{cardnumber} + borrowernumber => $p->{borrowernumber}, + firstname => $p->{firstname}, + surname => $p->{surname}, + cardnumber => $p->{cardnumber} }; last; } --- a/admin/columns_settings.yml +++ a/admin/columns_settings.yml @@ -374,6 +374,10 @@ modules: - columnname: orderid - + columnname: patron_borrowernumber + - + columnname: patron_cardnumber + - columnname: biblio_id - columnname: borrowernumber --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -519,9 +519,10 @@ Pages Type Order ID + Patron ID + Patron barcode Biblio ID Patron - Patron barcode Branch Status   --