From 889722e757b844dc4e0df209b68c24942af0455e Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Tue, 23 Oct 2018 13:29:21 -0700 Subject: [PATCH] LP1790727: Don't include canceled items in the daily schedule view Signed-off-by: Jane Sandberg --- Open-ILS/web/js/ui/default/staff/booking/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/booking/app.js b/Open-ILS/web/js/ui/default/staff/booking/app.js index c1d8ce1391..e6e124c3c4 100644 --- a/Open-ILS/web/js/ui/default/staff/booking/app.js +++ b/Open-ILS/web/js/ui/default/staff/booking/app.js @@ -90,7 +90,8 @@ angular.module('egBooking', egCore.pcrud.search('bresv', {target_resource: $scope.resource, start_time: {"<": egOrgDateFilter($scope.endTime, 'yyyy-MM-dd HH:mm:ss', $scope.context_ou)}, - end_time: {">": egOrgDateFilter($scope.startTime, 'yyyy-MM-dd HH:mm:ss', $scope.context_ou)}}, + end_time: {">": egOrgDateFilter($scope.startTime, 'yyyy-MM-dd HH:mm:ss', $scope.context_ou)}, + cancel_time: null}, {flesh: 1, flesh_fields: {'bresv' : ['usr']}}, {atomic: true}).then( function(response) { $scope.schedule = [] -- 2.11.0