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.
Files changed (130) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +48 -6
  3. data/CHANGELOG.md +103 -1
  4. data/Gemfile +26 -10
  5. data/PULL_REQUEST_TEMPLATE.md +0 -1
  6. data/README.md +299 -39
  7. data/Rakefile +3 -0
  8. data/app/controllers/spree/admin/taxjar_settings_controller.rb +86 -1
  9. data/app/controllers/spree/admin/taxjar_transactions_controller.rb +37 -0
  10. data/app/controllers/spree/admin/transaction_sync_batches_controller.rb +18 -0
  11. data/app/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job.rb +23 -0
  12. data/app/jobs/super_good/solidus_taxjar/replace_transaction_job.rb +26 -0
  13. data/app/jobs/super_good/solidus_taxjar/report_transaction_job.rb +22 -0
  14. data/app/models/super_good/solidus_taxjar/configuration.rb +27 -0
  15. data/app/models/super_good/solidus_taxjar/order_transaction.rb +16 -0
  16. data/app/models/super_good/solidus_taxjar/refund_transaction.rb +13 -0
  17. data/app/models/super_good/solidus_taxjar/transaction_sync_batch.rb +11 -0
  18. data/app/models/super_good/solidus_taxjar/transaction_sync_log.rb +8 -0
  19. data/app/overrides/spree/admin/orders_controller_override.rb +12 -0
  20. data/app/overrides/spree/admin/shared/_order_submenu/add_taxjar_sync_history_tab.html.erb.deface +6 -0
  21. data/app/overrides/spree/admin/shared/_order_summary/add_taxjar_reported_at.html.erb.deface +30 -0
  22. data/app/overrides/spree/admin/shared/_taxes_tabs/add_configuration_menu_items.html.erb.deface +5 -0
  23. data/app/overrides/super_good/solidus_taxjar/spree/order_override.rb +21 -0
  24. data/app/views/spree/admin/orders/taxjar_transactions.html.erb +4 -0
  25. data/app/views/spree/admin/shared/_transaction_sync_log_table.html.erb +35 -0
  26. data/app/views/spree/admin/taxjar_settings/_nexus_regions.html.erb +23 -0
  27. data/app/views/spree/admin/taxjar_settings/_tax_categories.html.erb +41 -0
  28. data/app/views/spree/admin/taxjar_settings/edit.html.erb +17 -0
  29. data/app/views/spree/admin/taxjar_settings/edit_no_api_key.html.erb +21 -0
  30. data/app/views/spree/admin/transaction_sync_batches/index.html.erb +50 -0
  31. data/app/views/spree/admin/transaction_sync_batches/show.html.erb +7 -0
  32. data/bin/console +2 -0
  33. data/bin/rails-engine +1 -1
  34. data/bin/sandbox +43 -36
  35. data/bin/setup +3 -3
  36. data/config/routes.rb +13 -1
  37. data/db/migrate/20210908205201_create_taxjar_order_transactions.rb +16 -0
  38. data/db/migrate/20211008175113_create_taxjar_refund_transaction.rb +15 -0
  39. data/db/migrate/20211008183858_add_transaction_date_to_order_transaction.rb +5 -0
  40. data/db/migrate/20211119143354_create_configuration.rb +8 -0
  41. data/db/migrate/20220405213958_create_transaction_sync_batches.rb +7 -0
  42. data/db/migrate/20220405215225_create_transaction_sync_logs.rb +14 -0
  43. data/db/migrate/20220908181655_add_dates_to_transaction_sync_batch.rb +6 -0
  44. data/db/migrate/20220912182210_allow_null_transaction_sync_batches_on_logs.rb +5 -0
  45. data/db/migrate/20230320211309_add_refund_transaction_to_sync_logs.rb +5 -0
  46. data/lib/generators/super_good/solidus_taxjar/install/install_generator.rb +68 -0
  47. data/lib/super_good/solidus_taxjar/api.rb +41 -9
  48. data/lib/super_good/solidus_taxjar/api_params.rb +92 -25
  49. data/lib/super_good/solidus_taxjar/backfill_transactions.rb +11 -0
  50. data/lib/super_good/solidus_taxjar/cached_api.rb +23 -0
  51. data/lib/super_good/solidus_taxjar/calculator_helper.rb +33 -4
  52. data/lib/super_good/solidus_taxjar/discount_calculator.rb +1 -1
  53. data/lib/super_good/solidus_taxjar/overrides/request_override.rb +15 -0
  54. data/lib/super_good/solidus_taxjar/reportable.rb +91 -0
  55. data/lib/super_good/solidus_taxjar/reporting.rb +44 -0
  56. data/lib/super_good/solidus_taxjar/spree/legacy_reporting_subscriber.rb +41 -0
  57. data/lib/super_good/solidus_taxjar/spree/reporting_subscriber.rb +40 -0
  58. data/lib/super_good/solidus_taxjar/tax_calculator.rb +7 -1
  59. data/lib/super_good/solidus_taxjar/testing_support/factories/address_factory.rb +11 -0
  60. data/lib/super_good/solidus_taxjar/testing_support/factories/configuration_factory.rb +11 -0
  61. data/lib/super_good/solidus_taxjar/testing_support/factories/order_transaction_factory.rb +22 -0
  62. data/lib/super_good/solidus_taxjar/testing_support/factories/refund_transaction_factory.rb +7 -0
  63. data/lib/super_good/solidus_taxjar/testing_support/factories/transaction_sync_batch_factory.rb +9 -0
  64. data/lib/super_good/solidus_taxjar/testing_support/factories/transaction_sync_log_factory.rb +18 -0
  65. data/lib/super_good/solidus_taxjar/transaction_id_generator.rb +45 -0
  66. data/lib/super_good/solidus_taxjar/version.rb +1 -1
  67. data/lib/super_good/solidus_taxjar.rb +29 -2
  68. data/spec/features/spree/admin/backfill_transactions_spec.rb +138 -0
  69. data/spec/features/spree/admin/refund_spec.rb +167 -0
  70. data/spec/features/spree/admin/reporting_to_taxjar_spec.rb +156 -0
  71. data/spec/features/spree/admin/taxjar_settings_spec.rb +58 -16
  72. data/spec/features/spree/checkout_spec.rb +58 -0
  73. 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
  74. 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
  75. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_is_set/shows_the_settings_page.yml +2437 -0
  76. 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
  77. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/shows_a_descriptive_error_message.yml +57 -0
  78. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_reporting_is_enabled/shows_that_reporting_is_enabled.yml +2382 -0
  79. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/order_is_shipped/the_user_backfills_their_transactions.yml +2511 -0
  80. data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/the_user_navigates_to_the_TaxJar_Settings.yml +2382 -0
  81. data/spec/fixtures/cassettes/Admin_Transaction_Sync_Batches/user_has_a_shipped_order/starts_a_transaction_backfill.yml +370 -0
  82. data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/shipping_a_complete_and_paid_order.yml +310 -0
  83. 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
  84. data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/with_an_order_with_invalid_zipcode/retry_of_a_previously_failed_transaction_sync.yml +418 -0
  85. data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_batch.yml +250 -0
  86. data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_log_in_the_batch_with_an_order.yml +250 -0
  87. data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/creates_a_batch.yml +250 -0
  88. 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
  89. 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
  90. 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
  91. 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
  92. data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/raises_an_error.yml +393 -0
  93. data/spec/fixtures/cassettes/Taxjar_API_Request/logging_is_disabled/doesn_t_call_the_logger.yml +158 -0
  94. data/spec/fixtures/cassettes/Taxjar_API_Request/logging_is_enabled/calls_the_logger.yml +158 -0
  95. data/spec/fixtures/cassettes/features/spree/admin/checkout.yml +238 -0
  96. data/spec/fixtures/cassettes/features/spree/admin/refund.yml +1162 -0
  97. data/spec/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job_spec.rb +117 -0
  98. data/spec/jobs/super_good/solidus_taxjar/replace_transaction_job_spec.rb +95 -0
  99. data/spec/jobs/super_good/solidus_taxjar/report_transaction_job_spec.rb +76 -0
  100. data/spec/models/super_good/solidus_taxjar/configuration_spec.rb +79 -0
  101. data/spec/models/super_good/solidus_taxjar/order_transaction_spec.rb +36 -0
  102. data/spec/models/super_good/solidus_taxjar/transaction_sync_batch_spec.rb +48 -0
  103. data/spec/requests/spree/admin/order_request_spec.rb +121 -0
  104. data/spec/requests/spree/admin/taxjar_settings_request_spec.rb +198 -0
  105. data/spec/requests/spree/admin/taxjar_transactions_request_spec.rb +62 -0
  106. data/spec/requests/spree/admin/transaction_sync_batches_request_spec.rb +82 -0
  107. data/spec/spec_helper.rb +46 -3
  108. data/spec/subscribers/super_good/solidus_taxjar/spree/reporting_subscriber_spec.rb +278 -0
  109. data/spec/super_good/solidus_taxjar/addresses_spec.rb +0 -14
  110. data/spec/super_good/solidus_taxjar/api_params_spec.rb +261 -89
  111. data/spec/super_good/solidus_taxjar/api_spec.rb +152 -29
  112. data/spec/super_good/solidus_taxjar/backfill_transactions_spec.rb +24 -0
  113. data/spec/super_good/solidus_taxjar/cached_api_spec.rb +58 -0
  114. data/spec/super_good/solidus_taxjar/calculator_helper_spec.rb +131 -0
  115. data/spec/super_good/solidus_taxjar/discount_calculator_spec.rb +19 -2
  116. data/spec/super_good/solidus_taxjar/reportable_spec.rb +194 -0
  117. data/spec/super_good/solidus_taxjar/reporting_spec.rb +243 -0
  118. data/spec/super_good/solidus_taxjar/tax_calculator_spec.rb +19 -19
  119. data/spec/super_good/solidus_taxjar/tax_rate_calculator_spec.rb +8 -3
  120. data/spec/super_good/solidus_taxjar/transaction_id_generator_spec.rb +77 -0
  121. data/spec/super_good/solidus_taxjar_spec.rb +84 -0
  122. data/spec/support/checkoutable_store_shared_context.rb +19 -0
  123. data/spec/support/solidus_events_helper.rb +26 -0
  124. data/spec/taxjar/api/request_spec.rb +52 -0
  125. data/super_good-solidus_taxjar.gemspec +3 -2
  126. metadata +169 -17
  127. data/app/decorators/super_good/solidus_taxjar/spree/order_updater/fire_recalculated_event.rb +0 -18
  128. data/app/overrides/spree/admin/shared/_configuration_menu.rb +0 -11
  129. data/app/views/spree/admin/taxjar_settings/show.html.erb +0 -13
  130. data/spec/models/spree/order_updater_spec.rb +0 -12
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: super_good-solidus_taxjar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared Norman
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-07-08 00:00:00.000000000 Z
11
+ date: 2024-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: deface
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '1'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: solidus_core
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -30,14 +44,14 @@ dependencies:
30
44
  requirements:
