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.
|
- import { records } from "../staff/actions";
-
- // - Project Cash Flow Report
- export interface ProjectCashFlowReportFilter {
- project: string[];
- }
-
- export interface ProjectCashFlowReportRequest {
- projectId: number;
- }
-
- // - Monthly Work Hours Report
- export interface MonthlyWorkHoursReportFilter {
- staff: string[];
- date: any;
- }
-
- export interface MonthlyWorkHoursReportRequest {
- id: number;
- yearMonth: string;
- }
-
- export interface LateStartReportFilter {
- remainedDays: number;
- overdueDays: number;
- team: string[];
- }
-
- export interface LateStartReportRequest {
- team: string[];
- client: string[];
- date: any;
- }
|