# Your Personalised Return Selections for FY 2024-25
selections = {
"basic_info": {
"australian_resident": True,
"reason": "You lived and worked in Australia (QLD) full year",
"had_spouse": False, # Update if applicable
},
"income_categories": {
"salary_wages": {
"selected": True,
"reason": "Employment income from Recovery Metrics: $55,566.80",
"sub_items": [
"✅ Salary, wages, allowances (pre-filled from payslips)",
"⬜ Government payments",
"⬜ Employment termination payments",
"⬜ Foreign employment income",
"⬜ FHSS scheme"
]
},
"superannuation": {
"selected": False,
"reason": "Not receiving super payments (still accumulating)",
},
"investment_income": {
"selected": True,
"reason": "May have bank interest, check statements",
"sub_items": [
"✅ Interest (from bank accounts)",
"⬜ Dividends (check CommSec/CMC annual statements)",
"⬜ Rent",
"⬜ Capital gains/losses",
]
},
"managed_funds": {
"selected": True, # Check your CMC/CommSec statements
"reason": "You have CMC/CommSec accounts - check if you received distributions",
"action_required": "Review annual tax statements from CMC/CommSec"
},
"business_psi": {
"selected": True,
"reason": "Contracting income: $6,762.50",
"type": "Personal Services Income (PSI)",
"sub_items": [
"✅ Personal services income ($6,762.50 from contracting)",
"⬜ Business income or loss",
"⬜ Partnerships",
]
},
"foreign_income": {
"selected": False,
"reason": "No overseas income reported"
},
"other_income": {
"selected": False,
"reason": "No share schemes or sharing economy income"
}
},
"deductions": {
"work_related": {
"selected": True,
"reason": "Multiple work-related expenses",
"items": [
"✅ Working from home: $987.52 (1,472 hours × $0.67)",
"✅ AI subscriptions: $1,128.04 (ChatGPT + GitHub Copilot)",
"✅ Equipment: Laptop, monitors (check actual purchases)",
]
},
"gifts_tax_affairs": {
"selected": True,
"reason": "Tax management costs",
"items": [
"✅ Cost of managing tax affairs",
"⬜ Donations (if any made)",
]
},
"income_protection": {
"selected": False,
"reason": "No income protection insurance identified"
},
"other_deductions": {
"selected": False,
"reason": "No other deductions applicable"
}
},
"offsets_losses": {
"tax_losses": {
"selected": False,
"reason": "No prior year losses"
},
"offsets": {
"auto_calculated": [
"✅ Low Income Tax Offset (LITO) - automatic",
"✅ Medicare Levy - automatic (2%)",
],
"manual_claim": []
}
}
}
# Print summary
print("=" * 70)
print("PERSONALISED RETURN SELECTIONS - FY 2024-25")
print("=" * 70)
print()
print("📋 BASIC INFORMATION:")
print(f" Australian Resident: {'✅ Yes' if selections['basic_info']['australian_resident'] else '❌ No'}")
print(f" Had Spouse: {'✅ Yes' if selections['basic_info']['had_spouse'] else '❌ No'}")
print()
print("💰 INCOME SELECTIONS:")
for category, details in selections['income_categories'].items():
if details['selected']:
print(f" ✅ {category.replace('_', ' ').title()}")
print(f" → {details['reason']}")
print()
print("📉 DEDUCTION SELECTIONS:")
for category, details in selections['deductions'].items():
if details['selected']:
print(f" ✅ {category.replace('_', ' ').title()}")
print(f" → {details['reason']}")
print()
print("🎯 TAX OFFSETS:")
for offset in selections['offsets_losses']['offsets']['auto_calculated']:
print(f" {offset}")
print()
print("=" * 70)
print("⚠️ ACTION ITEMS:")
print("=" * 70)
print("1. Check CMC/CommSec annual tax statements for managed fund distributions")
print("2. Verify bank interest amounts (pre-filled from banks)")
print("3. Confirm all equipment purchases for deduction claims")
print("4. Review AI subscription receipts (ChatGPT, GitHub Copilot)")
print("5. Update spouse status if applicable")
print("=" * 70)