From 07fb747190f05f2f2ac3521942c2b80a308c734f Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 24 Jun 2022 17:28:43 -0400 Subject: [PATCH] LP1904036 Bills/Payments modify notes fix Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- .../eg2/src/app/staff/circ/patron/bill-statement.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/bill-statement.component.ts b/Open-ILS/src/eg2/src/app/staff/circ/patron/bill-statement.component.ts index 2dcbfbec1d..5fefa740e6 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/bill-statement.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/bill-statement.component.ts @@ -114,12 +114,12 @@ export class BillStatementComponent implements OnInit { if (value === notes) { return; } let method = 'open-ils.circ.money.billing.note.edit'; - if (rows[0].classname === 'mp') { + if (rows[0].classname === 'mbp') { method = 'open-ils.circ.money.payment.note.edit'; } this.net.requestWithParamList( - 'open-ils.circ', method, [this.auth.token()].concat(ids)) + 'open-ils.circ', method, [this.auth.token(), value].concat(ids)) .toPromise().then(resp => { const evt = this.evt.parse(resp); if (evt) { -- 2.43.2