2015-03-03 09:25:30 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2015-02-04 11:32:24 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
def print_settings_for_item_table(doc):
|
|
|
|
doc.print_templates = {
|
|
|
|
"description": "templates/print_formats/includes/item_table_description.html",
|
|
|
|
"qty": "templates/print_formats/includes/item_table_qty.html"
|
|
|
|
}
|
|
|
|
doc.hide_in_print_layout = ["item_code", "item_name", "image", "uom", "stock_uom"]
|