27 lines
895 B
Ruby
27 lines
895 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: financial_transactions
|
|
#
|
|
# id :integer not null, primary key
|
|
# ordergroup_id :integer default(0), not null
|
|
# amount :decimal(8, 2) default(0.0), not null
|
|
# note :text not null
|
|
# user_id :integer default(0), not null
|
|
# created_on :datetime not null
|
|
#
|
|
|
|
# financial transactions are the foodcoop internal financial transactions
|
|
# only ordergroups have an account balance and are happy to transfer money
|
|
class FinancialTransaction < ActiveRecord::Base
|
|
belongs_to :ordergroup
|
|
belongs_to :user
|
|
|
|
validates_presence_of :note, :user_id, :ordergroup_id
|
|
validates_numericality_of :amount
|
|
|
|
# Custom attribute setter that accepts decimal numbers using localized decimal separator.
|
|
def amount=(amount)
|
|
self[:amount] = String.delocalized_decimal(amount)
|
|
end
|
|
|
|
end
|