fix test
diff --git a/erpnext/accounts/party.py b/erpnext/accounts/party.py
index 08571dd..f1c7c6c 100644
--- a/erpnext/accounts/party.py
+++ b/erpnext/accounts/party.py
@@ -275,8 +275,8 @@
if party_type == "Supplier":
supplier_type = frappe.db.get_value(party_type, party, fieldname="supplier_type")
template_name = frappe.db.get_value("Supplier Type", supplier_type, fieldname="payment_terms")
- print("template name:", template_name)
- due_date = get_due_date_from_template(template_name, posting_date).strftime("%Y-%m-%d")
+ if template_name:
+ due_date = get_due_date_from_template(template_name, posting_date).strftime("%Y-%m-%d")
return due_date