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)
| 318 | // - model.ReconciliationProgress: The current progress of the reconciliation. |
| 319 | // - error: If the progress cannot be retrieved. |
| 320 | func (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. |
no test coverage detected