From: Jane Sandberg Date: Tue, 23 Oct 2018 20:29:21 +0000 (-0700) Subject: LP1790727: Don't include canceled items in the daily schedule view X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=889722e757b844dc4e0df209b68c24942af0455e;p=working%2FEvergreen.git LP1790727: Don't include canceled items in the daily schedule view Signed-off-by: Jane Sandberg --- 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 = []