print format standard - start
This commit is contained in:
parent
43fbc9d1b9
commit
fd18fc7986
@ -1,35 +0,0 @@
|
|||||||
# Copyright (c) 2012 Web Notes Technologies Pvt Ltd.
|
|
||||||
# License: GNU General Public License (v3). For more information see license.txt
|
|
||||||
|
|
||||||
from __future__ import unicode_literals
|
|
||||||
import webnotes
|
|
||||||
from webnotes import _
|
|
||||||
|
|
||||||
def get_args():
|
|
||||||
if not webnotes.form_dict.doctype or not webnotes.form_dict.name \
|
|
||||||
or not webnotes.form_dict.format:
|
|
||||||
return {
|
|
||||||
"body": """<h1>Error</h1>
|
|
||||||
<p>Parameters doctype, name and format required</p>
|
|
||||||
<pre>%s</pre>""" % repr(webnotes.form_dict)
|
|
||||||
}
|
|
||||||
|
|
||||||
obj = webnotes.get_obj(webnotes.form_dict.doctype, webnotes.form_dict.name)
|
|
||||||
return {
|
|
||||||
"body": get_html(obj.doc, obj.doclist)
|
|
||||||
}
|
|
||||||
|
|
||||||
def get_html(doc, doclist):
|
|
||||||
from jinja2 import Environment
|
|
||||||
from core.doctype.print_style.print_style import get_print_style
|
|
||||||
from core.doctype.print_format.print_format import get_print_format
|
|
||||||
|
|
||||||
template = Environment().from_string(get_print_format(webnotes.form_dict.format))
|
|
||||||
|
|
||||||
args = {
|
|
||||||
"doc": doc,
|
|
||||||
"doclist": doclist,
|
|
||||||
"print_style": get_print_style()
|
|
||||||
}
|
|
||||||
html = template.render(args)
|
|
||||||
return html
|
|
@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>{{ doc and (doc.name + " - " + doc.doctype) or "Error" }}</title>
|
<title>Print Format</title>
|
||||||
<meta name="generator" content="wnframework">
|
<meta name="generator" content="wnframework">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -44,7 +44,7 @@ page_settings_map = {
|
|||||||
"contact": "Contact Us Settings",
|
"contact": "Contact Us Settings",
|
||||||
"blog": "website.helpers.blog.get_blog_template_args",
|
"blog": "website.helpers.blog.get_blog_template_args",
|
||||||
"writers": "website.helpers.blog.get_writers_args",
|
"writers": "website.helpers.blog.get_writers_args",
|
||||||
"print": "website.helpers.print.get_args"
|
"print": "core.doctype.print_format.print_format.get_args"
|
||||||
}
|
}
|
||||||
|
|
||||||
no_cache = ["message", "print"]
|
no_cache = ["message", "print"]
|
||||||
|
Loading…
Reference in New Issue
Block a user