- period_index, scheduled_date, amount, accumulated, book_value_at_end - is_posted / posted_date / move_id (set when engine posts the entry) - action_post() marks the line as posted (idempotent) - UNIQUE(asset_id, period_index) constraint via models.Constraint - 5 new tests (52 total) Made-with: Cursor
8 lines
266 B
Python
8 lines
266 B
Python
from . import test_depreciation_methods
|
|
from . import test_prorate
|
|
from . import test_salvage_value
|
|
from . import test_asset_anomaly_detection
|
|
from . import test_useful_life_predictor
|
|
from . import test_fusion_asset
|
|
from . import test_fusion_asset_depreciation_line
|