Add 'cancelled' status to invoices

This commit is contained in:
2025-10-30 15:38:41 +01:00
parent cacc3d5943
commit 9603b100f5
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -139,7 +139,7 @@ export interface Invoice {
isRecurring: boolean;
isPartialService: boolean;
customer?: Customer | null;
paymentStatus: 'draft' | 'issued' | 'paid' | 'due' | 'reminded';
paymentStatus: 'draft' | 'issued' | 'paid' | 'due' | 'reminded' | 'cancelled';
totalAmount: number;
title: string;
text: string;