invoice item total and subtotal

This commit is contained in:
2026-05-16 15:59:40 +03:30
parent 8017484f54
commit 7133b47c95
7 changed files with 58 additions and 17 deletions
@@ -88,7 +88,8 @@ export class CreateInvoiceDto {
description?: string;
@IsArray()
@IsOptional()
@Type(() => IAttachmentDto)
@ApiProperty({ type: [IAttachmentDto] })
attachments: IAttachmentDto[];
attachments?: IAttachmentDto[];
}