mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-31 10:49:09 +00:00
feat: Option to print UOM after quantity
Standard for ERPNext prints was UOM before quantity. Now user has a choice.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
{{ doc.get_formatted("qty", doc) }}
|
||||
{% if (doc.uom and not doc.is_print_hide("uom")) %}{{ _(doc.uom) }}
|
||||
{% elif (doc.stock_uom and not doc.is_print_hide("stock_uom")) %}{{ _(doc.stock_uom) }}
|
||||
{%- endif %}
|
||||
|
||||
Reference in New Issue
Block a user