add balancing integration spec
This commit is contained in:
parent
eac8260b38
commit
37e5b0c25c
2 changed files with 56 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
||||||
.well.well-small
|
.well.well-small
|
||||||
%h3= t('.notes_and_journal')
|
%h3= t('.notes_and_journal')
|
||||||
#note
|
#note
|
||||||
- unless @order.note.empty?
|
- unless @order.note.blank?
|
||||||
= simple_format @order.note
|
= simple_format @order.note
|
||||||
- else
|
- else
|
||||||
%p= t('.comment_on_transaction')
|
%p= t('.comment_on_transaction')
|
||||||
|
|
55
spec/integration/balancing_spec.rb
Normal file
55
spec/integration/balancing_spec.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue