|
25 | 25 | use Application\Api\Input\Operator\HasBookingStatusOperatorType; |
26 | 26 | use Application\Api\Input\Operator\HasBookingWithBookableOperatorType; |
27 | 27 | use Application\Api\Input\Operator\HasBookingWithTaggedBookableOperatorType; |
| 28 | +use Application\Api\Input\Operator\HasCreditOnDate\HasCreditOnDateEqualOperatorType; |
| 29 | +use Application\Api\Input\Operator\HasCreditOnDate\HasCreditOnDateGreaterOperatorType; |
| 30 | +use Application\Api\Input\Operator\HasCreditOnDate\HasCreditOnDateGreaterOrEqualOperatorType; |
| 31 | +use Application\Api\Input\Operator\HasCreditOnDate\HasCreditOnDateLessOperatorType; |
| 32 | +use Application\Api\Input\Operator\HasCreditOnDate\HasCreditOnDateLessOrEqualOperatorType; |
| 33 | +use Application\Api\Input\Operator\HasCreditOnDate\HasCreditOnDateNullOperatorType; |
28 | 34 | use Application\Api\Input\Sorting\Age; |
29 | 35 | use Application\Api\Input\Sorting\Balance; |
30 | 36 | use Application\Enum\BillingType; |
|
78 | 84 | #[API\Filter(field: 'bookingDate', operator: BookingDateGreaterOrEqualOperatorType::class, type: 'Date')] |
79 | 85 | #[API\Filter(field: 'bookingDate', operator: BookingDateLessOperatorType::class, type: 'Date')] |
80 | 86 | #[API\Filter(field: 'bookingDate', operator: BookingDateLessOrEqualOperatorType::class, type: 'Date')] |
| 87 | +#[API\Filter(field: 'hasCreditOnDate', operator: HasCreditOnDateEqualOperatorType::class, type: 'Money')] |
| 88 | +#[API\Filter(field: 'hasCreditOnDate', operator: HasCreditOnDateGreaterOperatorType::class, type: 'Money')] |
| 89 | +#[API\Filter(field: 'hasCreditOnDate', operator: HasCreditOnDateGreaterOrEqualOperatorType::class, type: 'Money')] |
| 90 | +#[API\Filter(field: 'hasCreditOnDate', operator: HasCreditOnDateLessOperatorType::class, type: 'Money')] |
| 91 | +#[API\Filter(field: 'hasCreditOnDate', operator: HasCreditOnDateLessOrEqualOperatorType::class, type: 'Money')] |
| 92 | +#[API\Filter(field: 'hasCreditOnDate', operator: HasCreditOnDateNullOperatorType::class, type: 'Money')] |
81 | 93 | #[ORM\Entity(UserRepository::class)] |
82 | 94 | #[ORM\HasLifecycleCallbacks] |
83 | 95 | #[ORM\AssociationOverrides([new ORM\AssociationOverride(name: 'owner', inversedBy: 'users')])] |
|
0 commit comments