diff --git a/app/views/finance/balancing/new.html.haml b/app/views/finance/balancing/new.html.haml
index 7384f50a..b8f08129 100644
--- a/app/views/finance/balancing/new.html.haml
+++ b/app/views/finance/balancing/new.html.haml
@@ -12,7 +12,7 @@
.well.well-small
%h3= t('.notes_and_journal')
#note
- - unless @order.note.empty?
+ - unless @order.note.blank?
= simple_format @order.note
- else
%p= t('.comment_on_transaction')
diff --git a/spec/integration/balancing_spec.rb b/spec/integration/balancing_spec.rb
new file mode 100644
index 00000000..75133131
--- /dev/null
+++ b/spec/integration/balancing_spec.rb
@@ -0,0 +1,55 @@
+require 'spec_helper'
+
+describe 'settling an order', :type => :feature do
+ let(:admin) { FactoryGirl.create :user, groups:[FactoryGirl.create(:workgroup, role_finance: true)] }
+ let(:supplier) { FactoryGirl.create :supplier }
+ let(:article) { FactoryGirl.create :article, supplier: supplier, unit_quantity: 1 }
+ let(:order) { FactoryGirl.create :order, supplier: supplier, article_ids: [article.id] } # need to ref article
+ let(:go1) { FactoryGirl.create :group_order, order: order }
+ let(:go2) { FactoryGirl.create :group_order, order: order }
+ let(:oa) { order.order_articles.find_by_article_id(article.id) }
+ let(:goa1) { FactoryGirl.create :group_order_article, group_order: go1, order_article: oa }
+ let(:goa2) { FactoryGirl.create :group_order_article, group_order: go2, order_article: oa }
+ before do
+ goa1.update_quantities(3, 0)
+ goa2.update_quantities(1, 0)
+ oa.update_results!
+ order.finish!(admin)
+ goa1.reload
+ goa2.reload
+ end
+
+ it 'has correct order result' do
+ expect(oa.quantity).to eq(4)
+ expect(oa.tolerance).to eq(0)
+ expect(goa1.result).to eq(3)
+ expect(goa2.result).to eq(1)
+ end
+
+ describe :type => :feature, :js => true do
+ before { login admin }
+ before { visit new_finance_order_path(order_id: order.id) }
+
+ it 'has product ordered visible' do
+ expect(page).to have_content(article.name)
+ expect(page).to have_selector("#order_article_#{oa.id}")
+ end
+
+ it 'shows order result' do
+ click_link article.name
+ expect(page).to have_selector("#group_order_articles_#{oa.id}")
+ within("#group_order_articles_#{oa.id}") do
+ # make sure these ordergroup names are in the list for this product
+ expect(page).to have_content(go1.ordergroup.name)
+ expect(page).to have_content(go2.ordergroup.name)
+ # and that their order results match what we expect
+ expect(page).to have_selector("#group_order_article_#{goa1.id}_quantity")
+ expect(find("#group_order_article_#{goa1.id}_quantity").text.to_f).to eq(3)
+ expect(page).to have_selector("#group_order_article_#{goa2.id}_quantity")
+ expect(find("#group_order_article_#{goa2.id}_quantity").text.to_f).to eq(1)
+ end
+ end
+
+ end
+
+end