mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-24 07:29:22 +00:00
minor fixes
This commit is contained in:
@@ -1,34 +0,0 @@
|
||||
{% var visible_columns = row.get_visible_columns(["operation",
|
||||
"opn_description", "status", "qty_completed", "workstation"]);
|
||||
%}
|
||||
|
||||
{% if(!doc) { %}
|
||||
<div class="row">
|
||||
<div class="col-sm-7">{%= __("Operation") %}</div>
|
||||
<div class="col-sm-2 text-right">{%= __("Workstation") %}</div>
|
||||
<div class="col-sm-3 text-right">{%= __("Completed Qty") %}</div>
|
||||
</div>
|
||||
{% } else { %}
|
||||
<div class="row">
|
||||
<div class="col-sm-7">
|
||||
<strong>{%= doc.operation %}</strong>
|
||||
<span class="label label-primary">
|
||||
{%= doc.status %}
|
||||
</span>
|
||||
{% include "templates/form_grid/includes/visible_cols.html" %}
|
||||
<div>
|
||||
{%= doc.get_formatted("opn_description") %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- workstation -->
|
||||
<div class="col-sm-2 text-right">
|
||||
{%= doc.get_formatted("workstation") %}
|
||||
</div>
|
||||
|
||||
<!-- qty -->
|
||||
<div class="col-sm-3 text-right">
|
||||
{%= doc.get_formatted("qty_completed") %}
|
||||
</div>
|
||||
</div>
|
||||
{% } %}
|
||||
Reference in New Issue
Block a user