foodsoft/app/views/deliveries/_form.html.haml

139 lines
5.2 KiB
Plaintext
Raw Normal View History

2012-10-17 20:45:52 +02:00
- content_for :javascript do
:javascript
$(function() {
$('#stock_changes').on('touchclick', '.destroy_stock_change', function() {
$(this).prev('input').val('1'); // check for destruction
2016-08-12 15:54:28 +02:00
var stock_change = $(this).closest('tr');
stock_change.hide(); // do not remove (to ensure destruction)
stock_change.removeAttr('id'); // remove id to allow re-adding
mark_article_for_delivery( stock_change.data('id') );
return false;
});
$('#stock_changes').on('touchclick', '.remove_new_stock_change', function() {
var stock_change = $(this).closest('tr');
stock_change.remove();
mark_article_for_delivery( stock_change.data('id') );
return false;
})
2016-08-12 15:54:28 +02:00
2013-06-26 15:16:52 +02:00
$('#new_stock_article').removeAttr('disabled').select2({
2016-08-12 15:54:28 +02:00
tags: true,
2013-06-26 15:16:52 +02:00
placeholder: '#{t '.create_stock_article'}',
data: #{raw articles_for_select2(@supplier.articles.undeleted).to_json},
2016-08-12 15:54:28 +02:00
createTag: function(data) {
2013-06-26 15:16:52 +02:00
return {
id: 'new',
2016-08-12 15:54:28 +02:00
name: data.term, // store for ajax request
text: data.term + ' (#{t '.create_from_blank'})'
2013-06-26 15:16:52 +02:00
};
}
2016-08-12 15:54:28 +02:00
}).on('select2:select', function(e) {
var selectedArticle = e.params.data;
if (!selectedArticle) {
2013-06-26 15:16:52 +02:00
return false;
}
if('new' == selectedArticle.id) {
$.ajax({
url: '#{new_stock_article_path}',
type: 'get',
2016-08-12 15:54:28 +02:00
data: {stock_article: {name: selectedArticle.name, supplier_id: #{@supplier.id}}},
contentType: 'application/json; charset=UTF-8'
});
2016-08-12 15:54:28 +02:00
$('#new_stock_article').val('').trigger('change');
2013-06-26 15:16:52 +02:00
return true;
}
if('' != selectedArticle.id) {
$.ajax({
url: '#{derive_stock_articles_path}',
2013-06-26 15:16:52 +02:00
type: 'get',
data: {old_article_id: selectedArticle.id},
contentType: 'application/json; charset=UTF-8'
});
2016-08-12 15:54:28 +02:00
$('#new_stock_article').val('').trigger('change');
2013-06-26 15:16:52 +02:00
return true;
}
});
2016-08-12 15:54:28 +02:00
// Subscribe to database changes.
// See publish/subscribe design pattern in /doc.
$(document).on('StockArticle#create', function(e) {
$.ajax({
url: '#{form_on_stock_article_create_supplier_deliveries_path(@supplier)}',
type: 'get',
data: {id: e.stock_article_id},
contentType: 'application/json; charset=UTF-8'
});
});
2016-08-12 15:54:28 +02:00
$(document).on('StockArticle#update', function(e) {
$.ajax({
url: '#{form_on_stock_article_update_supplier_deliveries_path(@supplier)}',
type: 'get',
data: {id: e.stock_article_id},
contentType: 'application/json; charset=UTF-8'
});
});
});
2016-08-12 15:54:28 +02:00
function mark_article_for_delivery(stock_article_id) {
var articleTr = $('#stock_article_' + stock_article_id);
if( is_article_available_for_delivery(stock_article_id) ) {
articleTr.removeClass('unavailable');
$('.button-add-stock-change', articleTr).removeAttr('disabled');
}
else {
articleTr.addClass('unavailable');
$('.button-add-stock-change', articleTr).attr('disabled', 'disabled');
}
}
function is_article_available_for_delivery(stock_article_id) {
return ( 0 == $('#stock_change_stock_article_' + stock_article_id).length );
}
2013-06-26 15:16:52 +02:00
= simple_form_for [@supplier, @delivery], validate: true do |f|
= f.error_notification
= base_errors f.object
= f.association :supplier, :as => :hidden
2016-08-12 15:54:28 +02:00
2013-06-26 15:16:52 +02:00
%h2= t '.title_select_stock_articles'
%table#stock_articles_for_adding.table.table-hover.stupidtable
2013-06-26 15:16:52 +02:00
%thead
%tr
2013-12-12 00:13:19 +01:00
%th.default-sort{:data => {:sort => 'string'}}= Article.model_name.human
%th= heading_helper StockArticle, :price
%th= heading_helper StockArticle, :unit
%th= heading_helper StockArticle, :article_category
%th= t 'ui.actions'
%tfoot
%tr
%th{:colspan => 5}
2013-12-18 17:34:45 +01:00
- if @supplier.articles.empty?
= link_to t('.create_stock_article'), new_stock_article_path, :remote => true, :class => 'btn'
- else
2016-08-12 15:54:28 +02:00
%select#new_stock_article{:style => 'width: 500px;'}
2013-06-26 15:16:52 +02:00
%tbody
2013-12-18 17:34:45 +01:00
- for article in articles_for_table(@supplier.stock_articles)
2013-06-26 15:16:52 +02:00
= render :partial => 'stock_article_for_adding', :locals => {:article => article}
2016-08-12 15:54:28 +02:00
2013-06-26 15:16:52 +02:00
%h2= t '.title_fill_quantities'
%table.table#stock_changes.stupidtable
2013-06-26 15:16:52 +02:00
%thead
%tr
2013-12-14 13:34:58 +01:00
%th.default-sort{:data => {:sort => 'string'}}= Article.model_name.human
2013-12-12 00:13:19 +01:00
%th= heading_helper StockArticle, :price
%th= heading_helper StockArticle, :unit
2013-12-14 13:34:58 +01:00
%th= heading_helper GroupOrderArticle, :quantity # quantity to order, although technically this will be a StockChange
2013-12-12 00:13:19 +01:00
%th= t 'ui.actions'
2013-06-26 15:16:52 +02:00
%tbody
= f.simple_fields_for :stock_changes do |stock_change_form|
= render :partial => 'stock_change_fields', :locals => {:f => stock_change_form}
2016-08-12 15:54:28 +02:00
2013-06-26 15:16:52 +02:00
%h2= t '.title_finish_delivery'
= f.input :date, as: :date_picker
2013-06-26 15:16:52 +02:00
= f.input :note, input_html: {size: '35x4'}
.form-actions
= f.submit class: 'btn btn-primary'
= link_to t('ui.or_cancel'), supplier_deliveries_path(@supplier)