module IdCard class Configuration < ApplicationRecord belongs_to :employer, class_name: 'Employer' belongs_to :employer_logo, optional: true belongs_to :network_logo, optional: true belongs_to :provider_section, optional: true belongs_to :rx_section, optional: true has_many :plans, dependent: :destroy has_many :field_exceptions, dependent: :destroy accepts_nested_attributes_for :plans, allow_destroy: true, reject_if: :all_blank accepts_nested_attributes_for :field_exceptions, allow_destroy: true, reject_if: :all_blank attribute :queued_card_count, :integer, default: 0 scope :active, -> { where(active: true) } FORM_COLORS = ['atmosphere', 'verdigris', 'bluemana', 'cobalt'] MODULE_COLOR = 'atmosphere' # def employer_logo_filename # self.employer_logo.filename # end # def network_logo_filename # self.network_logo.filename # end def build_plan_with_default_benefits(attributes = {}) plan = plans.new(attributes) benefits = IdCardBenefitsTemplate.find_by(title: "BLANK").id_card_benefits.sort_by(&:sequence) benefits.each do |ben| plan.plan_benefits.new(benefit_desc: ben.benefit_desc, sequence: ben.sequence) end plan end def self.permitted_params(params) params.require(:id_card_configuration).permit( :print_name, :network_provider, :card_template, :rx_group_number, :employer_logo_id, :network_logo_id, :rx_section_id, :provider_section_id ) end end end