effective_qb_online 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/effective/qb_receipt.rb +1 -1
- data/lib/effective_qb_online/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9eb2ada8f2ad67f02b18901cfe652074df904b4c926473c76c4a093d31e19829
|
4
|
+
data.tar.gz: 5322b7ca7925a3b798cc72492403b625405e16e0d5a5f4d0be1651baa7cab25e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa1d35045bea30a175ac2cc11fba7a495d80366bd504440e95fe2367129bfbac1e2e9f94625aad212eeed4b9b200c6938166291f50cabd78db17e76529b5bf47
|
7
|
+
data.tar.gz: 057e30dbb66adc0e1a0fac373c4c2ce67b43d21b38856b2192d0ae09b9beb2b63e6e9bbcce1803f10fba9729abaa0199dd239729b01429095e005b280081cb43
|
@@ -74,7 +74,7 @@ module Effective
|
|
74
74
|
assign_attributes(result: 'completed successfully', sales_receipt_id: sales_receipt.id)
|
75
75
|
complete!
|
76
76
|
rescue => e
|
77
|
-
result = [e.message, *("(intuit_tid: #{e.intuit_tid})" if e.try(:intuit_tid).present?), e.backtrace.
|
77
|
+
result = [e.message, *("(intuit_tid: #{e.intuit_tid})" if e.try(:intuit_tid).present?), e.backtrace.first(5).join("\n\n")].join(' ')
|
78
78
|
assign_attributes(result: result)
|
79
79
|
error!
|
80
80
|
end
|