33 lines
941 B
Markdown
33 lines
941 B
Markdown
Truck Freight Ledger
|
|
|
|
This repository stores structured truck freight forwarding records for future analysis.
|
|
|
|
Files
|
|
- truck_freight_ledger.json: canonical structured ledger
|
|
- truck_freight_ledger.csv: spreadsheet-friendly export
|
|
- truck_freight_summary.md: quick human-readable summary
|
|
- append_load.py: helper to append a new record and regenerate exports
|
|
|
|
Schema notes
|
|
- currency: currency code
|
|
- records[]: one entry per load or payment arrangement
|
|
- Common fields:
|
|
- date
|
|
- vehicle
|
|
- from / to / via
|
|
- shipper
|
|
- freight_charged
|
|
- advance_received
|
|
- paid_to_driver
|
|
- commission
|
|
- pending_from_shipper
|
|
- pending_to_driver
|
|
- status
|
|
- notes
|
|
|
|
Usage
|
|
- Append new loads as new records.
|
|
- Keep corrections in notes when the user updates details.
|
|
- Use the JSON file for future AI analysis and profit/pending calculations.
|
|
- Use append_load.py to add a new record and automatically regenerate the CSV and summary files.
|
|
|