Introduced invoices and deliveries. Integration (especially of deliveries) isn't finished yet.
This commit is contained in:
parent
1894f27fe0
commit
30f3d199d3
65 changed files with 1193 additions and 209 deletions
17
app/models/delivery.rb
Normal file
17
app/models/delivery.rb
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# == Schema Information
|
||||
# Schema version: 20090102171850
|
||||
#
|
||||
# Table name: deliveries
|
||||
#
|
||||
# id :integer(4) not null, primary key
|
||||
# supplier_id :integer(4)
|
||||
# delivered_on :date
|
||||
# created_at :datetime
|
||||
#
|
||||
|
||||
class Delivery < ActiveRecord::Base
|
||||
|
||||
belongs_to :supplier
|
||||
|
||||
validates_presence_of :supplier_id
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue