我正在研究一個應用程序,該程序將跟蹤用戶的工作時間,然後從此數據生成圖形...
考慮到他們可以在今天開始完成任何任務並完成它明天,我不能保存一個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
我不是很清楚......我不能這樣做,因爲當只有5個留下來結束分鐘,用戶可以啓動任務的工作時間和另一天的任務繼續......他甚至可以在今天開始任務,並在一週內完成任務 –