31
45
  - - ">="
32
46
  - !ruby/object:Gem::Version
33
- version: '0'
47
+ version: 0.9.0
34
48
  type: :runtime
35
49
  prerelease: false
36
50
  version_requirements: !ruby/object:Gem::Requirement
37
51
  requirements:
38
52
  - - ">="
39
53
  - !ruby/object:Gem::Version
40
- version: '0'
54
+ version: 0.9.0
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: taxjar-ruby
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -84,16 +98,16 @@ dependencies:
84
98
  name: rake
85
99
  requirement: !ruby/object:Gem::Requirement
86
100
  requirements:
87
- - - "~>"
101
+ - - ">="
88
102
  - !ruby/object:Gem::Version
89
- version: '10.0'
103
+ version: '0'
90
104
  type: :development
91
105
  prerelease: false
92
106
  version_requirements: !ruby/object:Gem::Requirement
93
107
  requirements:
94
- - - "~>"
108
+ - - ">="
95
109
  - !ruby/object:Gem::Version
96
- version: '10.0'
110
+ version: '0'
97
111
  - !ruby/object:Gem::Dependency
98
112
  name: rspec
99
113
  requirement: !ruby/object:Gem::Requirement
@@ -169,9 +183,29 @@ files:
169
183
  - README.md
170
184
  - Rakefile
