make sure finished reservations are not in manage reservations
authorJane Sandberg <sandbej@linnbenton.edu>
Wed, 23 Jan 2019 03:12:13 +0000 (19:12 -0800)
committerJane Sandberg <sandbej@linnbenton.edu>
Wed, 23 Jan 2019 03:12:13 +0000 (19:12 -0800)
Signed-off-by: Jane Sandberg <sandbej@linnbenton.edu>
Open-ILS/src/eg2/src/app/staff/booking/manage-reservations.component.ts

index 65738cc..e3bdf1d 100644 (file)
@@ -54,7 +54,8 @@ export class ManageReservationsComponent implements OnInit {
       return this.pcrud.search('bresv', {
         "usr" : (this.patronId ? this.patronId : {">" : 0}),
         "target_resource" : (this.resourceId ? this.resourceId : {">" : 0}),
-        "cancel_time" : null
+        "cancel_time" : null,
+        "xact_finished" : null,
           }, {   
         order_by: orderBy,
         limit: pager.limit,