class Order

Attributes

created_at[R]

Public Instance Methods

filled_date_greater_than_placed_date() click to toggle source
# File app/models/order.rb, line 20
def filled_date_greater_than_placed_date
  :time_filled > :time_placed if :time_filled and :time_placed
end