[print] item qty & uom on same line
diff --git a/erpnext/templates/print_formats/includes/item_table_qty.html b/erpnext/templates/print_formats/includes/item_table_qty.html
index 4ce3c33..4530e26 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) }}<br>
-<small>{{ doc.uom or doc.stock_uom }}</small>
+<small class="pull-left">{{ doc.uom or doc.stock_uom }}</small>
+{{ doc.get_formatted("qty", doc) }}