commit | 31724da2d6ebc271e6a46cd626de3156de30de34 | [log] [tgz] |
---|---|---|
author | Rushabh Mehta <rmehta@gmail.com> | Wed Mar 04 15:50:44 2015 +0530 |
committer | Rushabh Mehta <rmehta@gmail.com> | Wed Mar 04 15:51:08 2015 +0530 |
tree | f1a52b4c18aeb09f7daed6ec8b46cfac6c71a136 | |
parent | 25bd84dfccc54a6cde66d44c72d4ec262be78516 [diff] |
[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) }}