workarea-authorize_cim 2.1.2 → 2.1.3

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: e0ada37d925b0c0b57593307b63aa8d0d9a9748db08a11432e096b283bf17302
4
- data.tar.gz: 8724b723d44c984162533525232d04b57ef43eef8072fda70f754db6d3a4bb9e
3
+ metadata.gz: e55858150c7e9ca1f6ad9de4dcbecb6f66cb629b0f178da9d7fa294e6fac757b
4
+ data.tar.gz: 7162cbed20349f9ee0d61af194c3a8715df1be5db8f0c8139c79a31a9ebc16dc
5
5
  SHA512:
6
- metadata.gz: c0a9aecace831f976166d832b8286d8cb955e4e7dc6745baf5c274d2cc9581d2a20d4143f041d09b13e3a2ab668ecf4b517352f1472f2108269ab9812219fba5
7
- data.tar.gz: 285d3146cf7487cebdcbef11e031482c3c5dfddcfcb1daae4687692935b9952fb353cacdfaf47166e4db482d40dbe0b742309be827738bfd7c18ccfdbe0fde6d
6
+ metadata.gz: c11d4bc276c7e148d7b8d31bd1989b722db075c5ff190658d3b00c7ff49843aca6a7ac726ca36ecc4d0275fd8e2d64995377f40af4a27578daa0caa13e0f5ec2
7
+ data.tar.gz: 4c65a456d282f45a3f535895cd7b3ff39405e9beab884d75a76bbb33fd7ee48cbd075d389869067988e4479b162792996b0c16b3ae6687282c8bee6915f34adb
@@ -1,52 +1,21 @@
1
- Workarea Authorize Cim 2.1.2 (2020-06-01)
1
+ Workarea Authorize Cim 2.1.3 (2020-09-16)
2
2
  --------------------------------------------------------------------------------
3
3
 
4
- * Fixed use of variables
4
+ * Add invoice number to refund method Authorize.net doesn't grab the invoice number from the captured transaction, so it needs to be defined again in the refund
5
5
 
6
6
 
7
7
  daniel
8
8
 
9
- * Updated to grab IP from Order model instead
10
9
 
11
10
 
12
- daniel
11
+ Workarea Authorize Cim 2.1.2 (2020-06-01)
12
+ --------------------------------------------------------------------------------
13
13
 
14
14
  * Added fields to include IP in transactions IP address is stored on tender while the order is being placed. It is then passed along as an argument when submitting the transaction to Authorize.net
15
15
 
16
16
 
17
17
  daniel
18
18
 
19
- * V3.5 compatibility updates
20
-
21
- AUTHNET-1
22
-
23
- Jeff Yucis
24
-
25
- * Update README
26
-
27
-
28
- Matt Duffy
29
-
30
- * Update README
31
-
32
-
33
- Matt Duffy
34
-
35
- * Complete post-migration tasks
36
-
37
-
38
- Curt Howard
39
-
40
- * Update gemspec to add license
41
-
42
-
43
- Curt Howard
44
-
45
- * Update LICENSE
46
-
47
-
48
- Curt Howard
49
-
50
19
 
51
20
 
52
21
  Workarea Authorize Cim 2.1.1 (2019-08-22)
@@ -19,7 +19,10 @@ module Workarea
19
19
  customer_profile_id: customer_profile_id,
20
20
  customer_payment_profile_id: customer_payment_profile_id,
21
21
  amount: refund_amount,
22
- trans_id: transaction.reference.response.params['direct_response']['transaction_id']
22
+ trans_id: transaction.reference.response.params['direct_response']['transaction_id'],
23
+ order: {
24
+ invoice_number: tender.payment.id.first(20) # auth net has max length 20 for this field
25
+ }
23
26
  }
24
27
  }
25
28
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Workarea
4
4
  module AuthorizeCim
5
- VERSION = '2.1.2'
5
+ VERSION = '2.1.3'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workarea-authorize_cim
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Scott
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-01 00:00:00.000000000 Z
11
+ date: 2020-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: workarea