foodsoft/test/fixtures/articles.yml
Benjamin Meichsner c17b63b192 Second part of stock-integration.
Introduced StockArticle and a special page for ordering from stock. StockChanges will be created and the StockArticle.quantity
updated in 'order.close!'.
2009-02-06 16:26:35 +01:00

62 lines
1.6 KiB
YAML

# == Schema Information
# Schema version: 20090120184410
#
# Table name: articles
#
# id :integer not null, primary key
# name :string(255) default(""), not null
# supplier_id :integer default(0), not null
# article_category_id :integer default(0), not null
# unit :string(255) default(""), not null
# note :string(255)
# availability :boolean default(TRUE), not null
# manufacturer :string(255)
# origin :string(255)
# shared_updated_on :datetime
# price :decimal(, )
# tax :float
# deposit :decimal(, ) default(0.0)
# unit_quantity :integer default(1), not null
# order_number :string(255)
# created_at :datetime
# updated_at :datetime
# quantity :decimal(, ) default(0.0)
# deleted_at :datetime
# type :string(255)
#
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
banana:
supplier: terra
name: Banana
article_category: fruits
unit: KG
availability: true
note: delicious
origin: EC
price: 1.45
tax: 7.0
unit_quantity: 18
order_number: 123456
kiwi:
supplier: terra
name: Kiwi
article_category: fruits
unit: 500g
availability: true
origin: IT
price: 1.11
tax: 7.0
unit_quantity: 10
order_number: 123457
potatoe:
supplier: terra
name: Potatoe
article_category: vegi
unit: 500g
availability: true
origin: REG
price: 1.33
tax: 7.0
unit_quantity: 25
order_number: 123458