datasynth-generators 2.4.0

50+ data generators covering GL, P2P, O2C, S2C, HR, manufacturing, audit, tax, treasury, and ESG
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Retail industry transaction generation.
//!
//! Provides retail-specific:
//! - POS transactions, returns, promotions
//! - Inventory management and shrinkage
//! - Master data (stores, products, categories)
//! - Anomalies (sweethearting, skimming, refund fraud)

mod anomalies;
mod settings;
mod transactions;

pub use anomalies::RetailAnomaly;
pub use settings::{PromotionType, RetailSettings, StoreType};
pub use transactions::{
    InventoryTransaction, PosTransaction, RetailTransaction, RetailTransactionGenerator,
};