foodsoft/app/views/stock_takings/new.html.haml

32 lines
937 B
Plaintext
Raw Normal View History

2013-02-13 01:18:50 +01:00
- title t('.title')
- content_for :javascript do
:javascript
$(function() {
enablePriceTooltips();
});
function enablePriceTooltips(context) {
$('[data-toggle~="tooltip"]', context).tooltip({
animation: false,
html: true,
placement: 'left'
});
}
2012-10-29 18:28:17 +01:00
- content_for :sidebar do
%p
2013-02-13 01:18:50 +01:00
%i= t('.text_deviations', inv_link: link_to(t('.temp_inventory'), stock_articles_path)).html_safe
%p= t('.text_need_articles', create_link: link_to(t('.create'), new_stock_article_path)).html_safe
2012-10-29 18:28:17 +01:00
= simple_form_for(@stock_taking) do |f|
= f.input :date, as: :date_picker
= f.input :note, :input_html => {:size => "28x7", :value => "#{@current_user.nick}: ..."}
2013-02-13 01:18:50 +01:00
%h2= t '.stock_articles'
2012-10-29 18:28:17 +01:00
#stock_changes
= render :partial => 'stock_change', :collection => @stock_taking.stock_changes
.form-actions
= f.submit class: 'btn'
2013-09-10 10:27:13 +02:00
= link_to t('ui.or_cancel'), stock_takings_path