effective_memberships 0.12.3 → 0.13.0
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.
- checksums.yaml +4 -4
- data/app/models/concerns/effective_memberships_owner.rb +1 -0
- data/app/models/effective/fee.rb +4 -1
- data/app/views/admin/applicants/_fees_approve.html.haml +17 -0
- data/app/views/admin/applicants/_form_approve.html.haml +1 -17
- data/db/migrate/01_create_effective_memberships.rb.erb +3 -0
- data/lib/effective_memberships/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef95cbbf40f72c47c5ca64efd70d28d1cb879e52431b22471f2d570ef759d495
|
4
|
+
data.tar.gz: a150c327ec0869e26822f7d484cdc99c414cd666679150e9ee0c83efc3b125aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc04a6003782b0c39e4b67d03c012dc3e2247c93b5f43bd38fd47a843da7ee0c9fa11e5a02d56672724f95c453e5cf266179ea22f9e06da851c1d484a583edd2
|
7
|
+
data.tar.gz: dc070be5820ad2f616c4320a745879ff26b8e153f24ddc99fb92913d753f96198c387b58b8656e443737cec8ea1b5417032faceb394eae2ea640c61efbb05cf4
|
data/app/models/effective/fee.rb
CHANGED
@@ -13,6 +13,9 @@ module Effective
|
|
13
13
|
# The membership category for this fee, if there's only 1 membership.categories
|
14
14
|
belongs_to :category, polymorphic: true, optional: true
|
15
15
|
|
16
|
+
# Only set on the Discount fee right now
|
17
|
+
belongs_to :from_category, polymorphic: true, optional: true
|
18
|
+
|
16
19
|
# The membership status for this fee, if there's only 1 membership.statuses
|
17
20
|
belongs_to :with_status, polymorphic: true, optional: true
|
18
21
|
|
@@ -149,7 +152,7 @@ module Effective
|
|
149
152
|
[
|
150
153
|
period.strftime('%Y'),
|
151
154
|
category,
|
152
|
-
EffectiveResources.et("effective_memberships.fees.#{fee_type.
|
155
|
+
EffectiveResources.et("effective_memberships.fees.#{fee_type.parameterize.underscore}")
|
153
156
|
].join(' ')
|
154
157
|
end
|
155
158
|
|
@@ -0,0 +1,17 @@
|
|
1
|
+
%h3 Fees
|
2
|
+
%p The following fees will be created:
|
3
|
+
- month = Time.zone.now.strftime('%B')
|
4
|
+
|
5
|
+
%ul
|
6
|
+
- if applicant.apply_to_join?
|
7
|
+
%li A #{month} prorated fee
|
8
|
+
|
9
|
+
- if applicant.reclassification?
|
10
|
+
- if applicant.owner.outstanding_renewal_fees.present?
|
11
|
+
%li A renewal fee in their new category
|
12
|
+
- else
|
13
|
+
%li A #{month} prorated fee to the new category
|
14
|
+
%li A #{month} discount fee from their old category
|
15
|
+
|
16
|
+
- if applicant.reinstatement?
|
17
|
+
%li A #{month} prorated fee to their reinstatement category
|
@@ -22,23 +22,7 @@
|
|
22
22
|
- if applicant.reinstatement? && reinstatement.present?
|
23
23
|
%p The member will be reinstated with their previous status: #{badges(reinstatement.membership_statuses) || 'None'}.
|
24
24
|
|
25
|
-
|
26
|
-
%p The following fees will be created:
|
27
|
-
- month = Time.zone.now.strftime('%B')
|
28
|
-
|
29
|
-
%ul
|
30
|
-
- if applicant.apply_to_join?
|
31
|
-
%li A #{month} prorated fee
|
32
|
-
|
33
|
-
- if applicant.reclassification?
|
34
|
-
- if applicant.owner.outstanding_renewal_fees.present?
|
35
|
-
%li A renewal fee in their new category
|
36
|
-
- else
|
37
|
-
%li A #{month} prorated fee to the new category
|
38
|
-
%li A #{month} discount fee from their old category
|
39
|
-
|
40
|
-
- if applicant.reinstatement?
|
41
|
-
%li A #{month} prorated fee to their reinstatement category
|
25
|
+
= render('admin/applicants/fees_approve', f: f, applicant: applicant)
|
42
26
|
|
43
27
|
%p The following unpurchased fees will be deleted:
|
44
28
|
- outstanding_fee_payment_fees = applicant.owner.outstanding_fee_payment_fees
|
@@ -457,6 +457,9 @@ class CreateEffectiveMemberships < ActiveRecord::Migration[6.0]
|
|
457
457
|
t.integer :category_id
|
458
458
|
t.string :category_type
|
459
459
|
|
460
|
+
t.integer :from_category_id
|
461
|
+
t.string :from_category_type
|
462
|
+
|
460
463
|
t.integer :with_status_id
|
461
464
|
t.string :with_status_type
|
462
465
|
|
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.
|
4
|
+
version: 0.13.0
|
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: 2023-03-
|
11
|
+
date: 2023-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -354,6 +354,7 @@ files:
|
|
354
354
|
- app/views/admin/applicant_endorsements/_applicant_endorsement.html.haml
|
355
355
|
- app/views/admin/applicant_references/_applicant_reference.html.haml
|
356
356
|
- app/views/admin/applicant_reviews/_applicant_review.html.haml
|
357
|
+
- app/views/admin/applicants/_fees_approve.html.haml
|
357
358
|
- app/views/admin/applicants/_form.html.haml
|
358
359
|
- app/views/admin/applicants/_form_applicant.html.haml
|
359
360
|
- app/views/admin/applicants/_form_approve.html.haml
|