171
185
  - app/controllers/spree/admin/taxjar_settings_controller.rb
172
- - app/decorators/super_good/solidus_taxjar/spree/order_updater/fire_recalculated_event.rb
173
- - app/overrides/spree/admin/shared/_configuration_menu.rb
174
- - app/views/spree/admin/taxjar_settings/show.html.erb
186
+ - app/controllers/spree/admin/taxjar_transactions_controller.rb
187
+ - app/controllers/spree/admin/transaction_sync_batches_controller.rb
188
+ - app/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job.rb
189
+ - app/jobs/super_good/solidus_taxjar/replace_transaction_job.rb
190
+ - app/jobs/super_good/solidus_taxjar/report_transaction_job.rb
191
+ - app/models/super_good/solidus_taxjar/configuration.rb
192
+ - app/models/super_good/solidus_taxjar/order_transaction.rb
193
+ - app/models/super_good/solidus_taxjar/refund_transaction.rb
194
+ - app/models/super_good/solidus_taxjar/transaction_sync_batch.rb
195
+ - app/models/super_good/solidus_taxjar/transaction_sync_log.rb
196
+ - app/overrides/spree/admin/orders_controller_override.rb
197
+ - app/overrides/spree/admin/shared/_order_submenu/add_taxjar_sync_history_tab.html.erb.deface
198
+ - app/overrides/spree/admin/shared/_order_summary/add_taxjar_reported_at.html.erb.deface
199
+ - app/overrides/spree/admin/shared/_taxes_tabs/add_configuration_menu_items.html.erb.deface
200
+ - app/overrides/super_good/solidus_taxjar/spree/order_override.rb
201
+ - app/views/spree/admin/orders/taxjar_transactions.html.erb
202
+ - app/views/spree/admin/shared/_transaction_sync_log_table.html.erb
203
+ - app/views/spree/admin/taxjar_settings/_nexus_regions.html.erb
204
+ - app/views/spree/admin/taxjar_settings/_tax_categories.html.erb
205
+ - app/views/spree/admin/taxjar_settings/edit.html.erb
206
+ - app/views/spree/admin/taxjar_settings/edit_no_api_key.html.erb
207
+ - app/views/spree/admin/transaction_sync_batches/index.html.erb
208
+ - app/views/spree/admin/transaction_sync_batches/show.html.erb
175
209
  - bin/console
