Set billing address to correct field in upsert_estimate.

This commit is contained in:
rocketdebris 2026-02-10 19:55:52 -05:00
parent 860bd69531
commit c5e4f3f72a

View file

@ -510,7 +510,7 @@ def upsert_estimate(data):
"company": data.get("company"),
"actual_customer_name": client_doc.name,
"customer_type": address_doc.customer_type,
"customer_address": client_doc.custom_billing_address,
"customer_address": client_doc.primary_address,
"contact_person": data.get("contact_name"),
"letter_head": data.get("company"),
"custom_project_template": data.get("project_template", None),