Module: EffectiveMembershipsApplicant
- Extended by:
- ActiveSupport::Concern
- Defined in:
- app/models/concerns/effective_memberships_applicant.rb
Overview
EffectiveMembershipsApplicant
Mark your owner model with effective_memberships_applicant to get all the includes
Defined Under Namespace
Modules: Base, ClassMethods
Instance Method Summary
collapse
Instance Method Details
#applicant_course(applicant_course_name: nil) ⇒ Object
648
649
650
651
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 648
def applicant_course(applicant_course_name: nil)
applicant_courses.find { |ac| ac.applicant_course_name_id == applicant_course_name.id } ||
applicant_courses.build(applicant_course_name: applicant_course_name, applicant_course_area: applicant_course_name.applicant_course_area)
end
|
#applicant_course_area_sum(applicant_course_area:) ⇒ Object
653
654
655
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 653
def applicant_course_area_sum(applicant_course_area:)
applicant_courses.select { |ac| ac.applicant_course_area_id == applicant_course_area.id }.sum { |ac| ac.amount.to_i }
end
|
#applicant_course_areas_collection ⇒ Object
640
641
642
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 640
def applicant_course_areas_collection
Effective::ApplicantCourseArea.deep.sorted
end
|
#applicant_course_names_collection(applicant_course_area:) ⇒ Object
644
645
646
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 644
def applicant_course_names_collection(applicant_course_area:)
applicant_course_area.applicant_course_names
end
|
#applicant_courses_sum ⇒ Object
657
658
659
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 657
def applicant_courses_sum
applicant_courses.sum { |ac| ac.amount.to_i }
end
|
#applicant_endorsements_required? ⇒ Boolean
680
681
682
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 680
def applicant_endorsements_required?
required_steps.include?(:endorsements) && min_applicant_endorsements > 0
end
|
#applicant_references_required? ⇒ Boolean
671
672
673
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 671
def applicant_references_required?
required_steps.include?(:references) && min_applicant_references > 0
end
|
#applicant_review(reviewer:) ⇒ Object
779
780
781
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 779
def applicant_review(reviewer:)
applicant_reviews.find { |ar| ar.reviewer_id == reviewer.id && ar.reviewer_type == reviewer.class.name }
end
|
#applicant_reviews_required? ⇒ Boolean
770
771
772
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 770
def applicant_reviews_required?
(min_applicant_reviews > 0 || applicant_reviews.present?)
end
|
#apply_to_join? ⇒ Boolean
532
533
534
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 532
def apply_to_join?
applicant_type == 'Apply to Join'
end
|
#approve! ⇒ Object
Admin approves an applicant. Registers the owner. Sends an email.
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 828
def approve!
raise('already approved') if was_approved?
raise('applicant must have been submitted to approve!') unless was_submitted?
wizard_steps[:checkout] ||= Time.zone.now
wizard_steps[:submitted] ||= Time.zone.now
assign_attributes(missing_info_reason: nil)
approved!
if apply_to_join?
EffectiveMemberships.Registrar.register!(
owner,
to: to_category,
status: to_status,
date: approved_membership_date.presence, number: approved_membership_number.presence )
elsif reclassification?
EffectiveMemberships.Registrar.reclassify!(owner, to: to_category, status: to_status)
elsif reinstatement?
EffectiveMemberships.Registrar.reinstate!(owner, from: from_status)
else
raise('unsupported approval applicant_type')
end
save!
after_commit { send_email(:applicant_approved) }
true
end
|
#approve_email_templates ⇒ Object
814
815
816
817
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 814
def approve_email_templates
raise('expected EffectiveEmailTemplates') unless defined?(EffectiveEmailTemplates)
Effective::EmailTemplate.where('template_name ILIKE ?', 'applicant_approve%').order(:template_name)
end
|
#build_applicant_review(reviewer:) ⇒ Object
784
785
786
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 784
def build_applicant_review(reviewer:)
applicant_review(reviewer: reviewer) || applicant_reviews.build(reviewer: reviewer)
end
|
#build_organization(params = {}) ⇒ Object
528
529
530
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 528
def build_organization(params = {})
self.organization = EffectiveMemberships.Organization.new(params)
end
|
#can_apply_applicant_types_collection ⇒ Object
594
595
596
597
598
599
600
601
602
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 594
def can_apply_applicant_types_collection
if owner.blank? || owner.membership.blank? || owner.membership.categories.blank?
['Apply to Join']
elsif owner.membership.statuses.any?(&:reinstatable?)
['Apply for Reinstatement', 'Apply to Join']
else
['Apply to Reclassify']
end
end
|
#can_apply_categories_collection ⇒ Object
605
606
607
608
609
610
611
612
613
614
615
616
617
618
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 605
def can_apply_categories_collection
categories = EffectiveMemberships.Category.sorted.can_apply
if user.blank? || !user.is?(:member)
return categories.where(can_apply_new: true)
end
category_ids = user.membership.category_ids
categories.select do |cat|
cat.can_apply_existing? ||
(cat.can_apply_restricted? && (category_ids & cat.can_apply_restricted_ids).present?)
end
end
|
#complete! ⇒ Object
734
735
736
737
738
739
740
741
742
743
744
745
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 734
def complete!
raise('applicant must have been submitted to complete!') unless was_submitted?
assign_attributes(missing_info_reason: nil)
completed!
after_commit { send_email(:applicant_completed) }
true
end
|
#completed_requirements ⇒ Object
When an application is submitted, these must be done to go to completed. An Admin can override this and just set them to completed.
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 715
def completed_requirements
requirements = {}
return requirements unless category.present?
if applicant_endorsements_required?
requirements['Applicant Endorsements'] = (applicant_endorsements.count(&:completed?) >= min_applicant_endorsements)
end
if applicant_references_required?
requirements['Applicant References'] = (applicant_references.count(&:completed?) >= min_applicant_references)
end
if transcripts_required?
requirements['Applicant Transcripts'] = transcripts_received?
end
requirements
end
|
#decline! ⇒ Object
Admin approves an applicant. Registers the owner. Sends an email.
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 862
def decline!
raise('already declined') if was_declined?
raise('previously approved') if was_approved?
raise('applicant must have been submitted to decline!') unless was_submitted?
wizard_steps[:checkout] ||= Time.zone.now
wizard_steps[:submitted] ||= Time.zone.now
declined!
save!
after_commit { send_email(:applicant_declined) }
true
end
|
#done? ⇒ Boolean
556
557
558
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 556
def done?
approved? || declined?
end
|
#in_progress? ⇒ Boolean
552
553
554
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 552
def in_progress?
!approved? && !declined?
end
|
#individual? ⇒ Boolean
544
545
546
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 544
def individual?
!(owner.kind_of?(EffectiveMemberships.Organization) && category&.organization?)
end
|
#min_applicant_courses ⇒ Object
636
637
638
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 636
def min_applicant_courses
category&.min_applicant_courses.to_i
end
|
#min_applicant_educations ⇒ Object
631
632
633
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 631
def min_applicant_educations
category&.min_applicant_educations.to_i
end
|
#min_applicant_endorsements ⇒ Object
676
677
678
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 676
def min_applicant_endorsements
category&.min_applicant_endorsements.to_i
end
|
#min_applicant_equivalences ⇒ Object
685
686
687
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 685
def min_applicant_equivalences
category&.min_applicant_equivalences.to_i
end
|
#min_applicant_experiences_months ⇒ Object
662
663
664
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 662
def min_applicant_experiences_months
category&.min_applicant_experiences_months.to_i
end
|
#min_applicant_files ⇒ Object
699
700
701
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 699
def min_applicant_files
category&.min_applicant_files.to_i
end
|
#min_applicant_references ⇒ Object
667
668
669
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 667
def min_applicant_references
category&.min_applicant_references.to_i
end
|
#min_applicant_reviews ⇒ Object
774
775
776
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 774
def min_applicant_reviews
category&.min_applicant_reviews.to_i
end
|
#missing! ⇒ Object
747
748
749
750
751
752
753
754
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 747
def missing!
raise('applicant must have been submitted to missing!') unless was_submitted?
missing_info!
after_commit { send_email(:applicant_missing_info) }
true
end
|
#organization? ⇒ Boolean
548
549
550
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 548
def organization?
owner.kind_of?(EffectiveMemberships.Organization) && category&.organization?
end
|
#owner ⇒ Object
520
521
522
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 520
def owner
organization || user
end
|
#owner_symbol ⇒ Object
524
525
526
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 524
def owner_symbol
organization? ? :organization : :user
end
|
#reclassification? ⇒ Boolean
536
537
538
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 536
def reclassification?
applicant_type == 'Apply to Reclassify'
end
|
#reinstatement? ⇒ Boolean
540
541
542
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 540
def reinstatement?
applicant_type == 'Apply for Reinstatement'
end
|
#resubmit! ⇒ Object
756
757
758
759
760
761
762
763
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 756
def resubmit!
raise('applicant must have been submitted and missing info to resubmit!') unless was_submitted? && was_missing_info?
raise('already submitted') if submitted?
raise('expected a purchased order') unless submit_order&.purchased?
assign_attributes(skip_to_step: :submitted, submitted_at: Time.zone.now)
submitted!
end
|
#review! ⇒ Object
807
808
809
810
811
812
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 807
def review!
raise('applicant must have been submitted to review!') unless was_submitted?
reviewed!
end
|
#reviewable? ⇒ Boolean
Completed -> Reviewed requirements
766
767
768
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 766
def reviewable?
completed?
end
|
#reviewed_requirements ⇒ Object
When an application is completed, these must be done to go to reviewed An Admin can override this and just set them to reviewed.
790
791
792
793
794
795
796
797
798
799
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 790
def reviewed_requirements
requirements = {}
return requirements unless category.present?
if applicant_reviews_required?
requirements['Applicant Reviews'] = (applicant_reviews.count(&:done?) >= min_applicant_reviews)
end
requirements
end
|
#select! ⇒ Object
620
621
622
623
624
625
626
627
628
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 620
def select!
raise('cannot select a submitted applicant') if was_submitted?
raise('cannot select a purchased applicant') if orders.any? { |order| order.purchased? }
assign_attributes(wizard_steps: wizard_steps.slice(:start, :select))
save!
end
|
#stamp ⇒ Object
704
705
706
707
708
709
710
711
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 704
def stamp
stamps.first || stamps.build(
owner: owner,
name: owner.to_s,
shipping_address: (owner.try(:shipping_address) || owner.try(:billing_address)),
price: 0
)
end
|
#status_label ⇒ Object
560
561
562
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 560
def status_label
(status_was || status).to_s.gsub('_', ' ')
end
|
#summary ⇒ Object
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 564
def summary
case status_was
when 'draft'
"Applicant has not yet completed the #{category} wizard steps or paid to submit this application. This application will transition to 'submitted' after payment has been collected."
when 'submitted'
summary = "Application has been purchased and submitted."
tasks = "The following tasks remain before it can be completed:"
approval = "Waiting on approval."
items = completed_requirements.map { |item, done| "<li>#{item}: #{done ? 'Complete' : 'Incomplete'}</li>" }.join
completed_requirements.present? ? "<p>#{summary} #{tasks}</p><ul>#{items}</ul>" : "#{summary} #{approval}"
when 'completed'
if applicant_reviews_required?
"All required materials have been provided. This application will transition to 'reviewed' after all reviewers have voted."
else
"This application has been completed and is now ready for an admin to approve or decline it. If approved, prorated fees will be generated."
end
when 'missing_info'
"Missing the following information: <ul><li>#{missing_info_reason}</li></ul>"
when 'reviewed'
"This application has been reviewed and is now ready for an admin to approve or decline it. If approved, prorated fees will be generated."
when 'approved'
"The application has been approved. All done."
when 'declined'
"This application has been declined."
else
raise("unexpected status #{status}")
end.html_safe
end
|
#to_category ⇒ Object
819
820
821
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 819
def to_category
category
end
|
#to_s ⇒ Object
514
515
516
517
518
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 514
def to_s
return 'New Applicant' if applicant_type.blank? || category.blank? || owner.blank?
"#{owner} - #{applicant_type} to #{category}"
end
|
#to_status ⇒ Object
823
824
825
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 823
def to_status
nil
end
|
#transcripts_received? ⇒ Boolean
690
691
692
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 690
def transcripts_received?
transcripts_received_on_was.present?
end
|
#transcripts_required? ⇒ Boolean
694
695
696
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 694
def transcripts_required?
required_steps.include?(:transcripts)
end
|
#try_reviewed! ⇒ Object
Called when an applicant_review was submitted
802
803
804
805
|
# File 'app/models/concerns/effective_memberships_applicant.rb', line 802
def try_reviewed!
return false unless completed? && reviewed_requirements.values.all?
reviewed!
end
|