176
210
  - bin/rails
177
211
  - bin/rails-engine
@@ -180,33 +214,104 @@ files:
180
214
  - bin/sandbox
181
215
  - bin/setup
182
216
  - config/routes.rb
217
+ - db/migrate/20210908205201_create_taxjar_order_transactions.rb
218
+ - db/migrate/20211008175113_create_taxjar_refund_transaction.rb
219
+ - db/migrate/20211008183858_add_transaction_date_to_order_transaction.rb
220
+ - db/migrate/20211119143354_create_configuration.rb
221
+ - db/migrate/20220405213958_create_transaction_sync_batches.rb
222
+ - db/migrate/20220405215225_create_transaction_sync_logs.rb
223
+ - db/migrate/20220908181655_add_dates_to_transaction_sync_batch.rb
224
+ - db/migrate/20220912182210_allow_null_transaction_sync_batches_on_logs.rb
225
+ - db/migrate/20230320211309_add_refund_transaction_to_sync_logs.rb
226
+ - lib/generators/super_good/solidus_taxjar/install/install_generator.rb
183
227
  - lib/super_good-solidus_taxjar.rb
184
228
  - lib/super_good/engine.rb
185
229
  - lib/super_good/solidus_taxjar.rb
186
230
  - lib/super_good/solidus_taxjar/addresses.rb
187
231
  - lib/super_good/solidus_taxjar/api.rb
188
232
  - lib/super_good/solidus_taxjar/api_params.rb
233
+ - lib/super_good/solidus_taxjar/backfill_transactions.rb
234
+ - lib/super_good/solidus_taxjar/cached_api.rb
189
235
  - lib/super_good/solidus_taxjar/calculator_helper.rb
190
236
  - lib/super_good/solidus_taxjar/discount_calculator.rb
237
+ - lib/super_good/solidus_taxjar/overrides/request_override.rb
238
+ - lib/super_good/solidus_taxjar/reportable.rb
239
+ - lib/super_good/solidus_taxjar/reporting.rb
240
+ - lib/super_good/solidus_taxjar/spree/legacy_reporting_subscriber.rb
241
+ - lib/super_good/solidus_taxjar/spree/reporting_subscriber.rb
191
242
  - lib/super_good/solidus_taxjar/tax_calculator.rb
