浏览代码

[Fix] Letter head not displaying proper in the pdf (#4251)

version-14
rohitwaghchaure 7 年前
committed by Nabin Hait
父节点
当前提交
192fae169c
共有 1 个文件被更改,包括 6 次插入3 次删除
  1. +6
    -3
      frappe/utils/pdf.py

+ 6
- 3
frappe/utils/pdf.py 查看文件

@@ -64,9 +64,7 @@ def prepare_options(html, options):

# defaults
'margin-right': '15mm',
'margin-left': '15mm',
'margin-top': '15mm',
'margin-bottom': '15mm',
'margin-left': '15mm'
})

html, html_options = read_options_from_html(html)
@@ -135,6 +133,11 @@ def prepare_header_footer(soup):

# {"header-html": "/tmp/frappe-pdf-random.html"}
options[html_id] = fname
else:
if html_id == "header-html":
options["margin-top"] = "15mm"
elif html_id == "footer-html":
options["margin-bottom"] = "15mm"

return options



正在加载...
取消
保存