File size: 518 Bytes
422b73d
 
389ef0e
2b10760
389ef0e
 
 
422b73d
 
 
 
 
 
 
389ef0e
422b73d
 
 
adca714
178b3d8
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export interface InvoiceInterface {
  id?: number;
  reference_number?: string;
  invoice_number?:string;
  vendor_name?: string;
  invoice_date?: Date;
  total?: number; 
  amount_paid: number;
  due_date?: Date; 
  term?: string; 
  description?: string; 
  payment_status?: string;
  pw_work_order_id?: number;
  pw_vendor_id?: number;
  filename?: string;
  pdf_url?: string;
  status: string;
  uploaded_by: number; 
}

export interface ApprovalData {
  invoiceId: string;
  userId: number;
  comment?: string;
}