From 1499941570d282750abd374df8da25a467fbb7c2 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Wed, 25 Aug 2021 12:13:14 -0400 Subject: [PATCH] LP1904036 Bill details voider / accepting user Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- .../app/staff/circ/patron/bill-statement.component.html | 2 +- .../app/staff/circ/patron/bill-statement.component.ts | 17 +++++++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/bill-statement.component.html b/Open-ILS/src/eg2/src/app/staff/circ/patron/bill-statement.component.html index df88b72073..7324746d56 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/bill-statement.component.html +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/bill-statement.component.html @@ -218,7 +218,7 @@
- { const orderBy: any = {}; if (sort.length) { - orderBy.mp = sort[0].name + ' ' + sort[0].dir; + orderBy.mbp = sort[0].name + ' ' + sort[0].dir; } - return this.pcrud.search( - 'mp', {xact: this.xactId}, {order_by: orderBy}); + return this.pcrud.search('mbp', {xact: this.xactId}, { + flesh: 1, + flesh_fields: {mbp: ['accepting_usr']}, + order_by: orderBy + }); }; - this.net.request( 'open-ils.circ', 'open-ils.circ.money.statement.retrieve', -- 2.11.0