192
243
  - lib/super_good/solidus_taxjar/tax_rate_calculator.rb
244
+ - lib/super_good/solidus_taxjar/testing_support/factories/address_factory.rb
245
+ - lib/super_good/solidus_taxjar/testing_support/factories/configuration_factory.rb
246
+ - lib/super_good/solidus_taxjar/testing_support/factories/order_transaction_factory.rb
247
+ - lib/super_good/solidus_taxjar/testing_support/factories/refund_transaction_factory.rb
248
+ - lib/super_good/solidus_taxjar/testing_support/factories/transaction_sync_batch_factory.rb
249
+ - lib/super_good/solidus_taxjar/testing_support/factories/transaction_sync_log_factory.rb
250
+ - lib/super_good/solidus_taxjar/transaction_id_generator.rb
193
251
  - lib/super_good/solidus_taxjar/version.rb
252
+ - spec/features/spree/admin/backfill_transactions_spec.rb
253
+ - spec/features/spree/admin/refund_spec.rb
254
+ - spec/features/spree/admin/reporting_to_taxjar_spec.rb
194
255
  - spec/features/spree/admin/taxjar_settings_spec.rb
195
- - spec/models/spree/order_updater_spec.rb
256
+ - spec/features/spree/checkout_spec.rb
257
+ - 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
258
+ - 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
259
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_is_set/shows_the_settings_page.yml
260
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/doesn_t_show_any_other_TaxJar_features.yml
261
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/shows_a_descriptive_error_message.yml
262
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_reporting_is_enabled/shows_that_reporting_is_enabled.yml
263
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/order_is_shipped/the_user_backfills_their_transactions.yml
264
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/the_user_navigates_to_the_TaxJar_Settings.yml
265
+ - spec/fixtures/cassettes/Admin_Transaction_Sync_Batches/user_has_a_shipped_order/starts_a_transaction_backfill.yml
266
+ - spec/fixtures/cassettes/Reporting_orders_to_TaxJar/shipping_a_complete_and_paid_order.yml
267
+ - 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
268
+ - spec/fixtures/cassettes/Reporting_orders_to_TaxJar/with_an_order_with_invalid_zipcode/retry_of_a_previously_failed_transaction_sync.yml
269
+ - spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_batch.yml
270
+ - spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_log_in_the_batch_with_an_order.yml
271
+ - spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/creates_a_batch.yml
272
+ - spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/user_supplies_start_and_end_date/creates_a_batch.yml
273
+ - 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
274
+ - 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
275
+ - spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/doesn_t_create_a_new_transaction.yml
276
+ - spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/raises_an_error.yml
277
+ - spec/fixtures/cassettes/Taxjar_API_Request/logging_is_disabled/doesn_t_call_the_logger.yml
278
+ - spec/fixtures/cassettes/Taxjar_API_Request/logging_is_enabled/calls_the_logger.yml
279
+ - spec/fixtures/cassettes/features/spree/admin/checkout.yml
280
+ - spec/fixtures/cassettes/features/spree/admin/refund.yml
281
+ - spec/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job_spec.rb
282
+ - spec/jobs/super_good/solidus_taxjar/replace_transaction_job_spec.rb
283
+ - spec/jobs/super_good/solidus_taxjar/report_transaction_job_spec.rb
284
+ - spec/models/super_good/solidus_taxjar/configuration_spec.rb
285
+ - spec/models/super_good/solidus_taxjar/order_transaction_spec.rb
286
+ - spec/models/super_good/solidus_taxjar/transaction_sync_batch_spec.rb
287
+ - spec/requests/spree/admin/order_request_spec.rb
288
+ - spec/requests/spree/admin/taxjar_settings_request_spec.rb
289
+ - spec/requests/spree/admin/taxjar_transactions_request_spec.rb
290
+ - spec/requests/spree/admin/transaction_sync_batches_request_spec.rb
196
291
  - spec/spec_helper.rb
292
+ - spec/subscribers/super_good/solidus_taxjar/spree/reporting_subscriber_spec.rb
197
293
  - spec/super_good/solidus_taxjar/addresses_spec.rb
198
294
  - spec/super_good/solidus_taxjar/api_params_spec.rb
199
295
  - spec/super_good/solidus_taxjar/api_spec.rb
