From: Bill Erickson Date: Thu, 16 Sep 2021 15:38:35 +0000 (-0400) Subject: LP1904036 Address deletion / replace repair X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=09b0266f4ed2b45810a8e0c11073c41b5634e2ff;p=evergreen%2Fpines.git LP1904036 Address deletion / replace repair 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/edit.component.html b/Open-ILS/src/eg2/src/app/staff/circ/patron/edit.component.html index 48dc650976..a557004811 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/edit.component.html +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/edit.component.html @@ -661,63 +661,65 @@
Addresses
-
- -
-
-
Address #{{index + 1}}
-
-
- - -
-
- - + +
+ +
+
+
Address #{{index + 1}}
+
+
+ + +
+
+ + +
+
-
+ + + + + + + + + + + + + + + + + + + +
- - - - - - - - - - - - - - - - - - - - -
+ diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/edit.component.ts b/Open-ILS/src/eg2/src/app/staff/circ/patron/edit.component.ts index 5c02838dc6..f9c0ea2425 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/edit.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/edit.component.ts @@ -1369,6 +1369,7 @@ export class EditComponent implements OnInit, AfterViewInit { } nonDeletedAddresses(): IdlObject[] { + console.log('nonDeletedAddresses() are ', this.patron.addresses().filter(a => !a.isdeleted()).map(a => a.id())); return this.patron.addresses().filter(a => !a.isdeleted()); }