Updated Standard With Columns Print Format (markdown)

Anand Doshi
2016-01-08 15:58:38 +05:30
parent fb83bf78e1
commit 24d38bb4e8

@@ -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" %}
```