fix: add missing arg while invoking _download_multi_pdf

(cherry picked from commit f82ed9fe11831d78e612ccd5db189f61439f1026)
This commit is contained in:
Akash 2024-03-25 18:10:41 +05:30 committed by Mergify
parent 7c126f0555
commit aba2b7808f

View file

@ -33,7 +33,7 @@ def download_multi_pdf(
"""
Calls _download_multi_pdf with the given parameters and returns the response
"""
return _download_multi_pdf(doctype, name, format, no_letterhead, options)
return _download_multi_pdf(doctype, name, format, no_letterhead, letterhead, options)
@frappe.whitelist()