Skip to content

Commit

Permalink
Add label for EAN field
Browse files Browse the repository at this point in the history
  • Loading branch information
steveblamey committed Apr 8, 2018
1 parent d4ca89c commit 170e4a5
Showing 1 changed file with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{**
* (c) 2017 uzERP LLP (support#uzerp.com). All rights reserved.
*
* Released under GPLv3 license; see LICENSE.
{**
* (c) 2017 uzERP LLP (support#uzerp.com). All rights reserved.
*
* Released under GPLv3 license; see LICENSE.
**}
{* $Revision: 1.12 $ *}
{content_wrapper class="clearfix uz-grid" }
Expand All @@ -23,18 +23,22 @@
{/if}
{view_data attribute="status"}
{if $model->status==$model->newStatus()}
{if isset($display_fields.product_search)}
{if isset($display_fields.product_search) && $action != 'edit'}
<input type='hidden' id=prod_search_limit name=limit value={$config.AUTOCOMPLETE_SELECT_LIMIT}>
{else}
<input type='hidden' id=prod_search_limit name=limit value=0>
{/if}
{* The following is a hack to prevent date picker showing on dialog open *}
<span class="ui-helper-hidden-accessible"><input type="text"/></span>
{input type='date' attribute="due_delivery_date"}
{if isset($display_fields.product_search)}
{if isset($display_fields.product_search) && $action != 'edit'}
{input type='text' attribute="product_search" value=$product_search}
{/if}
{select attribute="productline_id" label='product' options=$productline_options nonone=true}
{if $action != 'edit'}
{select attribute="productline_id" label='product' options=$productline_options nonone=true}
{else}
{view_data attribute="productline_id" label='product'}
{/if}
{input type="text" attribute="description" }
{input type="text" attribute="revised_qty" label="Quantity" class="order_qty numeric" }
{if $model->id!=''}
Expand Down

0 comments on commit 170e4a5

Please sign in to comment.