296
+ - spec/super_good/solidus_taxjar/backfill_transactions_spec.rb
297
+ - spec/super_good/solidus_taxjar/cached_api_spec.rb
298
+ - spec/super_good/solidus_taxjar/calculator_helper_spec.rb
200
299
  - spec/super_good/solidus_taxjar/discount_calculator_spec.rb
300
+ - spec/super_good/solidus_taxjar/reportable_spec.rb
301
+ - spec/super_good/solidus_taxjar/reporting_spec.rb
201
302
  - spec/super_good/solidus_taxjar/tax_calculator_spec.rb
202
303
  - spec/super_good/solidus_taxjar/tax_rate_calculator_spec.rb
304
+ - spec/super_good/solidus_taxjar/transaction_id_generator_spec.rb
203
305
  - spec/super_good/solidus_taxjar_spec.rb
306
+ - spec/support/checkoutable_store_shared_context.rb
307
+ - spec/support/solidus_events_helper.rb
308
+ - spec/taxjar/api/request_spec.rb
204
309
  - super_good-solidus_taxjar.gemspec
205
310
  homepage: https://github.com/SuperGoodSoft/solidus_taxjar
206
311
  licenses:
207
312
  - BSD-3-Clause
208
313
  metadata: {}
209
- post_install_message:
314
+ post_install_message:
210
315
  rdoc_options: []
211
316
  require_paths:
212
317
  - lib
@@ -221,18 +326,65 @@ required_rubygems_version: !ruby/object:Gem::Requirement
221
326
  - !ruby/object:Gem::Version
222
327
  version: '0'
223
328
  requirements: []
224
- rubygems_version: 3.1.6
225
- signing_key:
329
+ rubygems_version: 3.4.19
330
+ signing_key:
226
331
  specification_version: 4
227
332
  summary: Support for using TaxJar to handle tax calculations in Solidus
228
333
  test_files:
334
+ - spec/features/spree/admin/backfill_transactions_spec.rb
335
+ - spec/features/spree/admin/refund_spec.rb
336
+ - spec/features/spree/admin/reporting_to_taxjar_spec.rb
229
337
  - spec/features/spree/admin/taxjar_settings_spec.rb
230
- - spec/models/spree/order_updater_spec.rb
338
+ - spec/features/spree/checkout_spec.rb
339
+ - 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
340
+ - 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
341
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_is_set/shows_the_settings_page.yml
342
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/doesn_t_show_any_other_TaxJar_features.yml
343
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/shows_a_descriptive_error_message.yml
344
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_reporting_is_enabled/shows_that_reporting_is_enabled.yml
345
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/order_is_shipped/the_user_backfills_their_transactions.yml
346
+ - spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/the_user_navigates_to_the_TaxJar_Settings.yml
347
+ - spec/fixtures/cassettes/Admin_Transaction_Sync_Batches/user_has_a_shipped_order/starts_a_transaction_backfill.yml
348
+ - spec/fixtures/cassettes/Reporting_orders_to_TaxJar/shipping_a_complete_and_paid_order.yml
349
+ - 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
350
+ - spec/fixtures/cassettes/Reporting_orders_to_TaxJar/with_an_order_with_invalid_zipcode/retry_of_a_previously_failed_transaction_sync.yml
351
+ - spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_batch.yml
352
+ - spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_log_in_the_batch_with_an_order.yml
353
+ - spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/creates_a_batch.yml
354
+ - spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/user_supplies_start_and_end_date/creates_a_batch.yml
355
+ - 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
356
+ - 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
357
+ - spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/doesn_t_create_a_new_transaction.yml
358
+ - spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/raises_an_error.yml
359
+ - spec/fixtures/cassettes/Taxjar_API_Request/logging_is_disabled/doesn_t_call_the_logger.yml
360
+ - spec/fixtures/cassettes/Taxjar_API_Request/logging_is_enabled/calls_the_logger.yml
361
+ - spec/fixtures/cassettes/features/spree/admin/checkout.yml
362
+ - spec/fixtures/cassettes/features/spree/admin/refund.yml
363
+ - spec/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job_spec.rb
364
+ - spec/jobs/super_good/solidus_taxjar/replace_transaction_job_spec.rb
365
+ - spec/jobs/super_good/solidus_taxjar/report_transaction_job_spec.rb
366
+ - spec/models/super_good/solidus_taxjar/configuration_spec.rb
367
+ - spec/models/super_good/solidus_taxjar/order_transaction_spec.rb
368
+ - spec/models/super_good/solidus_taxjar/transaction_sync_batch_spec.rb
369
+ - spec/requests/spree/admin/order_request_spec.rb
370
+ - spec/requests/spree/admin/taxjar_settings_request_spec.rb
371
+ - spec/requests/spree/admin/taxjar_transactions_request_spec.rb
372
+ - spec/requests/spree/admin/transaction_sync_batches_request_spec.rb
231
373
  - spec/spec_helper.rb
