From 9af567c91a39c6ccb77f49590f8e1e84e2d6fa2e Mon Sep 17 00:00:00 2001 From: morteza-mortezai Date: Sun, 26 Oct 2025 16:57:53 +0330 Subject: [PATCH] fix : min Product varient price decrased to 1000 --- src/modules/product/DTO/addVariant.dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/product/DTO/addVariant.dto.ts b/src/modules/product/DTO/addVariant.dto.ts index a94abbe..81f9d9d 100644 --- a/src/modules/product/DTO/addVariant.dto.ts +++ b/src/modules/product/DTO/addVariant.dto.ts @@ -58,7 +58,7 @@ export class AddVariantDTO { @Expose() @IsNotEmpty() - @Min(10000, { message: "حداقل قیمت برای کالا ۱۰۰۰۰ تومان می باشد " }) + @Min(1000, { message: "حداقل قیمت برای کالا ۱۰۰۰۰ تومان می باشد " }) @IsNumber() @ApiProperty({ type: "number", description: "the price of product in toman", example: 5432510 }) retail_price: number;