Sha256: 28235afe8ef220cecaa0eb58e9955d7b6ebfa4470336b97fd5c993d8162a7d2a

Contents?: true

Size: 1.47 KB

Versions: 124

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

module Renalware
  module LettersHelper
    def letters_breadcrumb(patient)
      breadcrumb_for("Letters", patient_letters_letters_path(patient))
    end

    def patient_letters_letters_path(patient, event = nil)
      if event.present?
        super(patient, event_type: event.class.to_s, event_id: event.id)
      else
        super(patient)
      end
    end

    def inline_value(label, value, unit = nil)
      [
        content_tag(:strong, "#{label}: "),
        value,
        unit
      ].flatten.join(" ").html_safe
    end

    def patient_letters_letter_print_path(letter)
      patient_letters_letter_formatted_path(letter.patient,
                                            letter,
                                            format: "pdf", disposition: "inline")
    end

    def patient_letters_letter_download_path(letter, format = :pdf)
      patient_letters_letter_formatted_path(letter.patient, letter, format: format)
    end

    def patient_letters_letter_preview_path(letter)
      patient_letters_letter_formatted_path(letter.patient, letter)
    end

    def state_options
      Letters::Letter.states.map do |state|
        label = I18n.t(state.to_sym, scope: "enums.letter.state")
        [label, state]
      end
    end

    def state_options_for_receptionists
      Letters::Letter.states.map do |state|
        label = I18n.t(state.to_sym, scope: "enums.letter.for_receptionists.state")
        [label, state]
      end
    end
  end
end

Version data entries

124 entries across 124 versions & 1 rubygems

Version Path
renalware-core-2.0.149 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.148 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.147 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.146 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.145 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.144 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.143 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.142 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.141 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.140 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.139 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.138 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.137 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.136 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.135 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.134 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.133 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.132 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.131 app/helpers/renalware/letters_helper.rb
renalware-core-2.0.130 app/helpers/renalware/letters_helper.rb