選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

16 行
443 B

  1. # Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors
  2. # MIT License. See license.txt
  3. import frappe
  4. from frappe.utils.weasyprint import get_html
  5. no_cache = 1
  6. def get_context(context):
  7. doctype = frappe.form_dict.doctype
  8. name = frappe.form_dict.name
  9. print_format = frappe.form_dict.print_format
  10. letterhead = frappe.form_dict.letterhead
  11. context.no_cache = 1
  12. context.html = get_html(doctype, name, print_format, letterhead)