2016-08-08 12:52:30 +02:00
|
|
|
class ChampsService
|
2017-03-29 13:37:07 +02:00
|
|
|
class << self
|
2017-03-30 16:12:01 +02:00
|
|
|
def save_champs(champs, params)
|
2017-03-29 13:37:07 +02:00
|
|
|
fill_champs(champs, params)
|
|
|
|
|
|
|
|
champs.select(&:changed?).each(&:save)
|
2017-03-30 16:12:01 +02:00
|
|
|
end
|
2017-03-29 13:37:07 +02:00
|
|
|
|
2017-03-30 16:12:01 +02:00
|
|
|
def build_error_messages(champs)
|
|
|
|
champs.select(&:mandatory_and_blank?)
|
|
|
|
.map { |c| "Le champ #{c.libelle} doit être rempli." }
|
2017-03-29 13:37:07 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def fill_champs(champs, h)
|
|
|
|
datetimes, not_datetimes = champs.partition { |c| c.type_champ == 'datetime' }
|
|
|
|
|
|
|
|
not_datetimes.each { |c| c.value = h[:champs]["'#{c.id}'"] }
|
|
|
|
datetimes.each { |c| c.value = parse_datetime(c.id, h) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def parse_datetime(champ_id, h)
|
|
|
|
"#{h[:champs]["'#{champ_id}'"]} #{extract_hour(champ_id, h)}:#{extract_minute(champ_id, h)}"
|
2016-08-08 12:52:30 +02:00
|
|
|
end
|
|
|
|
|
2017-03-29 13:37:07 +02:00
|
|
|
def extract_hour(champ_id, h)
|
|
|
|
h[:time_hour]["'#{champ_id}'"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def extract_minute(champ_id, h)
|
|
|
|
h[:time_minute]["'#{champ_id}'"]
|
|
|
|
end
|
2016-08-08 12:52:30 +02:00
|
|
|
end
|
2016-12-26 17:55:31 +01:00
|
|
|
end
|