feat: setup invoice entityt

This commit is contained in:
Nathnael
2026-06-26 13:38:48 +00:00
parent f86bdb1c36
commit aa59e30ea7
3 changed files with 108 additions and 13 deletions

View File

@@ -23,7 +23,7 @@ export const GOVERNMENT_PRIORITY_BONUS = 50_000;
export interface GovernmentBookingFields {
isGovernment: boolean;
governmentInstitution?: string | null;
governmentInstitution?: string | null;
}
export enum ExceededAction {
@@ -128,6 +128,15 @@ export enum PaymentStatus {
Refunded = "REFUNDED",
}
export enum InvoiceStatus {
Draft = "DRAFT",
Pending = "PENDING",
Paid = "PAID",
Overdue = "OVERDUE",
Cancelled = "CANCELLED",
Refunded = "REFUNDED",
}
export enum SchedulingStatus {
NotScheduled = "NOT_SCHEDULED",
Holding = "HOLDING",