mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-13 01:34:10 +00:00
Updated Standard With Columns Print Format (markdown)
@@ -8,8 +8,15 @@ Name: { DocType } - Standard With Columns
|
||||
|
||||
##### HTML
|
||||
```
|
||||
{% if doc.fname and doc.table_print_templates and doc.table_print_templates.get(doc.fname) -%}
|
||||
{% if doc.set("table_print_templates", {"other_charges": doc.table_print_templates.get("other_charges")}) %}{% endif %}
|
||||
{% if doc.items -%}
|
||||
{% for d in doc.items %}
|
||||
{% if d.get("print_templates") -%}
|
||||
{% if "description" in d.get("print_templates") and d.get("print_templates").pop("description") %}{% endif %}
|
||||
{% if "item_code" in d.get("hide_in_print_layout", []) and d.get("hide_in_print_layout").remove("item_code") %}{% endif %}
|
||||
{% if "item_name" in d.get("hide_in_print_layout", []) and d.get("hide_in_print_layout").remove("item_name") %}{% endif %}
|
||||
{% if "image" in d.get("hide_in_print_layout", []) and d.get("hide_in_print_layout").remove("image") %}{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{%- endif %}
|
||||
{% include "templates/print_formats/standard.html" %}
|
||||
```
|
||||
Reference in New Issue
Block a user