Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- import { records } from "../staff/actions";
-
- export interface FinancialStatusReportFilter {
- project: string[];
- }
-
- // - Project P&L Report
- export interface ProjectPandLReportFilter {
- project: string[];
- startMonth: string;
- startMonthTo: string;
- }
-
- export interface ProjectPandLReportRequest {
- projectId: number;
- startMonth: string;
- endMonth: string;
- }
-
- // - Project Cash Flow Report
- export interface ProjectCashFlowReportFilter {
- project: string[];
- dateType: string[];
- }
-
- export interface ProjectCashFlowReportRequest {
- projectId: number;
- dateType: string;
- }
-
-
- // - Monthly Work Hours Report
- export interface MonthlyWorkHoursReportFilter {
- staff: string[];
- date: any;
- }
-
- export interface MonthlyWorkHoursReportRequest {
- id: number;
- yearMonth: string;
- }
- // - Project Resource Overconsumption Report
- export interface ProjectResourceOverconsumptionReportFilter {
- team: string[];
- customer: string[];
- status: string[];
- lowerLimit: number;
- }
-
- export interface ProjectResourceOverconsumptionReportRequest {
- teamId?: number
- custId?: number
- status: "All" | "Within Budget" | "Potential Overconsumption" | "Overconsumption"
- lowerLimit: number
- }
-
- export interface LateStartReportFilter {
- remainedDays: number;
- overdueDays: number;
- team: string[];
- }
-
- export interface LateStartReportRequest {
- team: string;
- client: string;
- date: any;
- }
-
- export interface ProjectCompletionReportFilter {
- startDate: String;
- startDateTo: String;
- Outstanding: String;
- }
-
- export interface ProjectCompletionReportRequest {
- startDate: String;
- endDate: String;
- outstanding: Boolean;
- }
|