datasynth-core 2.4.0

Core domain models, traits, and distributions for synthetic enterprise data generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Inventory subledger models.
//!
//! This module provides models for:
//! - Inventory positions and stock levels
//! - Inventory movements (receipts, issues, transfers)
//! - Inventory valuation methods

mod movement;
mod position;
mod valuation;

pub use movement::*;
pub use position::*;
pub use valuation::*;