chore: add call disposition in report

This commit is contained in:
Abhishek Kumar 2026-03-11 19:03:54 +05:30
parent 4d807266a7
commit 22c2a3ba89
2 changed files with 7 additions and 1 deletions

View file

@ -697,6 +697,7 @@ async def download_campaign_report(
"Created At",
"Customer Name",
"Phone Number",
"Call Disposition",
"Call Tags",
"Call Duration (s)",
"Transcript",
@ -726,6 +727,7 @@ async def download_campaign_report(
run.created_at.isoformat() if run.created_at else "",
initial.get("first_name", ""),
initial.get("phone_number", ""),
gathered.get("mapped_call_disposition", ""),
call_tags,
cost.get("call_duration_seconds", ""),
_transcript_from_logs(run.logs),