From: Bill Erickson Date: Fri, 24 Jun 2022 21:28:43 +0000 (-0400) Subject: LP1904036 Bills/Payments modify notes fix X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=07fb747190f05f2f2ac3521942c2b80a308c734f;p=Evergreen.git LP1904036 Bills/Payments modify notes fix Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- 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) {