Complete refactoring of orders-workflow.
OrderResult tables are removed. Data consistency is now possible through new article.price-history (ArticlePrice). Balancing-workflow needs to be updated.
This commit is contained in:
parent
80287aeea4
commit
9eb2125f15
98 changed files with 1121 additions and 1717 deletions
27
test/fixtures/article_prices.yml
vendored
Normal file
27
test/fixtures/article_prices.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# == Schema Information
|
||||
# Schema version: 20090120184410
|
||||
#
|
||||
# Table name: article_prices
|
||||
#
|
||||
# id :integer(4) not null, primary key
|
||||
# article_id :integer(4)
|
||||
# price :decimal(8, 2) default(0.0), not null
|
||||
# tax :decimal(8, 2) default(0.0), not null
|
||||
# deposit :decimal(8, 2) default(0.0), not null
|
||||
# unit_quantity :integer(4)
|
||||
# created_at :datetime
|
||||
#
|
||||
|
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
||||
|
||||
one:
|
||||
price: 9.99
|
||||
tax: 9.99
|
||||
deposit: 9.99
|
||||
unit_quantity: 1
|
||||
|
||||
two:
|
||||
price: 9.99
|
||||
tax: 9.99
|
||||
deposit: 9.99
|
||||
unit_quantity: 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue