2012-10-17 20:45:52 +02:00
|
|
|
- content_for :javascript do
|
2011-05-27 14:09:01 +02:00
|
|
|
:javascript
|
|
|
|
$(function() {
|
|
|
|
$('.destroy_stock_change').live('click', function() {
|
|
|
|
$(this).prev('input').val('1').parent().hide();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.remove_new_stock_change').live('click', function() {
|
|
|
|
$(this).parent().remove();
|
|
|
|
return false;
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
2013-01-26 15:57:29 +01:00
|
|
|
= simple_form_for [@supplier, @delivery], validate: true do |f|
|
|
|
|
= f.hidden_field :supplier_id
|
|
|
|
#stock_changes
|
|
|
|
= f.fields_for :stock_changes do |stock_change_form|
|
2009-05-17 16:11:39 +02:00
|
|
|
%p
|
2013-01-26 15:57:29 +01:00
|
|
|
= stock_change_form.select :stock_article_id, stock_articles_for_select(@supplier)
|
|
|
|
Menge
|
|
|
|
= stock_change_form.text_field :quantity, size: 5, autocomplete: 'off'
|
|
|
|
= stock_change_form.hidden_field :_destroy
|
2013-04-10 17:02:16 +02:00
|
|
|
= link_to t('.remove_article'), "#", class: 'destroy_stock_change'
|
2013-01-26 15:57:29 +01:00
|
|
|
%p
|
2013-04-10 17:02:16 +02:00
|
|
|
= link_to t('.add_article'), {action: 'add_stock_change', supplier_id: @supplier.id}, remote: true
|
2013-01-26 15:57:29 +01:00
|
|
|
%p
|
2013-04-10 17:02:16 +02:00
|
|
|
%small= t('.note_new_article', new_link: link_to(t('.note_new_article_link'), new_stock_article_path)).html_safe
|
2013-01-26 15:57:29 +01:00
|
|
|
%hr/
|
|
|
|
= f.input :delivered_on, as: :date_picker
|
|
|
|
= f.input :note, input_html: {size: '35x4'}
|
|
|
|
.form-actions
|
|
|
|
= f.submit class: 'btn btn-primary'
|
2013-04-10 17:02:16 +02:00
|
|
|
= link_to t('ui.or_cancel'), supplier_deliveries_path(@supplier)
|
2009-05-17 16:11:39 +02:00
|
|
|
|
2013-01-26 15:57:29 +01:00
|
|
|
/
|
|
|
|
TODO: Fix this!!
|
2012-10-17 20:45:52 +02:00
|
|
|
.span6
|
2013-04-10 17:02:16 +02:00
|
|
|
%h2= t '.new_article.title'
|
2009-05-17 16:11:39 +02:00
|
|
|
%p
|
2013-04-10 17:02:16 +02:00
|
|
|
= t('.new_article.search', supplier: @supplier.name).html_safe + ': '
|
2011-05-27 14:09:01 +02:00
|
|
|
= text_field_tag 'article_name'
|
2009-05-17 16:11:39 +02:00
|
|
|
%hr/
|
|
|
|
#stock_article_form
|
2012-10-17 20:45:52 +02:00
|
|
|
= render 'stock_article_form', stock_article: @supplier.stock_articles.build
|