MCPcopy Create free account
hub / github.com/devaccuracy/ledgerforge / loadReconciliationProgress

Method loadReconciliationProgress

reconciliation.go:320–322  ·  view source on GitHub ↗

loadReconciliationProgress retrieves the progress of a reconciliation process. Parameters: - ctx: The context controlling the request. - reconciliationID: The ID of the reconciliation to load progress for. Returns: - model.ReconciliationProgress: The current progress of the reconciliation. - error:

(ctx context.Context, reconciliationID string)

Source from the content-addressed store, hash-verified

318// - model.ReconciliationProgress: The current progress of the reconciliation.
319// - error: If the progress cannot be retrieved.
320func (s *LedgerForge) loadReconciliationProgress(ctx context.Context, reconciliationID string) (model.ReconciliationProgress, error) {
321 return s.datasource.LoadReconciliationProgress(ctx, reconciliationID)
322}
323
324// processReconciliation manages the full reconciliation process by executing each step: updating the status,
325// fetching rules, processing transactions, and finalizing the reconciliation.

Callers 1

Calls 1

Tested by

no test coverage detected