@theredspace/spp-client
    Preparing search index...

    Interface AccountingPeriod

    interface AccountingPeriod {
        active: "0" | "1";
        created: string;
        current_period: "0" | "1";
        default_period: "0" | "1";
        end_date: string;
        id: string;
        name: string;
        notes?: string;
        period_date: string;
        period_date_how: "S" | "E" | "P";
        start_date: string;
        updated: string;
    }
    Index

    Properties

    active: "0" | "1"
    created: string
    current_period: "0" | "1"
    default_period: "0" | "1"
    end_date: string
    id: string
    name: string
    notes?: string
    period_date: string
    period_date_how: "S" | "E" | "P"
    start_date: string
    updated: string

    Usage and Relationships

    The AccountingPeriod represents a defined time frame for financial reporting and operations. It is often used in conjunction with other financial objects to manage and track transactions.

    Related Types:

    • ActualCost: Tracks costs incurred during the accounting period.
    • Budget: Represents planned financial allocations for the period.

    Key Fields:

    • id: Unique identifier for the accounting period.
    • start_date and end_date: Define the duration of the period.
    • active: Indicates whether the period is currently active.