32 lines
1.3 KiB
Text
32 lines
1.3 KiB
Text
- if @articles.empty?
|
|
%p= t '.not_found'
|
|
- else
|
|
= pagination_links_remote @articles, :params => {:search => search_params}
|
|
%table.table.table-striped
|
|
%thead
|
|
%tr
|
|
%th= t 'simple_form.labels.article.name'
|
|
%th= t 'simple_form.labels.article.origin'
|
|
%th= t 'simple_form.labels.article.manufacturer'
|
|
%th= t 'simple_form.labels.article.note'
|
|
%th{:style => "width:4em"}= t 'simple_form.labels.defaults.price'
|
|
%th= t 'simple_form.labels.article.unit'
|
|
%th= t 'simple_form.labels.defaults.unit_quantity'
|
|
%th
|
|
%tbody
|
|
- for article in @articles
|
|
%tr
|
|
%td= highlight article.name, params[:search][:name_contains_all]
|
|
%td= article.origin
|
|
%td= article.manufacturer
|
|
%td= article.note
|
|
%td= number_to_currency(article.price)
|
|
%td= article.unit
|
|
%td= article.unit_quantity
|
|
%td
|
|
- logger.debug "[debug] #{article.attributes.inspect}"
|
|
- if @supplier.articles.undeleted.where(order_number: article.number).exists?
|
|
%i.icon-ok= t '.already_imported'
|
|
- else
|
|
= link_to t('.action_import'), import_supplier_articles_path(@supplier, :shared_article_id => article.id),
|
|
:remote => true, class: 'btn btn-small btn-success'
|