fix: first name error on customer creation (#38927)

fix: error on customer creation
This commit is contained in:
ruthra kumar
2023-12-24 16:12:13 +05:30
committed by GitHub
parent 2eac618bba
commit 28f052d586

View File

@@ -702,6 +702,7 @@ def make_contact(args, is_primary_contact=1):
else:
values.update(
{
"first_name": args.get("customer_name"),
"company_name": args.get("customer_name"),
}
)