374
+ - spec/subscribers/super_good/solidus_taxjar/spree/reporting_subscriber_spec.rb
232
375
  - spec/super_good/solidus_taxjar/addresses_spec.rb
233
376
  - spec/super_good/solidus_taxjar/api_params_spec.rb
234
377
  - spec/super_good/solidus_taxjar/api_spec.rb
378
+ - spec/super_good/solidus_taxjar/backfill_transactions_spec.rb
379
+ - spec/super_good/solidus_taxjar/cached_api_spec.rb
380
+ - spec/super_good/solidus_taxjar/calculator_helper_spec.rb
235
381
  - spec/super_good/solidus_taxjar/discount_calculator_spec.rb
382
+ - spec/super_good/solidus_taxjar/reportable_spec.rb
383
+ - spec/super_good/solidus_taxjar/reporting_spec.rb
236
384
  - spec/super_good/solidus_taxjar/tax_calculator_spec.rb
237
385
  - spec/super_good/solidus_taxjar/tax_rate_calculator_spec.rb
386
+ - spec/super_good/solidus_taxjar/transaction_id_generator_spec.rb
238
387
  - spec/super_good/solidus_taxjar_spec.rb
388
+ - spec/support/checkoutable_store_shared_context.rb
389
+ - spec/support/solidus_events_helper.rb
390
+ - spec/taxjar/api/request_spec.rb
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module SuperGood
4
- module SolidusTaxjar
5
- module Spree
6
- module OrderUpdater
7
- module FireRecalculatedEvent
8
- def persist_totals
9
- ::Spree::Event.fire 'order_recalculated', order: order
10
- super
11
- end
12
-
13
- ::Spree::OrderUpdater.prepend(self) if ::Spree.solidus_gem_version < Gem::Version.new('2.11.0')
14
- end
15
- end
16
- end
17
- end
18
- end
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- Deface::Override.new(
4
- virtual_path: 'spree/admin/shared/_taxes_tabs',
5
- name: 'add_taxjar_admin_menu_links',
6
- insert_bottom: "[data-hook='admin_settings_taxes_tabs']"
7
- ) do
8
- <<-HTML
9
- <%= configurations_sidebar_menu_item "TaxJar Settings", admin_taxjar_settings_path %>
10
- HTML
11
- end
@@ -1,13 +0,0 @@
1
- <%= render 'spree/admin/shared/taxes_tabs' %>
2
-
3
- <% content_for :page_title do %>
4
- <%= "Taxjar Settings" %>
5
- <% end %>
6
-
7
- <% if ENV["TAXJAR_API_KEY"] %>
8
- <table>
9
- </table>
10
- <% else %>
11
- <p>You must provide a TaxJar API token to use this extension. You can sign up for TaxJar <%= link_to "here", "https://app.taxjar.com/api_sign_up", target: "_blank", rel: "noreferrer" %>. Please see the extension documentation for details on providing this token to the extension.</p>
12
- <p><i>For more help in aquiring a TaxJar API token, see <%= link_to "How do I get a TaxJar sales tax API token?", "https://support.taxjar.com/article/160-how-do-i-get-a-sales-tax-api-token", target: "_blank", rel: "noreferrer" %></i></p>
13
- <% end %>
@@ -1,12 +0,0 @@
1
- RSpec.describe Spree::OrderUpdater do
2
- describe '#update' do
3
- it 'fires the order_recalculated event exactly once' do
4
- stub_const('Spree::Event', class_spy(Spree::Event))
5
- order = create(:order)
6
-
7
- described_class.new(order).update
8
-
9
- expect(Spree::Event).to have_received(:fire).with('order_recalculated', order: order).once
10
- end
11
- end
12
- end