Skip to main content

datasynth_generators/subledger/
mod.rs

1//! Subledger generators.
2//!
3//! This module provides generators for:
4//! - AR (Accounts Receivable) transactions
5//! - AP (Accounts Payable) transactions
6//! - FA (Fixed Assets) depreciation
7//! - Inventory movements
8//! - GL-to-subledger reconciliation
9//! - Document flow linking (creates subledger records from document flows)
10//! - Dunning (Mahnungen) process for AR collections
11
12mod ap_generator;
13mod ar_generator;
14mod document_flow_linker;
15mod dunning_generator;
16mod fa_generator;
17mod inventory_generator;
18mod reconciliation;
19
20pub use ap_generator::*;
21pub use ar_generator::*;
22pub use document_flow_linker::*;
23pub use dunning_generator::*;
24pub use fa_generator::*;
25pub use inventory_generator::*;
26pub use reconciliation::*;