feat(inventory): extend inventory browser filters
This commit is contained in:
@@ -1,4 +1,16 @@
|
|||||||
import { IsOptional, IsString, IsUUID, MaxLength } from 'class-validator';
|
import { Transform, Type } from 'class-transformer';
|
||||||
|
import {
|
||||||
|
IsBoolean,
|
||||||
|
IsEnum,
|
||||||
|
IsInt,
|
||||||
|
IsOptional,
|
||||||
|
IsString,
|
||||||
|
IsUUID,
|
||||||
|
Max,
|
||||||
|
MaxLength,
|
||||||
|
Min,
|
||||||
|
} from 'class-validator';
|
||||||
|
import { AssetInformationStatus, AssetOperationalStatus } from '../../database/entities';
|
||||||
|
|
||||||
export class InventoryBrowserQueryDto {
|
export class InventoryBrowserQueryDto {
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
@@ -6,7 +18,46 @@ export class InventoryBrowserQueryDto {
|
|||||||
@MaxLength(200)
|
@MaxLength(200)
|
||||||
search?: string;
|
search?: string;
|
||||||
|
|
||||||
|
@IsOptional()
|
||||||
|
@IsUUID('4')
|
||||||
|
typeId?: string;
|
||||||
|
|
||||||
|
@IsOptional()
|
||||||
|
@IsEnum(AssetInformationStatus)
|
||||||
|
status?: AssetInformationStatus;
|
||||||
|
|
||||||
|
@IsOptional()
|
||||||
|
@IsEnum(AssetOperationalStatus)
|
||||||
|
operationalStatus?: AssetOperationalStatus;
|
||||||
|
|
||||||
|
@IsOptional()
|
||||||
|
@IsUUID('4')
|
||||||
|
operationalAreaId?: string;
|
||||||
|
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
@IsUUID('4')
|
@IsUUID('4')
|
||||||
operatorCompanyId?: string;
|
operatorCompanyId?: string;
|
||||||
|
|
||||||
|
@IsOptional()
|
||||||
|
@Transform(({ value }) => value === 'true' ? true : value === 'false' ? false : value)
|
||||||
|
@IsBoolean()
|
||||||
|
needsValidation?: boolean;
|
||||||
|
|
||||||
|
@IsOptional()
|
||||||
|
@Transform(({ value }) => value === 'true' ? true : value === 'false' ? false : value)
|
||||||
|
@IsBoolean()
|
||||||
|
hasGeometry?: boolean;
|
||||||
|
|
||||||
|
@IsOptional()
|
||||||
|
@Type(() => Number)
|
||||||
|
@IsInt()
|
||||||
|
@Min(1)
|
||||||
|
page = 1;
|
||||||
|
|
||||||
|
@IsOptional()
|
||||||
|
@Type(() => Number)
|
||||||
|
@IsInt()
|
||||||
|
@Min(1)
|
||||||
|
@Max(100)
|
||||||
|
pageSize = 25;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user