rock_rms 9.11.0 → 9.12.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4f07cd77c57944ea52c4264eaf89d0911d002c3cc8d6b326b1d2834747ce47d
|
4
|
+
data.tar.gz: 8128a9f917cb0cc2b792157d9b41d97d22ccbbaa10bb766d84b88d78e3201f9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17dc283717b0b4b9591ca985ba59a6bba6ca8f925f5f7237cb88f0bbafe401ad26cf69912b31d980ca4ac19e23cbd3632cf86476bf7939e90816610de6c2b69c
|
7
|
+
data.tar.gz: 74beaf6a72b6699bb6279800a69572ab901453bcf7be6f4e496006d4978efaddf287fad6b7315c86f8962b6a98b47806502b71b1558b366c4d269c1d8335ca0e
|
@@ -29,7 +29,8 @@ module RockRMS
|
|
29
29
|
summary: nil,
|
30
30
|
recurring_donation_id: nil,
|
31
31
|
gateway_id: nil,
|
32
|
-
transaction_type_value_id: 53 # contribution, registration
|
32
|
+
transaction_type_value_id: 53, # contribution, registration
|
33
|
+
show_as_anonymous: nil
|
33
34
|
)
|
34
35
|
|
35
36
|
options = {
|
@@ -59,7 +60,8 @@ module RockRMS
|
|
59
60
|
transaction_type_value_id: nil,
|
60
61
|
authorized_person_id: nil,
|
61
62
|
date: nil,
|
62
|
-
foreign_currency_code_value_id: nil
|
63
|
+
foreign_currency_code_value_id: nil,
|
64
|
+
show_as_anonymous: nil
|
63
65
|
)
|
64
66
|
options = {}
|
65
67
|
|
@@ -73,6 +75,7 @@ module RockRMS
|
|
73
75
|
options['AuthorizedPersonAliasId'] = authorized_person_id if authorized_person_id
|
74
76
|
options['TransactionDateTime'] = date if date
|
75
77
|
options['ForeignCurrencyCodeValueId'] = foreign_currency_code_value_id if foreign_currency_code_value_id
|
78
|
+
options['ShowAsAnonymous'] = show_as_anonymous if show_as_anonymous
|
76
79
|
|
77
80
|
patch(transaction_path(id), options)
|
78
81
|
end
|
@@ -4,7 +4,13 @@ module RockRMS
|
|
4
4
|
MAP = {
|
5
5
|
campus_id: 'CampusId',
|
6
6
|
name: 'Name',
|
7
|
-
|
7
|
+
public_name: 'PublicName',
|
8
|
+
description: 'Description',
|
9
|
+
is_active: 'IsActive',
|
10
|
+
is_public: 'IsPublic',
|
11
|
+
is_tax_deductible: 'IsTaxDeductible',
|
12
|
+
gl_code: 'GlCode',
|
13
|
+
foreign_id: 'ForeignId'
|
8
14
|
}.freeze
|
9
15
|
|
10
16
|
def format_single(data)
|
data/lib/rock_rms/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rock_rms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.
|
4
|
+
version: 9.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taylor Brooks
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|