foodsoft/app/models/financial_transaction.rb

30 lines
928 B
Ruby
Raw Normal View History

2009-01-06 11:49:19 +01:00
# financial transactions are the foodcoop internal financial transactions
# only ordergroups have an account balance and are happy to transfer money
2009-01-06 11:49:19 +01:00
class FinancialTransaction < ActiveRecord::Base
belongs_to :ordergroup
2009-01-06 11:49:19 +01:00
belongs_to :user
validates_presence_of :amount, :note, :user_id, :ordergroup_id
2009-01-06 11:49:19 +01:00
validates_numericality_of :amount
localize_input_of :amount
2009-01-06 11:49:19 +01:00
# Use this save method instead of simple save and after callback
def add_transaction!
ordergroup.add_financial_transaction! amount, note, user
end
2009-01-06 11:49:19 +01:00
end
# == Schema Information
#
# Table name: financial_transactions
#
# id :integer(4) not null, primary key
# ordergroup_id :integer(4) default(0), not null
# amount :decimal(8, 2) default(0.0), not null
# note :text default(""), not null
# user_id :integer(4) default(0), not null
# created_on :datetime not null
#