feat: implement receipt alias functionality with CRUD operations and integrate with receipt import

This commit is contained in:
Nils-Johan Gynther
2026-04-16 21:06:16 +02:00
parent b8744f625b
commit af88a0dc81
11 changed files with 492 additions and 303 deletions
@@ -0,0 +1,10 @@
import { IsInt, IsString, MinLength } from 'class-validator';
export class CreateReceiptAliasDto {
@IsString()
@MinLength(1)
receiptName!: string;
@IsInt()
productId!: number;
}