Aller au contenu

Exports

Asynchronous legal exports: FEC, general ledger and analytical general ledger.

Bases: SyncAPIResource

Namespace for company data exports (FEC, General Ledger, Analytical General Ledger).

Bases: SyncAPIResource

Manage FEC (Fichier des Ecritures Comptables) exports.

create

create(
    *, period_start: date | str, period_end: date | str
) -> FecExport

Create a FEC export.

Scope: exports:fec. Reference: https://pennylane.readme.io/reference/exportfec

Parameters:

Name Type Description Default
period_start date | str

Start date of the period to export.

required
period_end date | str

End date of the period to export.

required

get

get(export_id: int) -> FecExport

Retrieve a FEC export.

Scope: exports:fec. Reference: https://pennylane.readme.io/reference/getfecexport

Bases: SyncAPIResource

Manage General Ledger exports.

create

create(
    *, period_start: date | str, period_end: date | str
) -> GeneralLedgerExport

Create a General Ledger export.

Scope: exports:gl. Reference: https://pennylane.readme.io/reference/exportgeneralledger

Parameters:

Name Type Description Default
period_start date | str

Start date of the period to export.

required
period_end date | str

End date of the period to export.

required

get

get(export_id: int) -> GeneralLedgerExport

Retrieve a General Ledger export.

Scope: exports:gl. Reference: https://pennylane.readme.io/reference/getgeneralledgerexport

Bases: SyncAPIResource

Manage Analytical General Ledger exports.

create

create(
    *,
    period_start: date | str,
    period_end: date | str,
    mode: str | None = None,
) -> AnalyticalGeneralLedgerExport

Create an Analytical General Ledger export.

Scope: exports:agl. Reference: https://pennylane.readme.io/reference/exportanalyticalgeneralledger

Parameters:

Name Type Description Default
period_start date | str

Start date of the period to export.

required
period_end date | str

End date of the period to export.

required
mode str | None

Export layout, "in_line" (default) or "in_column".

None

get

get(export_id: int) -> AnalyticalGeneralLedgerExport

Retrieve an Analytical General Ledger export.

Scope: exports:agl. Reference: https://pennylane.readme.io/reference/getanalyticalgeneralledgerexport