Correction of issue #8354

This commit is contained in:
CH 2017-04-06 20:03:36 +02:00 committed by Nabin Hait
parent d20ec25c92
commit 8e92250798
2 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@
</span>
</span>
</span>
<span class="inline-graph-half" title="{{ __("Acutal Qty {0} / Waiting Qty {1}", [d.actual_qty, d.pending_qty]) }}">
<span class="inline-graph-half" title="{{ __("Actual Qty {0} / Waiting Qty {1}", [d.actual_qty, d.pending_qty]) }}">
<span class="inline-graph-count">
{{ d.actual_qty }} {{ (d.pending_qty > 0) ? ("(" + d.pending_qty+ ")") : "" }}
</span>
@ -54,4 +54,4 @@
</div>
</div>
</div>
{% endfor %}
{% endfor %}

View File

@ -48,7 +48,7 @@ frappe.pages['stock-balance'].on_page_load = function(wrapper) {
{fieldname: 'projected_qty', label: __('Projected qty')},
{fieldname: 'reserved_qty', label: __('Reserved for sale')},
{fieldname: 'reserved_qty_for_production', label: __('Reserved for manufacturing')},
{fieldname: 'actual_qty', label: __('Acutal qty in stock')},
{fieldname: 'actual_qty', label: __('Actual qty in stock')},
]
},
change: function(sort_by, sort_order) {
@ -93,4 +93,4 @@ frappe.pages['stock-balance'].on_page_load = function(wrapper) {
});
}
}