mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-31 18:59:08 +00:00
fix: join multiple emails
This commit is contained in:
@@ -90,7 +90,7 @@ def get_detail_row(ref_doc, payment_entry, company_email):
|
|||||||
}, 'parent')
|
}, 'parent')
|
||||||
|
|
||||||
supplier_billing_address = frappe.get_cached_doc('Address', addr_link)
|
supplier_billing_address = frappe.get_cached_doc('Address', addr_link)
|
||||||
email = ', '.join(filter(None, [supplier_billing_address.email_id, company_email]))
|
email = ','.join(filter(None, [supplier_billing_address.email_id, company_email]))
|
||||||
|
|
||||||
detail = OrderedDict(
|
detail = OrderedDict(
|
||||||
record_identifier='D',
|
record_identifier='D',
|
||||||
|
|||||||
Reference in New Issue
Block a user