21 lines
828 B
Text
21 lines
828 B
Text
= simple_form_for stock_article, remote: true, :validate => true do |f|
|
|
.modal-header
|
|
= link_to t('ui.marks.close').html_safe, '#', class: 'close', data: {dismiss: 'modal'}
|
|
%h3= title
|
|
.modal-body
|
|
= f.association :supplier
|
|
= f.input :name
|
|
= f.input :unit
|
|
= f.input :note
|
|
- if stock_article.new_record?
|
|
= f.input :price
|
|
= f.input :tax, :wrapper => :append do
|
|
= f.input_field :tax
|
|
%span.add-on %
|
|
= f.input :deposit
|
|
- else
|
|
= f.input :price, :input_html => {:disabled => 'disabled'}, :hint => stock_article_price_hint(stock_article).html_safe
|
|
= f.association :article_category
|
|
.modal-footer
|
|
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
|
|
= f.submit :class => 'btn btn-primary', 'data-disable-with' => t('ui.please_wait')
|