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,250 @@
|
|
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:28:58 GMT
|
37
|
+
X-Amzn-Requestid:
|
38
|
+
- '089e76c4-cbe3-4c1c-929a-2a89c2cd34ec'
|
39
|
+
X-Amz-Apigw-Id:
|
40
|
+
- dDEXHFO1oAMFj8A=
|
41
|
+
X-Amzn-Trace-Id:
|
42
|
+
- Root=1-639780fa-763cc7a271eb00c93786957a
|
43
|
+
X-Cache:
|
44
|
+
- Miss from cloudfront
|
45
|
+
Via:
|
46
|
+
- 1.1 de8fc80b494d3d381f7e006918dcc588.cloudfront.net (CloudFront)
|
47
|
+
X-Amz-Cf-Pop:
|
48
|
+
- SEA73-P2
|
49
|
+
X-Amz-Cf-Id:
|
50
|
+
- SdbEeQquejV1qBcdT28aXdG_UZZ_2wYNXaAE9OYQxjahIfmcls39kw==
|
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:28:58 GMT
|
58
|
+
- request:
|
59
|
+
method: post
|
60
|
+
uri: https://api.taxjar.com/v2/taxes
|
61
|
+
body:
|
62
|
+
encoding: UTF-8
|
63
|
+
string: '{"customer_id":"4","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
64
|
+
Different Road","line_items":[{"id":4,"quantity":1,"unit_price":"10.0","discount":0,"product_tax_code":"TaxCode
|
65
|
+
- 640189"}],"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:28:58 GMT
|
96
|
+
X-Amzn-Requestid:
|
97
|
+
- d370acdc-767c-4f40-b4d2-35d3eeb67777
|
98
|
+
Access-Control-Allow-Origin:
|
99
|
+
- https://developers.taxjar.com
|
100
|
+
X-Amz-Apigw-Id:
|
101
|
+
- dDEXJHFnoAMFsow=
|
102
|
+
X-Amzn-Trace-Id:
|
103
|
+
- Root=1-639780fa-39e15fca42b145676d92559b
|
104
|
+
X-Cache:
|
105
|
+
- Miss from cloudfront
|
106
|
+
Via:
|
107
|
+
- 1.1 d1d67b07408bba8c682597d8303642e2.cloudfront.net (CloudFront)
|
108
|
+
X-Amz-Cf-Pop:
|
109
|
+
- SEA73-P2
|
110
|
+
X-Amz-Cf-Id:
|
111
|
+
- FfTK7DZe2yknyAeTLQw3K-xx2mfJXCCPpBG5QiAfhl2Wng8T5inTjQ==
|
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":"4","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:28:58 GMT
|
118
|
+
- request:
|
119
|
+
method: post
|
120
|
+
uri: https://api.taxjar.com/v2/taxes
|
121
|
+
body:
|
122
|
+
encoding: UTF-8
|
123
|
+
string: '{"customer_id":"4","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
124
|
+
Different Road","line_items":[{"id":4,"quantity":1,"unit_price":"10.0","discount":0,"product_tax_code":"TaxCode
|
125
|
+
- 640189"}],"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:28:58 GMT
|
156
|
+
X-Amzn-Requestid:
|
157
|
+
- bc9f097a-c848-4229-9b00-af7324d7343b
|
158
|
+
Access-Control-Allow-Origin:
|
159
|
+
- https://developers.taxjar.com
|
160
|
+
X-Amz-Apigw-Id:
|
161
|
+
- dDEXNFipoAMF3Pw=
|
162
|
+
X-Amzn-Trace-Id:
|
163
|
+
- Root=1-639780fa-5969f0ff55fc4ae743ca48a1
|
164
|
+
X-Cache:
|
165
|
+
- Miss from cloudfront
|
166
|
+
Via:
|
167
|
+
- 1.1 5abfab33f248090bb0f31ca137ce9464.cloudfront.net (CloudFront)
|
168
|
+
X-Amz-Cf-Pop:
|
169
|
+
- SEA73-P2
|
170
|
+
X-Amz-Cf-Id:
|
171
|
+
- DQgb7kXnVZgdcHV8Nb4Us8ixsGIGXyuMXBhjyntFSWoon2I0Tb0ECQ==
|
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":"4","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:28:58 GMT
|
178
|
+
- request:
|
179
|
+
method: post
|
180
|
+
uri: https://api.taxjar.com/v2/transactions/orders
|
181
|
+
body:
|
182
|
+
encoding: UTF-8
|
183
|
+
string: '{"customer_id":"4","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
184
|
+
Different Road","line_items":[{"id":4,"quantity":1,"product_identifier":"SKU-4","description":"Product
|
185
|
+
#4 - 9438 - Master","product_tax_code":"TaxCode - 640189","unit_price":"10.0","discount":0,"sales_tax":"0.89"}],"transaction_id":"R118708516","transaction_date":"2022-12-12T19:28:58Z","amount":"110.0","shipping":"100.0","sales_tax":"9.77"}'
|
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: 201
|
206
|
+
message: Created
|
207
|
+
headers:
|
208
|
+
Content-Type:
|
209
|
+
- application/json; charset=utf-8
|
210
|
+
Content-Length:
|
211
|
+
- '643'
|
212
|
+
Connection:
|
213
|
+
- close
|
214
|
+
Date:
|
215
|
+
- Mon, 12 Dec 2022 19:28:59 GMT
|
216
|
+
X-Amzn-Requestid:
|
217
|
+
- 79b4e997-8672-474a-8b36-df44490023cd
|
218
|
+
X-Amzn-Remapped-Content-Length:
|
219
|
+
- '643'
|
220
|
+
X-Amzn-Remapped-Connection:
|
221
|
+
- keep-alive
|
222
|
+
X-Request-Id:
|
223
|
+
- FzAicwfBsyqVtCA2ECbB
|
224
|
+
X-Api-Version:
|
225
|
+
- '2020-08-07'
|
226
|
+
X-Amz-Apigw-Id:
|
227
|
+
- dDEXRGxkIAMFsMQ=
|
228
|
+
Cache-Control:
|
229
|
+
- max-age=0, private, must-revalidate
|
230
|
+
X-Amzn-Remapped-Server:
|
231
|
+
- Cowboy
|
232
|
+
X-Amzn-Remapped-Date:
|
233
|
+
- Mon, 12 Dec 2022 19:28:59 GMT
|
234
|
+
X-Cache:
|
235
|
+
- Miss from cloudfront
|
236
|
+
Via:
|
237
|
+
- 1.1 ca66331b52971370c4e54619e8a952cc.cloudfront.net (CloudFront)
|
238
|
+
X-Amz-Cf-Pop:
|
239
|
+
- SEA73-P2
|
240
|
+
X-Amz-Cf-Id:
|
241
|
+
- EWovd8o6K0wDv-VzBNBRc-tiYaOUPFQn5UV7WZw55VwOrsHCzyJzVw==
|
242
|
+
body:
|
243
|
+
encoding: UTF-8
|
244
|
+
string: '{"order":{"user_id":225397,"transaction_reference_id":null,"transaction_id":"R118708516","transaction_date":"2022-12-12T19:28:58.000Z","to_zip":"11430","to_street":"A
|
245
|
+
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
|
246
|
+
- 640189","product_identifier":"SKU-4","id":0,"discount":"0.0","description":"Product
|
247
|
+
#4 - 9438 - Master"}],"from_zip":null,"from_street":null,"from_state":null,"from_country":"US","from_city":null,"exemption_type":null,"customer_id":"4","amount":"110.0"}}'
|
248
|
+
http_version:
|
249
|
+
recorded_at: Mon, 12 Dec 2022 19:28:59 GMT
|
250
|
+
recorded_with: VCR 4.0.0
|
@@ -0,0 +1,58 @@
|
|
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 poison-ivy 21.6.0 Darwin Kernel Version 21.6.0: Mon Aug
|
12
|
+
22 20:17:10 PDT 2022; root:xnu-8020.140.49~2/RELEASE_X86_64 x86_64; ruby 2.7.5-p203;
|
13
|
+
OpenSSL 1.1.1q 5 Jul 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
|
+
- Fri, 25 Nov 2022 22:33:55 GMT
|
37
|
+
X-Amzn-Requestid:
|
38
|
+
- 01d7c280-fb79-459f-893f-d0841867ff6a
|
39
|
+
X-Amz-Apigw-Id:
|
40
|
+
- cLdhEEGFoAMFakQ=
|
41
|
+
X-Amzn-Trace-Id:
|
42
|
+
- Root=1-638142d3-2db300264c2cd04518db2bd2
|
43
|
+
X-Cache:
|
44
|
+
- Miss from cloudfront
|
45
|
+
Via:
|
46
|
+
- 1.1 c4e77f714a7aade06aaed8bdc8b66fca.cloudfront.net (CloudFront)
|
47
|
+
X-Amz-Cf-Pop:
|
48
|
+
- YVR50-C1
|
49
|
+
X-Amz-Cf-Id:
|
50
|
+
- BAGrVXXisY-bdVIacjoy0A1WLKyIEm7-oJEqeM1dGrVWAGcJzr0lvQ==
|
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: Fri, 25 Nov 2022 22:33:55 GMT
|
58
|
+
recorded_with: VCR 4.0.0
|
@@ -0,0 +1,58 @@
|
|
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 poison-ivy 21.6.0 Darwin Kernel Version 21.6.0: Mon Aug
|
12
|
+
22 20:17:10 PDT 2022; root:xnu-8020.140.49~2/RELEASE_X86_64 x86_64; ruby 2.7.5-p203;
|
13
|
+
OpenSSL 1.1.1q 5 Jul 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
|
+
- Fri, 25 Nov 2022 22:33:55 GMT
|
37
|
+
X-Amzn-Requestid:
|
38
|
+
- 6665b53c-40c3-401a-8373-4203f0adb1cf
|
39
|
+
X-Amz-Apigw-Id:
|
40
|
+
- cLdhHEHhoAMF_ag=
|
41
|
+
X-Amzn-Trace-Id:
|
42
|
+
- Root=1-638142d3-13c376eb32cc65a057315a7f
|
43
|
+
X-Cache:
|
44
|
+
- Miss from cloudfront
|
45
|
+
Via:
|
46
|
+
- 1.1 bb568be725e8f0bfefe1fb7412e5804a.cloudfront.net (CloudFront)
|
47
|
+
X-Amz-Cf-Pop:
|
48
|
+
- YVR50-C1
|
49
|
+
X-Amz-Cf-Id:
|
50
|
+
- wPdG73shuV9FTpkClpRar3uJ6ZfF0qNkBqtmCKpdv--_fxPvk2smLA==
|
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: Fri, 25 Nov 2022 22:33:55 GMT
|
58
|
+
recorded_with: VCR 4.0.0
|