Files
nairobi/app/helpers/signature_sheets_helper.rb
taitus 5953e87c71 Update help text and add dynamic example text
- Display help text and example text according to
  remote census configuration:

  Examples with expecte results:
  * With remote census without :date_of_birth and :postal_code:
    -> "To verify a user, your application needs: Document number"
    -> "Required fields for each user must be separated by commas and
        each user must be separated by semicolons."
    -> "Example: 12345678Z; 87654321Y"

  * With remote census with :date_of_birth required:
    -> "To verify a user, your application needs: Document number,
        Day of birth (dd/mm/yyyy)"
    -> "Required fields for each user must be separated by commas and
        each user must be separated by semicolons."
    -> "Example: 12345678Z, 01/01/1980; 87654321Y, 01/02/1990"

  * With remote census with :date_of_birth and :postal_code required:
    -> "To verify a user, your application needs: Document number,
        Day of birth (dd/mm/yyyy) and Postal Code"
    -> "Required fields for each user must be separated by commas and
        each user must be separated by semicolons."
    -> "Example: 12345678Z, 01/01/1980, 28001; 87654321Y, 01/02/1990, 28002"
2019-07-29 13:10:09 +02:00

53 lines
1.4 KiB
Ruby

module SignatureSheetsHelper
def signable_options
[[t("activerecord.models.proposal", count: 1), Proposal],
[t("activerecord.models.budget/investment", count: 1), Budget::Investment]]
end
def required_fields_to_verify_text_help
if Setting["feature.remote_census"].present?
date_of_birth_and_postal_code_text_help
else
t("admin.signature_sheets.new.document_numbers_note")
end
end
def date_of_birth_and_postal_code_text_help
text_help = t("admin.signature_sheets.new.text_help.required_fields_note")
if Setting.force_presence_date_of_birth?
text_help += t("admin.signature_sheets.new.text_help.date_of_birth_note")
end
if Setting.force_presence_postal_code?
text_help += t("admin.signature_sheets.new.text_help.postal_code_note")
end
text_help += "<br/>"
text_help += t("admin.signature_sheets.new.text_help.required_fields_structure_note")
return text_help.html_safe
end
def example_text_help
text_example = t("admin.signature_sheets.new.text_help.example_text")
example_1 = "12345678Z"
example_2 = "87654321Y"
if Setting.force_presence_date_of_birth?
example_1 += ", 01/01/1980"
example_2 += ", 01/02/1990"
end
if Setting.force_presence_postal_code?
example_1 += ", 28001"
example_2 += ", 28002"
end
text_example += "#{example_1}; #{example_2}"
return text_example
end
end