From 31724da2d6ebc271e6a46cd626de3156de30de34 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 4 Mar 2015 15:50:44 +0530 Subject: [PATCH] [print] item qty & uom on same line --- erpnext/templates/print_formats/includes/item_table_qty.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/templates/print_formats/includes/item_table_qty.html b/erpnext/templates/print_formats/includes/item_table_qty.html index 4ce3c3333b..4530e261b6 100644 --- a/erpnext/templates/print_formats/includes/item_table_qty.html +++ b/erpnext/templates/print_formats/includes/item_table_qty.html @@ -1,2 +1,2 @@ -{{ doc.get_formatted("qty", doc) }}
-{{ doc.uom or doc.stock_uom }} +{{ doc.uom or doc.stock_uom }} +{{ doc.get_formatted("qty", doc) }}