Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

34 righe
649 B

  1. import { records } from "../staff/actions";
  2. // - Project Cash Flow Report
  3. export interface ProjectCashFlowReportFilter {
  4. project: string[];
  5. }
  6. export interface ProjectCashFlowReportRequest {
  7. projectId: number;
  8. }
  9. // - Monthly Work Hours Report
  10. export interface MonthlyWorkHoursReportFilter {
  11. staff: string[];
  12. date: any;
  13. }
  14. export interface MonthlyWorkHoursReportRequest {
  15. id: number;
  16. yearMonth: string;
  17. }
  18. export interface LateStartReportFilter {
  19. remainedDays: number;
  20. overdueDays: number;
  21. team: string[];
  22. }
  23. export interface LateStartReportRequest {
  24. team: string[];
  25. client: string[];
  26. date: any;
  27. }