ETASCOM CRM V3 - Documentation API
    Preparing search index...

    Interface CreatePayslipData

    interface CreatePayslipData {
        employeeId: string;
        period: string;
        grossSalary: number;
        netSalary: number;
        deductions: number;
        bonuses: number;
        workingDays: number;
        workingHours: number;
        overtimeHours: number;
        notes?: string;
        payslipLines: Omit<PayslipLine, "id" | "createdAt" | "payslipId">[];
    }
    Index

    Properties

    employeeId: string
    period: string
    grossSalary: number
    netSalary: number
    deductions: number
    bonuses: number
    workingDays: number
    workingHours: number
    overtimeHours: number
    notes?: string
    payslipLines: Omit<PayslipLine, "id" | "createdAt" | "payslipId">[]