foodsoft/app/views/articles/sync.html.haml

73 lines
3.3 KiB
Plaintext
Raw Normal View History

2013-03-17 17:47:37 +01:00
- title 'Artikel mit externer Datenbank synchronisieren'
2009-01-06 11:49:19 +01:00
= form_tag update_synchronized_supplier_articles_path(@supplier) do
2013-03-22 00:20:30 +01:00
%h2= t '.outlist.title'
2009-01-06 11:49:19 +01:00
%p
- unless @outlisted_articles.empty?
2013-03-22 00:20:30 +01:00
= t('.outlist.body').html_safe
2009-01-06 11:49:19 +01:00
%ul
- for article in @outlisted_articles
%li
= hidden_field_tag "outlisted_articles[#{article.id}]", '1'
= article.name
- if article.in_open_order
.alert
Achtung, #{article.name} wird gerade in einer laufenden Bestellung verwendet. Bitte erst Bestellung anpassen.
2009-01-06 11:49:19 +01:00
- else
2013-03-22 00:20:30 +01:00
%i= t '.outlist.body_skip'
2009-01-06 11:49:19 +01:00
%hr/
2013-03-22 00:20:30 +01:00
%h2= t '.update.title'
2009-01-06 11:49:19 +01:00
%p
%i
%b= @updated_articles.size
2013-03-22 00:20:30 +01:00
= t '.update.update_msg'
= t('.update.body').html_safe
2013-03-17 17:47:37 +01:00
%table.table
%thead
2009-01-06 11:49:19 +01:00
%tr
2013-03-22 00:20:30 +01:00
%th= t 'simple_form.labels.article.name'
%th= t 'simple_form.labels.article.note'
%th= t 'simple_form.labels.article.manufacturer'
%th= t 'simple_form.labels.article.origin'
%th= t 'simple_form.labels.article.unit'
%th= t '.unit_quantity_short'
%th= t '.price_short'
%th= t 'simple_form.labels.defaults.tax'
%th= t 'simple_form.labels.defaults.deposit'
%th= t 'simple_form.labels.article.article_category'
2013-03-17 17:47:37 +01:00
%tbody
- @updated_articles.each do |updated_article, attrs|
- article = Article.find(updated_article.id)
%tr{:style => 'color:grey'}
%td= article.name
%td= article.note
%td= article.manufacturer
%td= article.origin
%td= article.unit
%td= article.unit_quantity
%td= article.price
%td= article.tax
%td= article.deposit
%td= article.article_category.name if article.article_category
%tr
= fields_for 'articles[]', updated_article do |form|
%td{:style => highlight_new(attrs, :name)}
= form.text_field 'name', :size => 0
= form.hidden_field 'shared_updated_on'
%td{:style => highlight_new(attrs, :note)}= form.text_field 'note', class: 'input-small'
%td{:style => highlight_new(attrs, :manufacturer)}= form.text_field 'manufacturer', class: 'input-small'
%td{:style => highlight_new(attrs, :origin)}= form.text_field 'origin', class: 'input-mini'
%td{:style => highlight_new(attrs, :unit)}= form.text_field 'unit', class: 'input-mini'
%td{:style => highlight_new(attrs, :unit_quantity)}= form.text_field 'unit_quantity', class: 'input-mini'
%td{:style => highlight_new(attrs, :price)}= form.text_field 'price', class: 'input-mini'
2013-06-10 11:01:31 +02:00
%td{:style => highlight_new(attrs, :tax), class: 'input-append'}
2013-06-06 17:58:02 +02:00
= form.text_field 'tax', class: 'input-mini'
%span.add-on %
2013-03-17 17:47:37 +01:00
%td{:style => highlight_new(attrs, :deposit)}= form.text_field 'deposit', class: 'input-mini'
%td= form.select :article_category_id, ArticleCategory.all.map {|a| [ a.name, a.id ] },
{include_blank: true}, class: 'input-small'
2009-01-06 11:49:19 +01:00
%hr/
= hidden_field 'supplier', 'id'
2013-03-22 00:20:30 +01:00
= submit_tag t('.submit'), class: 'btn btn-primary'
= link_to t('ui.or_cancel'), supplier_articles_path(@supplier)