fb2b4d8a8a
chore: fix api test conventions chore: rubocop -A spec/ chore: more rubocop -A fix failing test rubocop fixes removes helper methods that are in my opinion dead code more rubocop fixes rubocop -a --auto-gen-config
13 lines
560 B
Ruby
13 lines
560 B
Ruby
module GroupOrderArticlesHelper
|
|
# return an edit field for a GroupOrderArticle result
|
|
def group_order_article_edit_result(goa)
|
|
result = number_with_precision goa.result, strip_insignificant_zeros: true
|
|
if goa.group_order.order.finished? && current_user.role_finance?
|
|
simple_form_for goa, remote: true, html: { 'data-submit-onchange' => 'changed', class: 'delta-input' } do |f|
|
|
f.input_field :result, as: :delta, class: 'input-nano', data: { min: 0 }, id: "r_#{goa.id}", value: result
|
|
end
|
|
else
|
|
result
|
|
end
|
|
end
|
|
end
|