Removed useless status in matching sql request

This commit is contained in:
Sylvain Briat 2024-02-01 16:55:52 +01:00
parent 21c2bc663c
commit c42ddef7e4
2 changed files with 1 additions and 11 deletions

View File

@ -1,4 +1,4 @@
import { AdStatus, Frequency, Role } from '@modules/ad/core/domain/ad.types';
import { Frequency, Role } from '@modules/ad/core/domain/ad.types';
import { Selector } from '../algorithm.abstract';
import { Waypoint } from '../../../types/waypoint.type';
import { Point } from '../../../types/point.type';
@ -133,7 +133,6 @@ export class PassengerOrientedSelector extends Selector {
private _createWhere = (role: Role): string =>
[
this._whereStatus(),
this._whereRole(role),
this._whereStrict(),
this._whereDate(),
@ -145,8 +144,6 @@ export class PassengerOrientedSelector extends Selector {
.filter((where: string) => where != '')
.join(' AND ');
private _whereStatus = (): string => `status='${AdStatus.VALID}'`;
private _whereRole = (role: Role): string =>
role == Role.PASSENGER ? 'driver=True' : 'passenger=True';

View File

@ -53,10 +53,3 @@ export enum Role {
DRIVER = 'DRIVER',
PASSENGER = 'PASSENGER',
}
export enum AdStatus {
PENDING = 'PENDING',
VALID = 'VALID',
INVALID = 'INVALID',
SUSPENDED = 'SUSPENDED',
}