effective_memberships 0.3.5 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,4 @@
1
1
  .table-courses .form-group { margin-bottom: 0; }
2
2
  .table-courses th,
3
3
  .table-courses td { vertical-align: middle; ;}
4
-
5
4
  .table-courses-course-name { text-align: right; width: 15rem; }
@@ -12,7 +12,6 @@ module Admin
12
12
  col :renewal_fee, as: :price
13
13
  col :late_fee, as: :price
14
14
  col :rich_text_body, label: 'Body'
15
-
16
15
  col :tax_exempt
17
16
  col :qb_item_name, visible: false
18
17
 
@@ -25,6 +25,9 @@ module Admin
25
25
 
26
26
  col :fee_type, search: EffectiveMemberships.fee_types
27
27
  col :price, as: :price
28
+ col :tax_exempt, visible: false
29
+ col :qb_item_name, visible: false
30
+
28
31
  col :purchased?, as: :boolean
29
32
  col :purchased_order, visible: false
30
33
 
@@ -8,7 +8,7 @@
8
8
 
9
9
 
10
10
  - applicant.applicant_course_areas_collection.each do |area|
11
- - datatable = EffectiveApplicantCoursesDatatable.new(applicant_id: applicant.id, applicant_course_area_id: area.id)
11
+ - datatable = EffectiveApplicantCoursesDatatable.new(applicant: applicant, applicant_course_area_id: area.id)
12
12
 
13
13
  .mb-4
14
14
  %h6= area
@@ -6,7 +6,7 @@
6
6
  .col-sm-auto.text-right
7
7
  = link_to('Edit', wizard_path(:education)) if edit_effective_wizard?
8
8
 
9
- - datatable = EffectiveApplicantEducationsDatatable.new(applicant_id: applicant.id)
9
+ - datatable = EffectiveApplicantEducationsDatatable.new(applicant: applicant)
10
10
  .mb-4= render_simple_datatable(datatable)
11
11
 
12
12
  - if applicant.applicant_educations_details.present?
@@ -20,7 +20,7 @@
20
20
  %th Total Months
21
21
  %td= applicant.applicant_experiences_months
22
22
 
23
- - datatable = EffectiveApplicantExperiencesDatatable.new(applicant_id: applicant.id)
23
+ - datatable = EffectiveApplicantExperiencesDatatable.new(applicant: applicant)
24
24
  .mb-4= render_simple_datatable(datatable)
25
25
 
26
26
  - if applicant.applicant_experiences_details.present?
@@ -1,3 +1,3 @@
1
1
  module EffectiveMemberships
2
- VERSION = '0.3.5'
2
+ VERSION = '0.3.6'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_memberships
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-01 00:00:00.000000000 Z
11
+ date: 2022-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -232,6 +232,8 @@ files:
232
232
  - README.md
233
233
  - Rakefile
234
234
  - app/assets/config/effective_memberships_manifest.js
235
+ - app/assets/images/effective_memberships/applicant-flowchart.excalidraw
236
+ - app/assets/images/effective_memberships/applicant-flowchart.png
235
237
  - app/assets/javascripts/effective_memberships.js
236
238
  - app/assets/javascripts/effective_memberships/applicant_courses.js
237
239
  - app/assets/javascripts/effective_memberships/applicant_experiences.js