Avoid displaying canceled (previously aborted/deleted) transits in the
web staff Transit List interface.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
function current_query() {
var filter = {
'source_send_time' : { 'between' : date_range() },
- 'dest_recv_time' : null
+ 'dest_recv_time' : null,
+ 'cancel_time' : null
};
if ($scope.transit_direction == 'to') { filter['dest'] = $scope.context_org.id(); }
if ($scope.transit_direction == 'from') { filter['source'] = $scope.context_org.id(); }