Skip to main content

datasynth_generators/document_flow/
mod.rs

1//! Document flow generators for P2P and O2C processes.
2//!
3//! This module provides generators for complete document flows:
4//! - P2P (Procure-to-Pay): PO → GR → Invoice → Payment
5//! - O2C (Order-to-Cash): SO → Delivery → Invoice → Receipt
6//!
7//! The `document_flow_je_generator` submodule creates corresponding
8//! journal entries from document flows to ensure GL coherence.
9
10mod document_chain_manager;
11mod document_flow_je_generator;
12mod o2c_generator;
13mod p2p_generator;
14mod three_way_match;
15
16pub use document_chain_manager::*;
17pub use document_flow_je_generator::*;
18pub use o2c_generator::*;
19pub use p2p_generator::*;
20pub use three_way_match::*;