allow to view stock orders too
This commit is contained in:
parent
5aef8e445e
commit
5e7925366d
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ module OrdersHelper
|
||||||
# soft_uq: `true` to hide unit quantity specifier on small screens
|
# soft_uq: `true` to hide unit quantity specifier on small screens
|
||||||
# sensible in tables with multiple columns calling `pkg_helper`
|
# sensible in tables with multiple columns calling `pkg_helper`
|
||||||
def pkg_helper(article, options={})
|
def pkg_helper(article, options={})
|
||||||
return nil if article.unit_quantity == 1
|
return nil if not article or article.unit_quantity == 1
|
||||||
uq_text = "× #{article.unit_quantity}".html_safe
|
uq_text = "× #{article.unit_quantity}".html_safe
|
||||||
uq_text = content_tag(:span, uq_text, class: 'hidden-phone') if options[:soft_uq]
|
uq_text = content_tag(:span, uq_text, class: 'hidden-phone') if options[:soft_uq]
|
||||||
if options[:icon].nil? or options[:icon]
|
if options[:icon].nil? or options[:icon]
|
||||||
|
|
Loading…
Reference in a new issue