Consolidated action tracker for the Chart E-Invoicing project.
Data source: Supabase — migrated 3 March 2026.
# Dashboard summary
python3 -c "from einvoicing_db import *; print(summary())"
# List all actions
python3 -c "from einvoicing_db import *; list_actions()"
# Filter by status
python3 -c "from einvoicing_db import *; list_actions(status='OPEN')"
python3 -c "from einvoicing_db import *; list_actions(status='OVERDUE')"
# Filter by owner
python3 -c "from einvoicing_db import *; list_actions(owner='JC')"
python3 -c "from einvoicing_db import *; list_actions(owner='Luigi')"
# Filter by section
python3 -c "from einvoicing_db import *; list_actions(section='France')"
# View single action
python3 -c "from einvoicing_db import *; get_action('ACT-039')"
# Update
python3 -c "from einvoicing_db import *; complete_action('ACT-039', notes='done')"
python3 -c "from einvoicing_db import *; update_action('ACT-001', status='IN PROGRESS')"
# Add new
python3 -c "from einvoicing_db import *; add_action('ACT-087', 'New action description', 'JC', due='10 Mar 2026', section='France (FR)')"
Actions are tagged by section: Infrastructure & IPsec Tunnel, Middleware & Architecture, Germany (DE), Malaysia (MY), France (FR), Supplier Lookup (AP Routing), Denmark (DK), EDICOM Integration & Format, Commercial & Account Management.
actionsid (ACT-001 .. ACT-086)/home/jc/temp/einvoicing_db.pyFor architecture decisions, see Decisions Log. For risks and issues, see Risks & Issues.