Auto-update: Mon Oct 28 12:28:42 PDT 2024
This commit is contained in:
parent
3bc44477ba
commit
a1b80ede0a
1 changed files with 1 additions and 12 deletions
|
@ -635,17 +635,6 @@ async def process_att_csv(
|
||||||
# Load the phone lookup data from file
|
# Load the phone lookup data from file
|
||||||
cleaned_lookup = load_phone_lookup()
|
cleaned_lookup = load_phone_lookup()
|
||||||
|
|
||||||
# Ensure the Phone Calls project exists
|
|
||||||
project_name = "📞 Phone Calls" # This is correct
|
|
||||||
try:
|
|
||||||
project_id = await ensure_project_exists(project_name)
|
|
||||||
except Exception as e:
|
|
||||||
l.error(f"Failed to ensure project exists: {e}")
|
|
||||||
raise HTTPException(
|
|
||||||
status_code=500,
|
|
||||||
detail=f"Failed to create or find project '{project_name}'" # Fixed error message
|
|
||||||
)
|
|
||||||
|
|
||||||
# Read and process the CSV
|
# Read and process the CSV
|
||||||
content = await file.read()
|
content = await file.read()
|
||||||
content = content.decode('utf-8')
|
content = content.decode('utf-8')
|
||||||
|
@ -698,7 +687,7 @@ async def process_att_csv(
|
||||||
entry = {
|
entry = {
|
||||||
"start_date": dt.strftime("%Y-%m-%dT%H:%M:%S-07:00"),
|
"start_date": dt.strftime("%Y-%m-%dT%H:%M:%S-07:00"),
|
||||||
"end_date": end_dt.strftime("%Y-%m-%dT%H:%M:%S-07:00"),
|
"end_date": end_dt.strftime("%Y-%m-%dT%H:%M:%S-07:00"),
|
||||||
"project_id": project_id,
|
"project": "📞 Phone Calls",
|
||||||
"title": f"{row['Incoming/Outgoing']} - {contact_name}",
|
"title": f"{row['Incoming/Outgoing']} - {contact_name}",
|
||||||
"notes": f"Call via {row['Type']} from {row['Location']}",
|
"notes": f"Call via {row['Type']} from {row['Location']}",
|
||||||
"replace_existing": False
|
"replace_existing": False
|
||||||
|
|
Loading…
Reference in a new issue