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

    Interface Payslip

    interface Payslip {
        id: string;
        employeeId: string;
        period: string;
        grossSalary: number;
        netSalary: number;
        deductions: number;
        bonuses: number;
        workingDays: number;
        workingHours: number;
        overtimeHours: number;
        status: "DRAFT" | "SENT" | "PAID";
        pdfUrl?: string;
        notes?: string;
        createdAt: string;
        updatedAt: string;
        employee: {
            id: string;
            firstName: string;
            lastName: string;
            employeeNumber: string;
            department?: string;
            position?: string;
        };
        payslipLines: PayslipLine[];
    }
    Index

    Properties

    id: string
    employeeId: string
    period: string
    grossSalary: number
    netSalary: number
    deductions: number
    bonuses: number
    workingDays: number
    workingHours: number
    overtimeHours: number
    status: "DRAFT" | "SENT" | "PAID"
    pdfUrl?: string
    notes?: string
    createdAt: string
    updatedAt: string
    employee: {
        id: string;
        firstName: string;
        lastName: string;
        employeeNumber: string;
        department?: string;
        position?: string;
    }
    payslipLines: PayslipLine[]