super_good-solidus_taxjar 0.18.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +48 -6
- data/CHANGELOG.md +103 -1
- data/Gemfile +26 -10
- data/PULL_REQUEST_TEMPLATE.md +0 -1
- data/README.md +299 -39
- data/Rakefile +3 -0
- data/app/controllers/spree/admin/taxjar_settings_controller.rb +86 -1
- data/app/controllers/spree/admin/taxjar_transactions_controller.rb +37 -0
- data/app/controllers/spree/admin/transaction_sync_batches_controller.rb +18 -0
- data/app/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job.rb +23 -0
- data/app/jobs/super_good/solidus_taxjar/replace_transaction_job.rb +26 -0
- data/app/jobs/super_good/solidus_taxjar/report_transaction_job.rb +22 -0
- data/app/models/super_good/solidus_taxjar/configuration.rb +27 -0
- data/app/models/super_good/solidus_taxjar/order_transaction.rb +16 -0
- data/app/models/super_good/solidus_taxjar/refund_transaction.rb +13 -0
- data/app/models/super_good/solidus_taxjar/transaction_sync_batch.rb +11 -0
- data/app/models/super_good/solidus_taxjar/transaction_sync_log.rb +8 -0
- data/app/overrides/spree/admin/orders_controller_override.rb +12 -0
- data/app/overrides/spree/admin/shared/_order_submenu/add_taxjar_sync_history_tab.html.erb.deface +6 -0
- data/app/overrides/spree/admin/shared/_order_summary/add_taxjar_reported_at.html.erb.deface +30 -0
- data/app/overrides/spree/admin/shared/_taxes_tabs/add_configuration_menu_items.html.erb.deface +5 -0
- data/app/overrides/super_good/solidus_taxjar/spree/order_override.rb +21 -0
- data/app/views/spree/admin/orders/taxjar_transactions.html.erb +4 -0
- data/app/views/spree/admin/shared/_transaction_sync_log_table.html.erb +35 -0
- data/app/views/spree/admin/taxjar_settings/_nexus_regions.html.erb +23 -0
- data/app/views/spree/admin/taxjar_settings/_tax_categories.html.erb +41 -0
- data/app/views/spree/admin/taxjar_settings/edit.html.erb +17 -0
- data/app/views/spree/admin/taxjar_settings/edit_no_api_key.html.erb +21 -0
- data/app/views/spree/admin/transaction_sync_batches/index.html.erb +50 -0
- data/app/views/spree/admin/transaction_sync_batches/show.html.erb +7 -0
- data/bin/console +2 -0
- data/bin/rails-engine +1 -1
- data/bin/sandbox +43 -36
- data/bin/setup +3 -3
- data/config/routes.rb +13 -1
- data/db/migrate/20210908205201_create_taxjar_order_transactions.rb +16 -0
- data/db/migrate/20211008175113_create_taxjar_refund_transaction.rb +15 -0
- data/db/migrate/20211008183858_add_transaction_date_to_order_transaction.rb +5 -0
- data/db/migrate/20211119143354_create_configuration.rb +8 -0
- data/db/migrate/20220405213958_create_transaction_sync_batches.rb +7 -0
- data/db/migrate/20220405215225_create_transaction_sync_logs.rb +14 -0
- data/db/migrate/20220908181655_add_dates_to_transaction_sync_batch.rb +6 -0
- data/db/migrate/20220912182210_allow_null_transaction_sync_batches_on_logs.rb +5 -0
- data/db/migrate/20230320211309_add_refund_transaction_to_sync_logs.rb +5 -0
- data/lib/generators/super_good/solidus_taxjar/install/install_generator.rb +68 -0
- data/lib/super_good/solidus_taxjar/api.rb +41 -9
- data/lib/super_good/solidus_taxjar/api_params.rb +92 -25
- data/lib/super_good/solidus_taxjar/backfill_transactions.rb +11 -0
- data/lib/super_good/solidus_taxjar/cached_api.rb +23 -0
- data/lib/super_good/solidus_taxjar/calculator_helper.rb +33 -4
- data/lib/super_good/solidus_taxjar/discount_calculator.rb +1 -1
- data/lib/super_good/solidus_taxjar/overrides/request_override.rb +15 -0
- data/lib/super_good/solidus_taxjar/reportable.rb +91 -0
- data/lib/super_good/solidus_taxjar/reporting.rb +44 -0
- data/lib/super_good/solidus_taxjar/spree/legacy_reporting_subscriber.rb +41 -0
- data/lib/super_good/solidus_taxjar/spree/reporting_subscriber.rb +40 -0
- data/lib/super_good/solidus_taxjar/tax_calculator.rb +7 -1
- data/lib/super_good/solidus_taxjar/testing_support/factories/address_factory.rb +11 -0
- data/lib/super_good/solidus_taxjar/testing_support/factories/configuration_factory.rb +11 -0
- data/lib/super_good/solidus_taxjar/testing_support/factories/order_transaction_factory.rb +22 -0
- data/lib/super_good/solidus_taxjar/testing_support/factories/refund_transaction_factory.rb +7 -0
- data/lib/super_good/solidus_taxjar/testing_support/factories/transaction_sync_batch_factory.rb +9 -0
- data/lib/super_good/solidus_taxjar/testing_support/factories/transaction_sync_log_factory.rb +18 -0
- data/lib/super_good/solidus_taxjar/transaction_id_generator.rb +45 -0
- data/lib/super_good/solidus_taxjar/version.rb +1 -1
- data/lib/super_good/solidus_taxjar.rb +29 -2
- data/spec/features/spree/admin/backfill_transactions_spec.rb +138 -0
- data/spec/features/spree/admin/refund_spec.rb +167 -0
- data/spec/features/spree/admin/reporting_to_taxjar_spec.rb +156 -0
- data/spec/features/spree/admin/taxjar_settings_spec.rb +58 -16
- data/spec/features/spree/checkout_spec.rb +58 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/GET_sync_nexus_regions/Taxjar_API_token_is_not_set/doesn_t_make_a_request_for_the_nexus_regions.yml +57 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/GET_sync_tax_categories/Taxjar_API_token_is_not_set/doesn_t_make_a_request_for_the_tax_categories.yml +57 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_is_set/shows_the_settings_page.yml +2437 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/doesn_t_show_any_other_TaxJar_features.yml +57 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/shows_a_descriptive_error_message.yml +57 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_reporting_is_enabled/shows_that_reporting_is_enabled.yml +2382 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/order_is_shipped/the_user_backfills_their_transactions.yml +2511 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/the_user_navigates_to_the_TaxJar_Settings.yml +2382 -0
- data/spec/fixtures/cassettes/Admin_Transaction_Sync_Batches/user_has_a_shipped_order/starts_a_transaction_backfill.yml +370 -0
- data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/shipping_a_complete_and_paid_order.yml +310 -0
- data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/updating_an_order_which_was_not_reported_due_to_failure/it_reports_the_order_instead_of_trying_to_replace_it.yml +794 -0
- data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/with_an_order_with_invalid_zipcode/retry_of_a_previously_failed_transaction_sync.yml +418 -0
- data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_batch.yml +250 -0
- data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_log_in_the_batch_with_an_order.yml +250 -0
- data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/creates_a_batch.yml +250 -0
- data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/user_supplies_start_and_end_date/creates_a_batch.yml +250 -0
- data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_CalculatorHelper/_taxable_address_/when_taxable_address_check_returns_true/with_US_address/when_the_address_is_not_within_a_nexus_region/1_3_2_2_2_1.yml +58 -0
- data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_CalculatorHelper/_taxable_address_/when_taxable_address_check_returns_true/with_US_address/when_the_address_is_within_a_nexus_region/1_3_2_2_1_1.yml +58 -0
- data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/doesn_t_create_a_new_transaction.yml +393 -0
- data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/raises_an_error.yml +393 -0
- data/spec/fixtures/cassettes/Taxjar_API_Request/logging_is_disabled/doesn_t_call_the_logger.yml +158 -0
- data/spec/fixtures/cassettes/Taxjar_API_Request/logging_is_enabled/calls_the_logger.yml +158 -0
- data/spec/fixtures/cassettes/features/spree/admin/checkout.yml +238 -0
- data/spec/fixtures/cassettes/features/spree/admin/refund.yml +1162 -0
- data/spec/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job_spec.rb +117 -0
- data/spec/jobs/super_good/solidus_taxjar/replace_transaction_job_spec.rb +95 -0
- data/spec/jobs/super_good/solidus_taxjar/report_transaction_job_spec.rb +76 -0
- data/spec/models/super_good/solidus_taxjar/configuration_spec.rb +79 -0
- data/spec/models/super_good/solidus_taxjar/order_transaction_spec.rb +36 -0
- data/spec/models/super_good/solidus_taxjar/transaction_sync_batch_spec.rb +48 -0
- data/spec/requests/spree/admin/order_request_spec.rb +121 -0
- data/spec/requests/spree/admin/taxjar_settings_request_spec.rb +198 -0
- data/spec/requests/spree/admin/taxjar_transactions_request_spec.rb +62 -0
- data/spec/requests/spree/admin/transaction_sync_batches_request_spec.rb +82 -0
- data/spec/spec_helper.rb +46 -3
- data/spec/subscribers/super_good/solidus_taxjar/spree/reporting_subscriber_spec.rb +278 -0
- data/spec/super_good/solidus_taxjar/addresses_spec.rb +0 -14
- data/spec/super_good/solidus_taxjar/api_params_spec.rb +261 -89
- data/spec/super_good/solidus_taxjar/api_spec.rb +152 -29
- data/spec/super_good/solidus_taxjar/backfill_transactions_spec.rb +24 -0
- data/spec/super_good/solidus_taxjar/cached_api_spec.rb +58 -0
- data/spec/super_good/solidus_taxjar/calculator_helper_spec.rb +131 -0
- data/spec/super_good/solidus_taxjar/discount_calculator_spec.rb +19 -2
- data/spec/super_good/solidus_taxjar/reportable_spec.rb +194 -0
- data/spec/super_good/solidus_taxjar/reporting_spec.rb +243 -0
- data/spec/super_good/solidus_taxjar/tax_calculator_spec.rb +19 -19
- data/spec/super_good/solidus_taxjar/tax_rate_calculator_spec.rb +8 -3
- data/spec/super_good/solidus_taxjar/transaction_id_generator_spec.rb +77 -0
- data/spec/super_good/solidus_taxjar_spec.rb +84 -0
- data/spec/support/checkoutable_store_shared_context.rb +19 -0
- data/spec/support/solidus_events_helper.rb +26 -0
- data/spec/taxjar/api/request_spec.rb +52 -0
- data/super_good-solidus_taxjar.gemspec +3 -2
- metadata +169 -17
- data/app/decorators/super_good/solidus_taxjar/spree/order_updater/fire_recalculated_event.rb +0 -18
- data/app/overrides/spree/admin/shared/_configuration_menu.rb +0 -11
- data/app/views/spree/admin/taxjar_settings/show.html.erb +0 -13
- data/spec/models/spree/order_updater_spec.rb +0 -12
@@ -0,0 +1,370 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.taxjar.com/v2/nexus/regions
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
12
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
13
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
14
|
+
Authorization:
|
15
|
+
- Bearer <BEARER_TOKEN>
|
16
|
+
X-Api-Version:
|
17
|
+
- '2020-08-07'
|
18
|
+
Plugin:
|
19
|
+
- supergoodsolidustaxjar
|
20
|
+
Connection:
|
21
|
+
- close
|
22
|
+
Host:
|
23
|
+
- api.taxjar.com
|
24
|
+
response:
|
25
|
+
status:
|
26
|
+
code: 200
|
27
|
+
message: OK
|
28
|
+
headers:
|
29
|
+
Content-Type:
|
30
|
+
- application/json; charset=utf-8
|
31
|
+
Content-Length:
|
32
|
+
- '277'
|
33
|
+
Connection:
|
34
|
+
- close
|
35
|
+
Date:
|
36
|
+
- Mon, 12 Dec 2022 19:26:04 GMT
|
37
|
+
X-Amzn-Requestid:
|
38
|
+
- 55fa5eb0-a240-4615-a433-914b858ba9df
|
39
|
+
X-Amz-Apigw-Id:
|
40
|
+
- dDD7_FKVoAMFXGg=
|
41
|
+
X-Amzn-Trace-Id:
|
42
|
+
- Root=1-6397804c-2c8056981d262af125dac62f
|
43
|
+
X-Cache:
|
44
|
+
- Miss from cloudfront
|
45
|
+
Via:
|
46
|
+
- 1.1 a8e5d5aeee6eacca5c379e5059b1f68c.cloudfront.net (CloudFront)
|
47
|
+
X-Amz-Cf-Pop:
|
48
|
+
- SEA73-P2
|
49
|
+
X-Amz-Cf-Id:
|
50
|
+
- r9UwKqy4haoo7l5tYMvUnC3yzzXZzIbF1kiUWeaZaQTHjAnsaIaMQQ==
|
51
|
+
body:
|
52
|
+
encoding: UTF-8
|
53
|
+
string: '{"regions":[{"region_code":"BC","region":"British Columbia","country_code":"CA","country":"Canada"},{"region_code":"CA","region":"California","country_code":"US","country":"United
|
54
|
+
States"},{"region_code":"NY","region":"New York","country_code":"US","country":"United
|
55
|
+
States"}]}'
|
56
|
+
http_version:
|
57
|
+
recorded_at: Mon, 12 Dec 2022 19:26:04 GMT
|
58
|
+
- request:
|
59
|
+
method: post
|
60
|
+
uri: https://api.taxjar.com/v2/taxes
|
61
|
+
body:
|
62
|
+
encoding: UTF-8
|
63
|
+
string: '{"customer_id":"1","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
64
|
+
Different Road","line_items":[{"id":1,"quantity":1,"unit_price":"10.0","discount":0,"product_tax_code":"TaxCode
|
65
|
+
- 323668"}],"shipping":"100.0"}'
|
66
|
+
headers:
|
67
|
+
User-Agent:
|
68
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
69
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
70
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
71
|
+
Authorization:
|
72
|
+
- Bearer <BEARER_TOKEN>
|
73
|
+
X-Api-Version:
|
74
|
+
- '2020-08-07'
|
75
|
+
Plugin:
|
76
|
+
- supergoodsolidustaxjar
|
77
|
+
Connection:
|
78
|
+
- close
|
79
|
+
Content-Type:
|
80
|
+
- application/json; charset=UTF-8
|
81
|
+
Host:
|
82
|
+
- api.taxjar.com
|
83
|
+
response:
|
84
|
+
status:
|
85
|
+
code: 200
|
86
|
+
message: OK
|
87
|
+
headers:
|
88
|
+
Content-Type:
|
89
|
+
- application/json; charset=utf-8
|
90
|
+
Content-Length:
|
91
|
+
- '1487'
|
92
|
+
Connection:
|
93
|
+
- close
|
94
|
+
Date:
|
95
|
+
- Mon, 12 Dec 2022 19:26:04 GMT
|
96
|
+
X-Amzn-Requestid:
|
97
|
+
- 9d323d31-c2c5-4b5b-8604-9392e199d409
|
98
|
+
Access-Control-Allow-Origin:
|
99
|
+
- https://developers.taxjar.com
|
100
|
+
X-Amz-Apigw-Id:
|
101
|
+
- dDD8BGpUIAMFgKA=
|
102
|
+
X-Amzn-Trace-Id:
|
103
|
+
- Root=1-6397804c-13f358df057fe3861a907d6b
|
104
|
+
X-Cache:
|
105
|
+
- Miss from cloudfront
|
106
|
+
Via:
|
107
|
+
- 1.1 f7283f3fe2c258cf54f8b7d3dd272e0e.cloudfront.net (CloudFront)
|
108
|
+
X-Amz-Cf-Pop:
|
109
|
+
- SEA73-P2
|
110
|
+
X-Amz-Cf-Id:
|
111
|
+
- wUiyGj26SNxDOWk3KnmU86CI92--iBZvM1GYVO3uweIU_DR5xdZAdA==
|
112
|
+
body:
|
113
|
+
encoding: UTF-8
|
114
|
+
string: '{"tax":{"amount_to_collect":9.76,"breakdown":{"city_tax_collectable":5.36,"city_tax_rate":0.04875,"city_taxable_amount":110.0,"combined_tax_rate":0.08875,"county_tax_collectable":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"line_items":[{"city_amount":0.49,"city_tax_rate":0.04875,"city_taxable_amount":10.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"id":"1","special_district_amount":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_amount":0.4,"state_sales_tax_rate":0.04,"state_taxable_amount":10.0,"tax_collectable":0.89,"taxable_amount":10.0}],"shipping":{"city_amount":4.88,"city_tax_rate":0.04875,"city_taxable_amount":100.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"special_district_amount":0.0,"special_tax_rate":0.0,"special_taxable_amount":0.0,"state_amount":4.0,"state_sales_tax_rate":0.04,"state_taxable_amount":100.0,"tax_collectable":8.88,"taxable_amount":100.0},"special_district_tax_collectable":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_tax_collectable":4.4,"state_tax_rate":0.04,"state_taxable_amount":110.0,"tax_collectable":9.76,"taxable_amount":110.0},"freight_taxable":true,"has_nexus":true,"jurisdictions":{"city":"NEW
|
115
|
+
YORK CITY","country":"US","county":"QUEENS","state":"NY"},"order_total_amount":110.0,"rate":0.08875,"shipping":100.0,"tax_source":"destination","taxable_amount":110.0}}'
|
116
|
+
http_version:
|
117
|
+
recorded_at: Mon, 12 Dec 2022 19:26:04 GMT
|
118
|
+
- request:
|
119
|
+
method: post
|
120
|
+
uri: https://api.taxjar.com/v2/taxes
|
121
|
+
body:
|
122
|
+
encoding: UTF-8
|
123
|
+
string: '{"customer_id":"1","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
124
|
+
Different Road","line_items":[{"id":1,"quantity":1,"unit_price":"10.0","discount":0,"product_tax_code":"TaxCode
|
125
|
+
- 323668"}],"shipping":"100.0"}'
|
126
|
+
headers:
|
127
|
+
User-Agent:
|
128
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
129
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
130
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
131
|
+
Authorization:
|
132
|
+
- Bearer <BEARER_TOKEN>
|
133
|
+
X-Api-Version:
|
134
|
+
- '2020-08-07'
|
135
|
+
Plugin:
|
136
|
+
- supergoodsolidustaxjar
|
137
|
+
Connection:
|
138
|
+
- close
|
139
|
+
Content-Type:
|
140
|
+
- application/json; charset=UTF-8
|
141
|
+
Host:
|
142
|
+
- api.taxjar.com
|
143
|
+
response:
|
144
|
+
status:
|
145
|
+
code: 200
|
146
|
+
message: OK
|
147
|
+
headers:
|
148
|
+
Content-Type:
|
149
|
+
- application/json; charset=utf-8
|
150
|
+
Content-Length:
|
151
|
+
- '1487'
|
152
|
+
Connection:
|
153
|
+
- close
|
154
|
+
Date:
|
155
|
+
- Mon, 12 Dec 2022 19:26:05 GMT
|
156
|
+
X-Amzn-Requestid:
|
157
|
+
- 67b4acd2-d4b2-497c-a3ea-22efab4f7b3b
|
158
|
+
Access-Control-Allow-Origin:
|
159
|
+
- https://developers.taxjar.com
|
160
|
+
X-Amz-Apigw-Id:
|
161
|
+
- dDD8HGVwoAMF7CA=
|
162
|
+
X-Amzn-Trace-Id:
|
163
|
+
- Root=1-6397804d-6ffb413f5c591e970304537d
|
164
|
+
X-Cache:
|
165
|
+
- Miss from cloudfront
|
166
|
+
Via:
|
167
|
+
- 1.1 45d6a557ecb29942f314e3dd736d817a.cloudfront.net (CloudFront)
|
168
|
+
X-Amz-Cf-Pop:
|
169
|
+
- SEA73-P2
|
170
|
+
X-Amz-Cf-Id:
|
171
|
+
- EH2JvyHfp9jDdsGmzN4BUS1vgIqB9AWR6iHgP51gfNbhFOHIuZSuTw==
|
172
|
+
body:
|
173
|
+
encoding: UTF-8
|
174
|
+
string: '{"tax":{"amount_to_collect":9.76,"breakdown":{"city_tax_collectable":5.36,"city_tax_rate":0.04875,"city_taxable_amount":110.0,"combined_tax_rate":0.08875,"county_tax_collectable":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"line_items":[{"city_amount":0.49,"city_tax_rate":0.04875,"city_taxable_amount":10.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"id":"1","special_district_amount":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_amount":0.4,"state_sales_tax_rate":0.04,"state_taxable_amount":10.0,"tax_collectable":0.89,"taxable_amount":10.0}],"shipping":{"city_amount":4.88,"city_tax_rate":0.04875,"city_taxable_amount":100.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"special_district_amount":0.0,"special_tax_rate":0.0,"special_taxable_amount":0.0,"state_amount":4.0,"state_sales_tax_rate":0.04,"state_taxable_amount":100.0,"tax_collectable":8.88,"taxable_amount":100.0},"special_district_tax_collectable":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_tax_collectable":4.4,"state_tax_rate":0.04,"state_taxable_amount":110.0,"tax_collectable":9.76,"taxable_amount":110.0},"freight_taxable":true,"has_nexus":true,"jurisdictions":{"city":"NEW
|
175
|
+
YORK CITY","country":"US","county":"QUEENS","state":"NY"},"order_total_amount":110.0,"rate":0.08875,"shipping":100.0,"tax_source":"destination","taxable_amount":110.0}}'
|
176
|
+
http_version:
|
177
|
+
recorded_at: Mon, 12 Dec 2022 19:26:05 GMT
|
178
|
+
- request:
|
179
|
+
method: post
|
180
|
+
uri: https://api.taxjar.com/v2/taxes
|
181
|
+
body:
|
182
|
+
encoding: UTF-8
|
183
|
+
string: '{"customer_id":"2","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
184
|
+
Different Road","line_items":[{"id":2,"quantity":1,"unit_price":"10.0","discount":0,"product_tax_code":"TaxCode
|
185
|
+
- 323668"}],"shipping":"100.0"}'
|
186
|
+
headers:
|
187
|
+
User-Agent:
|
188
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
189
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
190
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
191
|
+
Authorization:
|
192
|
+
- Bearer <BEARER_TOKEN>
|
193
|
+
X-Api-Version:
|
194
|
+
- '2020-08-07'
|
195
|
+
Plugin:
|
196
|
+
- supergoodsolidustaxjar
|
197
|
+
Connection:
|
198
|
+
- close
|
199
|
+
Content-Type:
|
200
|
+
- application/json; charset=UTF-8
|
201
|
+
Host:
|
202
|
+
- api.taxjar.com
|
203
|
+
response:
|
204
|
+
status:
|
205
|
+
code: 200
|
206
|
+
message: OK
|
207
|
+
headers:
|
208
|
+
Content-Type:
|
209
|
+
- application/json; charset=utf-8
|
210
|
+
Content-Length:
|
211
|
+
- '1487'
|
212
|
+
Connection:
|
213
|
+
- close
|
214
|
+
Date:
|
215
|
+
- Mon, 12 Dec 2022 19:26:05 GMT
|
216
|
+
X-Amzn-Requestid:
|
217
|
+
- d257234b-f728-4930-99c4-881e029822ec
|
218
|
+
Access-Control-Allow-Origin:
|
219
|
+
- https://developers.taxjar.com
|
220
|
+
X-Amz-Apigw-Id:
|
221
|
+
- dDD8NGFvIAMF7Iw=
|
222
|
+
X-Amzn-Trace-Id:
|
223
|
+
- Root=1-6397804d-7ab33c2a4548d29c79af5ca2
|
224
|
+
X-Cache:
|
225
|
+
- Miss from cloudfront
|
226
|
+
Via:
|
227
|
+
- 1.1 95785220a566cd050f3ad80928463374.cloudfront.net (CloudFront)
|
228
|
+
X-Amz-Cf-Pop:
|
229
|
+
- SEA73-P2
|
230
|
+
X-Amz-Cf-Id:
|
231
|
+
- 2eSEfmHQnvybyJl3wILzGwErzN39yPxwDXBh3sNnjZ7tCm5BpZyrEg==
|
232
|
+
body:
|
233
|
+
encoding: UTF-8
|
234
|
+
string: '{"tax":{"amount_to_collect":9.76,"breakdown":{"city_tax_collectable":5.36,"city_tax_rate":0.04875,"city_taxable_amount":110.0,"combined_tax_rate":0.08875,"county_tax_collectable":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"line_items":[{"city_amount":0.49,"city_tax_rate":0.04875,"city_taxable_amount":10.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"id":"2","special_district_amount":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_amount":0.4,"state_sales_tax_rate":0.04,"state_taxable_amount":10.0,"tax_collectable":0.89,"taxable_amount":10.0}],"shipping":{"city_amount":4.88,"city_tax_rate":0.04875,"city_taxable_amount":100.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"special_district_amount":0.0,"special_tax_rate":0.0,"special_taxable_amount":0.0,"state_amount":4.0,"state_sales_tax_rate":0.04,"state_taxable_amount":100.0,"tax_collectable":8.88,"taxable_amount":100.0},"special_district_tax_collectable":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_tax_collectable":4.4,"state_tax_rate":0.04,"state_taxable_amount":110.0,"tax_collectable":9.76,"taxable_amount":110.0},"freight_taxable":true,"has_nexus":true,"jurisdictions":{"city":"NEW
|
235
|
+
YORK CITY","country":"US","county":"QUEENS","state":"NY"},"order_total_amount":110.0,"rate":0.08875,"shipping":100.0,"tax_source":"destination","taxable_amount":110.0}}'
|
236
|
+
http_version:
|
237
|
+
recorded_at: Mon, 12 Dec 2022 19:26:05 GMT
|
238
|
+
- request:
|
239
|
+
method: post
|
240
|
+
uri: https://api.taxjar.com/v2/taxes
|
241
|
+
body:
|
242
|
+
encoding: UTF-8
|
243
|
+
string: '{"customer_id":"2","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
244
|
+
Different Road","line_items":[{"id":2,"quantity":1,"unit_price":"10.0","discount":0,"product_tax_code":"TaxCode
|
245
|
+
- 323668"}],"shipping":"100.0"}'
|
246
|
+
headers:
|
247
|
+
User-Agent:
|
248
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
249
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
250
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
251
|
+
Authorization:
|
252
|
+
- Bearer <BEARER_TOKEN>
|
253
|
+
X-Api-Version:
|
254
|
+
- '2020-08-07'
|
255
|
+
Plugin:
|
256
|
+
- supergoodsolidustaxjar
|
257
|
+
Connection:
|
258
|
+
- close
|
259
|
+
Content-Type:
|
260
|
+
- application/json; charset=UTF-8
|
261
|
+
Host:
|
262
|
+
- api.taxjar.com
|
263
|
+
response:
|
264
|
+
status:
|
265
|
+
code: 200
|
266
|
+
message: OK
|
267
|
+
headers:
|
268
|
+
Content-Type:
|
269
|
+
- application/json; charset=utf-8
|
270
|
+
Content-Length:
|
271
|
+
- '1487'
|
272
|
+
Connection:
|
273
|
+
- close
|
274
|
+
Date:
|
275
|
+
- Mon, 12 Dec 2022 19:26:06 GMT
|
276
|
+
X-Amzn-Requestid:
|
277
|
+
- 1cfd3478-f656-4053-b7e9-74dd110bee23
|
278
|
+
Access-Control-Allow-Origin:
|
279
|
+
- https://developers.taxjar.com
|
280
|
+
X-Amz-Apigw-Id:
|
281
|
+
- dDD8QEjJIAMF62Q=
|
282
|
+
X-Amzn-Trace-Id:
|
283
|
+
- Root=1-6397804e-23f81d884f011c0e16030178
|
284
|
+
X-Cache:
|
285
|
+
- Miss from cloudfront
|
286
|
+
Via:
|
287
|
+
- 1.1 6a63e853422f3197776fb098fab5a416.cloudfront.net (CloudFront)
|
288
|
+
X-Amz-Cf-Pop:
|
289
|
+
- SEA73-P2
|
290
|
+
X-Amz-Cf-Id:
|
291
|
+
- HmuCSB3PrnL1iZAASDz_j_jtJaqsBbyDL_-sGbXME2LCUMW38eUXRw==
|
292
|
+
body:
|
293
|
+
encoding: UTF-8
|
294
|
+
string: '{"tax":{"amount_to_collect":9.76,"breakdown":{"city_tax_collectable":5.36,"city_tax_rate":0.04875,"city_taxable_amount":110.0,"combined_tax_rate":0.08875,"county_tax_collectable":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"line_items":[{"city_amount":0.49,"city_tax_rate":0.04875,"city_taxable_amount":10.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"id":"2","special_district_amount":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_amount":0.4,"state_sales_tax_rate":0.04,"state_taxable_amount":10.0,"tax_collectable":0.89,"taxable_amount":10.0}],"shipping":{"city_amount":4.88,"city_tax_rate":0.04875,"city_taxable_amount":100.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"special_district_amount":0.0,"special_tax_rate":0.0,"special_taxable_amount":0.0,"state_amount":4.0,"state_sales_tax_rate":0.04,"state_taxable_amount":100.0,"tax_collectable":8.88,"taxable_amount":100.0},"special_district_tax_collectable":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_tax_collectable":4.4,"state_tax_rate":0.04,"state_taxable_amount":110.0,"tax_collectable":9.76,"taxable_amount":110.0},"freight_taxable":true,"has_nexus":true,"jurisdictions":{"city":"NEW
|
295
|
+
YORK CITY","country":"US","county":"QUEENS","state":"NY"},"order_total_amount":110.0,"rate":0.08875,"shipping":100.0,"tax_source":"destination","taxable_amount":110.0}}'
|
296
|
+
http_version:
|
297
|
+
recorded_at: Mon, 12 Dec 2022 19:26:06 GMT
|
298
|
+
- request:
|
299
|
+
method: post
|
300
|
+
uri: https://api.taxjar.com/v2/transactions/orders
|
301
|
+
body:
|
302
|
+
encoding: UTF-8
|
303
|
+
string: '{"customer_id":"1","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
304
|
+
Different Road","line_items":[{"id":1,"quantity":1,"product_identifier":"SKU-1","description":"Product
|
305
|
+
#1 - 374 - Master","product_tax_code":"TaxCode - 323668","unit_price":"10.0","discount":0,"sales_tax":"0.89"}],"transaction_id":"R762783050","transaction_date":"2022-12-11T19:26:06Z","amount":"110.0","shipping":"100.0","sales_tax":"9.77"}'
|
306
|
+
headers:
|
307
|
+
User-Agent:
|
308
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
309
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
310
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
311
|
+
Authorization:
|
312
|
+
- Bearer <BEARER_TOKEN>
|
313
|
+
X-Api-Version:
|
314
|
+
- '2020-08-07'
|
315
|
+
Plugin:
|
316
|
+
- supergoodsolidustaxjar
|
317
|
+
Connection:
|
318
|
+
- close
|
319
|
+
Content-Type:
|
320
|
+
- application/json; charset=UTF-8
|
321
|
+
Host:
|
322
|
+
- api.taxjar.com
|
323
|
+
response:
|
324
|
+
status:
|
325
|
+
code: 201
|
326
|
+
message: Created
|
327
|
+
headers:
|
328
|
+
Content-Type:
|
329
|
+
- application/json; charset=utf-8
|
330
|
+
Content-Length:
|
331
|
+
- '642'
|
332
|
+
Connection:
|
333
|
+
- close
|
334
|
+
Date:
|
335
|
+
- Mon, 12 Dec 2022 19:26:07 GMT
|
336
|
+
X-Amzn-Requestid:
|
337
|
+
- f6483d37-20f6-4e4e-a165-211778218cd2
|
338
|
+
X-Amzn-Remapped-Content-Length:
|
339
|
+
- '642'
|
340
|
+
X-Amzn-Remapped-Connection:
|
341
|
+
- keep-alive
|
342
|
+
X-Request-Id:
|
343
|
+
- FzAiSyTHjponrzLMUvOD
|
344
|
+
X-Api-Version:
|
345
|
+
- '2020-08-07'
|
346
|
+
X-Amz-Apigw-Id:
|
347
|
+
- dDD8gHJ2oAMFRnw=
|
348
|
+
Cache-Control:
|
349
|
+
- max-age=0, private, must-revalidate
|
350
|
+
X-Amzn-Remapped-Server:
|
351
|
+
- Cowboy
|
352
|
+
X-Amzn-Remapped-Date:
|
353
|
+
- Mon, 12 Dec 2022 19:26:07 GMT
|
354
|
+
X-Cache:
|
355
|
+
- Miss from cloudfront
|
356
|
+
Via:
|
357
|
+
- 1.1 d8d9c12d1a621129f4bc739038e7c72e.cloudfront.net (CloudFront)
|
358
|
+
X-Amz-Cf-Pop:
|
359
|
+
- SEA73-P2
|
360
|
+
X-Amz-Cf-Id:
|
361
|
+
- 7w3tTrnOLgrS4LCGd8fjfE0-wZyT8vR-uje5om4J3V5aVZ4jWd07dA==
|
362
|
+
body:
|
363
|
+
encoding: UTF-8
|
364
|
+
string: '{"order":{"user_id":225397,"transaction_reference_id":null,"transaction_id":"R762783050","transaction_date":"2022-12-11T19:26:06.000Z","to_zip":"11430","to_street":"A
|
365
|
+
Different Road","to_state":"NY","to_country":"US","to_city":"HERNDON","shipping":"100.0","sales_tax":"9.77","provider":"api","line_items":[{"unit_price":"10.0","sales_tax":"0.89","quantity":1,"product_tax_code":"TaxCode
|
366
|
+
- 323668","product_identifier":"SKU-1","id":0,"discount":"0.0","description":"Product
|
367
|
+
#1 - 374 - Master"}],"from_zip":null,"from_street":null,"from_state":null,"from_country":"US","from_city":null,"exemption_type":null,"customer_id":"1","amount":"110.0"}}'
|
368
|
+
http_version:
|
369
|
+
recorded_at: Mon, 12 Dec 2022 19:26:07 GMT
|
370
|
+
recorded_with: VCR 4.0.0
|