datasynth-generators 2.2.0

50+ data generators covering GL, P2P, O2C, S2C, HR, manufacturing, audit, tax, treasury, and ESG
Documentation
//! Subledger generators.
//!
//! This module provides generators for:
//! - AR (Accounts Receivable) transactions
//! - AP (Accounts Payable) transactions
//! - FA (Fixed Assets) depreciation
//! - Inventory movements
//! - GL-to-subledger reconciliation
//! - Document flow linking (creates subledger records from document flows)
//! - Dunning (Mahnungen) process for AR collections

mod ap_generator;
mod ar_generator;
mod depreciation_run_generator;
mod document_flow_linker;
mod dunning_generator;
mod fa_generator;
mod inventory_generator;
mod inventory_valuation_generator;
mod reconciliation;

pub use ap_generator::*;
pub use ar_generator::*;
pub use depreciation_run_generator::*;
pub use document_flow_linker::*;
pub use dunning_generator::*;
pub use fa_generator::*;
pub use inventory_generator::*;
pub use inventory_valuation_generator::*;
pub use reconciliation::*;