43 lines
1.4 KiB
Python
43 lines
1.4 KiB
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
import frappe
|
|
from frappe.utils import cint
|
|
|
|
def set_print_templates_for_item_table(doc, settings):
|
|
doc.print_templates = {
|
|
"items": "templates/print_formats/includes/items.html",
|
|
}
|
|
|
|
doc.child_print_templates = {
|
|
"items": {
|
|
"qty": "templates/print_formats/includes/item_table_qty.html",
|
|
}
|
|
}
|
|
|
|
if doc.meta.get_field("items"):
|
|
doc.meta.get_field("items").hide_in_print_layout = ["uom", "stock_uom"]
|
|
|
|
doc.flags.compact_item_fields = ["description", "qty", "rate", "amount"]
|
|
|
|
if settings.compact_item_print:
|
|
doc.child_print_templates["items"]["description"] =\
|
|
"templates/print_formats/includes/item_table_description.html"
|
|
doc.flags.format_columns = format_columns
|
|
|
|
def set_print_templates_for_taxes(doc, settings):
|
|
doc.flags.show_inclusive_tax_in_print = doc.is_inclusive_tax()
|
|
doc.print_templates.update({
|
|
"total": "templates/print_formats/includes/total.html",
|
|
"taxes": "templates/print_formats/includes/taxes.html"
|
|
})
|
|
|
|
def format_columns(display_columns, compact_fields):
|
|
compact_fields = compact_fields + ["image", "item_code", "item_name"]
|
|
final_columns = []
|
|
for column in display_columns:
|
|
if column not in compact_fields:
|
|
final_columns.append(column)
|
|
return final_columns
|