私は、ユーザーの作業時間を追跡し、このデータからグラフィックを生成するアプリに取り組んでいます...
彼らは今日開始して明日それを完了することができることを念頭に置いて、保存することはできませんDate
.. . 今では、整数フィールドのようなものを保存していhours
ますminute
...
この種の問題に対処するのに役立つ方法 (宝石など) はありますか?
または他のアプローチ?
ありがとう
Atendimento
必要なすべてのデータを含む私のクラス
class Atendimento < ActiveRecord::Base
attr_accessible :horas, :minutos, :empresa, :tipo_atendimento, :observacao, :empresa_id, :tipoatendimento_id
belongs_to :empresa
belongs_to :tipo_atendimento, :foreign_key => 'tipoatendimento_id'
belongs_to :usuario
validates :horas, :minutos, presence: true
end