solidus_core_devise_token_auth 2.8.0.alpha.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +1 -0
- data/LICENSE +26 -0
- data/README.md +69 -0
- data/Rakefile +37 -0
- data/app/assets/config/solidus_core_manifest.js +1 -0
- data/app/assets/images/logo/solidus_logo.png +0 -0
- data/app/assets/images/noimage/large.png +0 -0
- data/app/assets/images/noimage/mini.png +0 -0
- data/app/assets/images/noimage/product.png +0 -0
- data/app/assets/images/noimage/small.png +0 -0
- data/app/assets/javascripts/spree.js.erb +72 -0
- data/app/controllers/spree/base_controller.rb +15 -0
- data/app/helpers/spree/base_helper.rb +160 -0
- data/app/helpers/spree/checkout_helper.rb +33 -0
- data/app/helpers/spree/products_helper.rb +74 -0
- data/app/helpers/spree/store_helper.rb +23 -0
- data/app/helpers/spree/taxons_helper.rb +22 -0
- data/app/jobs/spree/promotion_code_batch_job.rb +26 -0
- data/app/mailers/spree/base_mailer.rb +18 -0
- data/app/mailers/spree/carton_mailer.rb +29 -0
- data/app/mailers/spree/order_mailer.rb +36 -0
- data/app/mailers/spree/promotion_code_batch_mailer.rb +15 -0
- data/app/mailers/spree/reimbursement_mailer.rb +13 -0
- data/app/mailers/spree/test_mailer.rb +11 -0
- data/app/models/concerns/spree/adjustment_source.rb +27 -0
- data/app/models/concerns/spree/calculated_adjustments.rb +40 -0
- data/app/models/concerns/spree/default_price.rb +27 -0
- data/app/models/concerns/spree/display_money.rb +34 -0
- data/app/models/concerns/spree/named_type.rb +14 -0
- data/app/models/concerns/spree/ordered_property_value_list.rb +28 -0
- data/app/models/concerns/spree/ransackable_attributes.rb +22 -0
- data/app/models/concerns/spree/user_address_book.rb +149 -0
- data/app/models/concerns/spree/user_methods.rb +77 -0
- data/app/models/concerns/spree/user_payment_source.rb +26 -0
- data/app/models/concerns/spree/user_reporting.rb +24 -0
- data/app/models/spree/ability.rb +64 -0
- data/app/models/spree/address.rb +222 -0
- data/app/models/spree/adjustment.rb +168 -0
- data/app/models/spree/adjustment_reason.rb +12 -0
- data/app/models/spree/asset.rb +8 -0
- data/app/models/spree/base.rb +46 -0
- data/app/models/spree/billing_integration.rb +23 -0
- data/app/models/spree/calculator/default_tax.rb +60 -0
- data/app/models/spree/calculator/distributed_amount.rb +33 -0
- data/app/models/spree/calculator/flat_percent_item_total.rb +20 -0
- data/app/models/spree/calculator/flat_rate.rb +18 -0
- data/app/models/spree/calculator/flexi_rate.rb +27 -0
- data/app/models/spree/calculator/free_shipping.rb +21 -0
- data/app/models/spree/calculator/percent_on_line_item.rb +13 -0
- data/app/models/spree/calculator/percent_per_item.rb +49 -0
- data/app/models/spree/calculator/price_sack.rb +27 -0
- data/app/models/spree/calculator/returns/default_refund_amount.rb +34 -0
- data/app/models/spree/calculator/shipping/flat_percent_item_total.rb +21 -0
- data/app/models/spree/calculator/shipping/flat_rate.rb +17 -0
- data/app/models/spree/calculator/shipping/flexi_rate.rb +34 -0
- data/app/models/spree/calculator/shipping/per_item.rb +21 -0
- data/app/models/spree/calculator/shipping/price_sack.rb +27 -0
- data/app/models/spree/calculator/tiered_flat_rate.rb +52 -0
- data/app/models/spree/calculator/tiered_percent.rb +61 -0
- data/app/models/spree/calculator.rb +49 -0
- data/app/models/spree/carton.rb +59 -0
- data/app/models/spree/classification.rb +13 -0
- data/app/models/spree/country.rb +28 -0
- data/app/models/spree/credit_card.rb +197 -0
- data/app/models/spree/customer_return.rb +78 -0
- data/app/models/spree/distributed_amounts_handler.rb +43 -0
- data/app/models/spree/exchange.rb +45 -0
- data/app/models/spree/fulfilment_changer.rb +135 -0
- data/app/models/spree/gallery/product_gallery.rb +18 -0
- data/app/models/spree/gallery/variant_gallery.rb +18 -0
- data/app/models/spree/gateway/bogus.rb +13 -0
- data/app/models/spree/gateway/bogus_simple.rb +13 -0
- data/app/models/spree/gateway.rb +14 -0
- data/app/models/spree/image.rb +56 -0
- data/app/models/spree/inventory_unit.rb +159 -0
- data/app/models/spree/legacy_user.rb +26 -0
- data/app/models/spree/line_item.rb +206 -0
- data/app/models/spree/line_item_action.rb +8 -0
- data/app/models/spree/log_entry.rb +11 -0
- data/app/models/spree/option_type.rb +32 -0
- data/app/models/spree/option_value.rb +33 -0
- data/app/models/spree/option_values_variant.rb +8 -0
- data/app/models/spree/order/checkout.rb +243 -0
- data/app/models/spree/order/number_generator.rb +45 -0
- data/app/models/spree/order/payments.rb +55 -0
- data/app/models/spree/order.rb +914 -0
- data/app/models/spree/order_cancellations.rb +125 -0
- data/app/models/spree/order_capturing.rb +50 -0
- data/app/models/spree/order_contents.rb +126 -0
- data/app/models/spree/order_inventory.rb +115 -0
- data/app/models/spree/order_merger.rb +143 -0
- data/app/models/spree/order_mutex.rb +35 -0
- data/app/models/spree/order_promotion.rb +27 -0
- data/app/models/spree/order_shipping.rb +89 -0
- data/app/models/spree/order_taxation.rb +81 -0
- data/app/models/spree/order_update_attributes.rb +41 -0
- data/app/models/spree/order_updater.rb +271 -0
- data/app/models/spree/payment/cancellation.rb +62 -0
- data/app/models/spree/payment/processing.rb +225 -0
- data/app/models/spree/payment.rb +284 -0
- data/app/models/spree/payment_capture_event.rb +11 -0
- data/app/models/spree/payment_create.rb +93 -0
- data/app/models/spree/payment_method/bogus_credit_card.rb +90 -0
- data/app/models/spree/payment_method/check.rb +40 -0
- data/app/models/spree/payment_method/credit_card.rb +43 -0
- data/app/models/spree/payment_method/simple_bogus_credit_card.rb +26 -0
- data/app/models/spree/payment_method/store_credit.rb +122 -0
- data/app/models/spree/payment_method.rb +281 -0
- data/app/models/spree/payment_source.rb +47 -0
- data/app/models/spree/preference.rb +7 -0
- data/app/models/spree/price.rb +89 -0
- data/app/models/spree/product/scopes.rb +259 -0
- data/app/models/spree/product.rb +400 -0
- data/app/models/spree/product_option_type.rb +9 -0
- data/app/models/spree/product_promotion_rule.rb +8 -0
- data/app/models/spree/product_property.rb +14 -0
- data/app/models/spree/promotion/actions/create_adjustment.rb +80 -0
- data/app/models/spree/promotion/actions/create_item_adjustments.rb +102 -0
- data/app/models/spree/promotion/actions/create_quantity_adjustments.rb +142 -0
- data/app/models/spree/promotion/actions/free_shipping.rb +57 -0
- data/app/models/spree/promotion/rules/first_order.rb +40 -0
- data/app/models/spree/promotion/rules/first_repeat_purchase_since.rb +36 -0
- data/app/models/spree/promotion/rules/item_total.rb +45 -0
- data/app/models/spree/promotion/rules/nth_order.rb +45 -0
- data/app/models/spree/promotion/rules/one_use_per_user.rb +25 -0
- data/app/models/spree/promotion/rules/option_value.rb +50 -0
- data/app/models/spree/promotion/rules/product.rb +74 -0
- data/app/models/spree/promotion/rules/store.rb +22 -0
- data/app/models/spree/promotion/rules/taxon.rb +103 -0
- data/app/models/spree/promotion/rules/user.rb +30 -0
- data/app/models/spree/promotion/rules/user_logged_in.rb +20 -0
- data/app/models/spree/promotion/rules/user_role.rb +45 -0
- data/app/models/spree/promotion.rb +260 -0
- data/app/models/spree/promotion_action.rb +53 -0
- data/app/models/spree/promotion_category.rb +8 -0
- data/app/models/spree/promotion_chooser.rb +34 -0
- data/app/models/spree/promotion_code/batch_builder.rb +78 -0
- data/app/models/spree/promotion_code.rb +44 -0
- data/app/models/spree/promotion_code_batch.rb +27 -0
- data/app/models/spree/promotion_handler/cart.rb +55 -0
- data/app/models/spree/promotion_handler/coupon.rb +92 -0
- data/app/models/spree/promotion_handler/free_shipping.rb +9 -0
- data/app/models/spree/promotion_handler/page.rb +26 -0
- data/app/models/spree/promotion_handler/shipping.rb +61 -0
- data/app/models/spree/promotion_rule.rb +51 -0
- data/app/models/spree/promotion_rule_role.rb +8 -0
- data/app/models/spree/promotion_rule_store.rb +10 -0
- data/app/models/spree/promotion_rule_taxon.rb +8 -0
- data/app/models/spree/promotion_rule_user.rb +10 -0
- data/app/models/spree/property.rb +20 -0
- data/app/models/spree/refund.rb +90 -0
- data/app/models/spree/refund_reason.rb +15 -0
- data/app/models/spree/reimbursement/credit.rb +29 -0
- data/app/models/spree/reimbursement/reimbursement_type_engine.rb +56 -0
- data/app/models/spree/reimbursement/reimbursement_type_validator.rb +17 -0
- data/app/models/spree/reimbursement.rb +186 -0
- data/app/models/spree/reimbursement_performer.rb +40 -0
- data/app/models/spree/reimbursement_tax_calculator.rb +35 -0
- data/app/models/spree/reimbursement_type/credit.rb +15 -0
- data/app/models/spree/reimbursement_type/exchange.rb +11 -0
- data/app/models/spree/reimbursement_type/original_payment.rb +15 -0
- data/app/models/spree/reimbursement_type/reimbursement_helpers.rb +72 -0
- data/app/models/spree/reimbursement_type/store_credit.rb +29 -0
- data/app/models/spree/reimbursement_type.rb +18 -0
- data/app/models/spree/return_authorization.rb +90 -0
- data/app/models/spree/return_item/eligibility_validator/base_validator.rb +30 -0
- data/app/models/spree/return_item/eligibility_validator/default.rb +36 -0
- data/app/models/spree/return_item/eligibility_validator/inventory_shipped.rb +22 -0
- data/app/models/spree/return_item/eligibility_validator/no_reimbursements.rb +22 -0
- data/app/models/spree/return_item/eligibility_validator/order_completed.rb +22 -0
- data/app/models/spree/return_item/eligibility_validator/rma_required.rb +22 -0
- data/app/models/spree/return_item/eligibility_validator/time_since_purchase.rb +22 -0
- data/app/models/spree/return_item/exchange_variant_eligibility/same_option_value.rb +47 -0
- data/app/models/spree/return_item/exchange_variant_eligibility/same_product.rb +13 -0
- data/app/models/spree/return_item.rb +320 -0
- data/app/models/spree/return_reason.rb +14 -0
- data/app/models/spree/returns_calculator.rb +9 -0
- data/app/models/spree/role.rb +14 -0
- data/app/models/spree/role_user.rb +11 -0
- data/app/models/spree/shipment.rb +431 -0
- data/app/models/spree/shipping_calculator.rb +23 -0
- data/app/models/spree/shipping_category.rb +10 -0
- data/app/models/spree/shipping_manifest.rb +30 -0
- data/app/models/spree/shipping_method.rb +133 -0
- data/app/models/spree/shipping_method_category.rb +8 -0
- data/app/models/spree/shipping_method_stock_location.rb +6 -0
- data/app/models/spree/shipping_method_zone.rb +8 -0
- data/app/models/spree/shipping_rate.rb +48 -0
- data/app/models/spree/shipping_rate_tax.rb +39 -0
- data/app/models/spree/state.rb +40 -0
- data/app/models/spree/state_change.rb +17 -0
- data/app/models/spree/stock/availability.rb +72 -0
- data/app/models/spree/stock/availability_validator.rb +36 -0
- data/app/models/spree/stock/content_item.rb +50 -0
- data/app/models/spree/stock/differentiator.rb +47 -0
- data/app/models/spree/stock/estimator.rb +71 -0
- data/app/models/spree/stock/inventory_unit_builder.rb +23 -0
- data/app/models/spree/stock/inventory_validator.rb +16 -0
- data/app/models/spree/stock/location_sorter/base.rb +38 -0
- data/app/models/spree/stock/location_sorter/default_first.rb +15 -0
- data/app/models/spree/stock/location_sorter/unsorted.rb +14 -0
- data/app/models/spree/stock/package.rb +142 -0
- data/app/models/spree/stock/quantifier.rb +49 -0
- data/app/models/spree/stock/shipping_rate_selector.rb +17 -0
- data/app/models/spree/stock/shipping_rate_sorter.rb +17 -0
- data/app/models/spree/stock/simple_coordinator.rb +119 -0
- data/app/models/spree/stock/splitter/backordered.rb +23 -0
- data/app/models/spree/stock/splitter/base.rb +35 -0
- data/app/models/spree/stock/splitter/shipping_category.rb +35 -0
- data/app/models/spree/stock/splitter/weight.rb +32 -0
- data/app/models/spree/stock/splitter_chain.rb +34 -0
- data/app/models/spree/stock_item.rb +128 -0
- data/app/models/spree/stock_location.rb +127 -0
- data/app/models/spree/stock_movement.rb +28 -0
- data/app/models/spree/stock_quantities.rb +83 -0
- data/app/models/spree/store.rb +83 -0
- data/app/models/spree/store_credit.rb +293 -0
- data/app/models/spree/store_credit_category.rb +18 -0
- data/app/models/spree/store_credit_event.rb +66 -0
- data/app/models/spree/store_credit_type.rb +10 -0
- data/app/models/spree/store_credit_update_reason.rb +4 -0
- data/app/models/spree/store_payment_method.rb +8 -0
- data/app/models/spree/store_selector/by_server_name.rb +32 -0
- data/app/models/spree/store_selector/legacy.rb +50 -0
- data/app/models/spree/store_shipping_method.rb +8 -0
- data/app/models/spree/tax/item_tax.rb +22 -0
- data/app/models/spree/tax/order_adjuster.rb +22 -0
- data/app/models/spree/tax/order_tax.rb +20 -0
- data/app/models/spree/tax/shipping_rate_taxer.rb +24 -0
- data/app/models/spree/tax/tax_helpers.rb +17 -0
- data/app/models/spree/tax/tax_location.rb +39 -0
- data/app/models/spree/tax_calculator/default.rb +85 -0
- data/app/models/spree/tax_calculator/shipping_rate.rb +58 -0
- data/app/models/spree/tax_category.rb +30 -0
- data/app/models/spree/tax_rate.rb +147 -0
- data/app/models/spree/tax_rate_tax_category.rb +8 -0
- data/app/models/spree/taxon.rb +144 -0
- data/app/models/spree/taxonomy.rb +29 -0
- data/app/models/spree/unit_cancel.rb +36 -0
- data/app/models/spree/user_address.rb +23 -0
- data/app/models/spree/user_class_handle.rb +28 -0
- data/app/models/spree/user_stock_location.rb +8 -0
- data/app/models/spree/validations/db_maximum_length_validator.rb +23 -0
- data/app/models/spree/variant/price_selector.rb +37 -0
- data/app/models/spree/variant/pricing_options.rb +98 -0
- data/app/models/spree/variant/scopes.rb +42 -0
- data/app/models/spree/variant/vat_price_generator.rb +63 -0
- data/app/models/spree/variant.rb +465 -0
- data/app/models/spree/variant_property_rule.rb +44 -0
- data/app/models/spree/variant_property_rule_condition.rb +10 -0
- data/app/models/spree/variant_property_rule_value.rb +12 -0
- data/app/models/spree/wallet/add_payment_sources_to_wallet.rb +40 -0
- data/app/models/spree/wallet/default_payment_builder.rb +28 -0
- data/app/models/spree/wallet.rb +78 -0
- data/app/models/spree/wallet_payment_source.rb +19 -0
- data/app/models/spree/zone.rb +148 -0
- data/app/models/spree/zone_member.rb +10 -0
- data/app/views/layouts/spree/base_mailer.html.erb +784 -0
- data/app/views/spree/carton_mailer/shipped_email.html.erb +34 -0
- data/app/views/spree/carton_mailer/shipped_email.text.erb +16 -0
- data/app/views/spree/order_mailer/cancel_email.html.erb +45 -0
- data/app/views/spree/order_mailer/cancel_email.text.erb +16 -0
- data/app/views/spree/order_mailer/confirm_email.html.erb +84 -0
- data/app/views/spree/order_mailer/confirm_email.text.erb +38 -0
- data/app/views/spree/order_mailer/inventory_cancellation_email.html.erb +26 -0
- data/app/views/spree/order_mailer/inventory_cancellation_email.text.erb +10 -0
- data/app/views/spree/promotion_code_batch_mailer/promotion_code_batch_errored.text.erb +2 -0
- data/app/views/spree/promotion_code_batch_mailer/promotion_code_batch_finished.text.erb +2 -0
- data/app/views/spree/reimbursement_mailer/reimbursement_email.html.erb +39 -0
- data/app/views/spree/reimbursement_mailer/reimbursement_email.text.erb +17 -0
- data/app/views/spree/shared/_base_mailer_footer.html.erb +1 -0
- data/app/views/spree/shared/_base_mailer_header.html.erb +1 -0
- data/app/views/spree/shared/_error_messages.html.erb +11 -0
- data/app/views/spree/test_mailer/test_email.html.erb +40 -0
- data/app/views/spree/test_mailer/test_email.text.erb +4 -0
- data/config/initializers/assets.rb +5 -0
- data/config/initializers/friendly_id.rb +90 -0
- data/config/locales/en.yml +2107 -0
- data/db/default/spree/countries.rb +45 -0
- data/db/default/spree/refund_reasons.rb +3 -0
- data/db/default/spree/return_reasons.rb +11 -0
- data/db/default/spree/roles.rb +3 -0
- data/db/default/spree/shipping_categories.rb +3 -0
- data/db/default/spree/states.rb +14 -0
- data/db/default/spree/stock_locations.rb +4 -0
- data/db/default/spree/store_credit.rb +22 -0
- data/db/default/spree/stores.rb +10 -0
- data/db/default/spree/zones.rb +13 -0
- data/db/migrate/20160101010000_solidus_one_four.rb +1102 -0
- data/db/migrate/20160420044191_create_spree_wallet_payment_sources.rb +27 -0
- data/db/migrate/20160420181916_migrate_credit_cards_to_wallet_payment_sources.rb +29 -0
- data/db/migrate/20160924135758_remove_is_default_from_prices.rb +7 -0
- data/db/migrate/20161009141333_remove_currency_from_line_items.rb +7 -0
- data/db/migrate/20161014221052_add_available_to_columns_and_remove_display_on_from_payment_methods.rb +30 -0
- data/db/migrate/20161017102621_create_spree_promotion_code_batch.rb +38 -0
- data/db/migrate/20161123154034_add_available_to_users_and_remove_display_on_from_shipping_methods.rb +22 -0
- data/db/migrate/20161129035810_add_index_to_spree_payments_number.rb +7 -0
- data/db/migrate/20170223235001_remove_spree_store_credits_column.rb +7 -0
- data/db/migrate/20170317035819_add_lft_and_rgt_indexes_to_taxons.rb +8 -0
- data/db/migrate/20170319191942_remove_order_id_from_inventory_units.rb +30 -0
- data/db/migrate/20170412103617_transform_tax_rate_category_relation.rb +50 -0
- data/db/migrate/20170422134804_add_roles_unique_constraints.rb +8 -0
- data/db/migrate/20170522143442_add_time_range_to_tax_rate.rb +8 -0
- data/db/migrate/20170608074534_rename_bogus_gateways.rb +17 -0
- data/db/migrate/20170831201542_remove_default_tax_from_spree_zones.rb +7 -0
- data/db/migrate/20180202190713_create_promotion_rule_stores.rb +12 -0
- data/db/migrate/20180202222641_create_store_shipping_methods.rb +12 -0
- data/db/migrate/20180313220213_add_available_locales_to_stores.rb +9 -0
- data/db/migrate/20180322142651_add_amount_remaining_to_store_credit_events.rb +61 -0
- data/db/migrate/20180328172631_add_join_characters_to_promotion_code_batch.rb +11 -0
- data/db/seeds.rb +17 -0
- data/lib/generators/spree/custom_user/custom_user_generator.rb +43 -0
- data/lib/generators/spree/custom_user/templates/authentication_helpers.rb.tt +40 -0
- data/lib/generators/spree/custom_user/templates/migration.rb.tt +30 -0
- data/lib/generators/spree/dummy/dummy_generator.rb +148 -0
- data/lib/generators/spree/dummy/templates/rails/application.rb.tt +10 -0
- data/lib/generators/spree/dummy/templates/rails/boot.rb +6 -0
- data/lib/generators/spree/dummy/templates/rails/database.yml +71 -0
- data/lib/generators/spree/dummy/templates/rails/routes.rb +2 -0
- data/lib/generators/spree/dummy/templates/rails/script/rails +6 -0
- data/lib/generators/spree/dummy/templates/rails/test.rb +33 -0
- data/lib/generators/spree/install/install_generator.rb +189 -0
- data/lib/generators/spree/install/templates/config/initializers/spree.rb.tt +67 -0
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/backend/all.js +10 -0
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/frontend/all.js +10 -0
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/backend/all.css +9 -0
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/frontend/all.css +9 -0
- data/lib/solidus/migrations/rename_gateways.rb +39 -0
- data/lib/solidus_core.rb +3 -0
- data/lib/spree/app_configuration.rb +529 -0
- data/lib/spree/config.rb +5 -0
- data/lib/spree/core/active_merchant_dependencies.rb +13 -0
- data/lib/spree/core/class_constantizer.rb +33 -0
- data/lib/spree/core/controller_helpers/auth.rb +83 -0
- data/lib/spree/core/controller_helpers/common.rb +82 -0
- data/lib/spree/core/controller_helpers/order.rb +107 -0
- data/lib/spree/core/controller_helpers/payment_parameters.rb +221 -0
- data/lib/spree/core/controller_helpers/pricing.rb +30 -0
- data/lib/spree/core/controller_helpers/search.rb +16 -0
- data/lib/spree/core/controller_helpers/store.rb +19 -0
- data/lib/spree/core/controller_helpers/strong_parameters.rb +63 -0
- data/lib/spree/core/current_store.rb +24 -0
- data/lib/spree/core/engine.rb +61 -0
- data/lib/spree/core/environment/calculators.rb +18 -0
- data/lib/spree/core/environment.rb +22 -0
- data/lib/spree/core/environment_extension.rb +31 -0
- data/lib/spree/core/importer/order.rb +203 -0
- data/lib/spree/core/importer/product.rb +65 -0
- data/lib/spree/core/importer.rb +11 -0
- data/lib/spree/core/permalinks.rb +67 -0
- data/lib/spree/core/product_duplicator.rb +75 -0
- data/lib/spree/core/product_filters.rb +197 -0
- data/lib/spree/core/role_configuration.rb +88 -0
- data/lib/spree/core/search/base.rb +120 -0
- data/lib/spree/core/search/variant.rb +66 -0
- data/lib/spree/core/stock_configuration.rb +26 -0
- data/lib/spree/core/validators/email.rb +30 -0
- data/lib/spree/core/version.rb +11 -0
- data/lib/spree/core.rb +92 -0
- data/lib/spree/deprecation.rb +7 -0
- data/lib/spree/i18n.rb +35 -0
- data/lib/spree/localized_number.rb +30 -0
- data/lib/spree/mailer_previews/carton_preview.rb +13 -0
- data/lib/spree/mailer_previews/order_preview.rb +25 -0
- data/lib/spree/mailer_previews/reimbursement_preview.rb +13 -0
- data/lib/spree/migration_helpers.rb +21 -0
- data/lib/spree/migrations.rb +85 -0
- data/lib/spree/money.rb +133 -0
- data/lib/spree/paranoia_deprecations.rb +21 -0
- data/lib/spree/permission_sets/base.rb +32 -0
- data/lib/spree/permission_sets/configuration_display.rb +25 -0
- data/lib/spree/permission_sets/configuration_management.rb +25 -0
- data/lib/spree/permission_sets/dashboard_display.rb +11 -0
- data/lib/spree/permission_sets/default_customer.rb +37 -0
- data/lib/spree/permission_sets/order_display.rb +21 -0
- data/lib/spree/permission_sets/order_management.rb +22 -0
- data/lib/spree/permission_sets/product_display.rb +19 -0
- data/lib/spree/permission_sets/product_management.rb +21 -0
- data/lib/spree/permission_sets/promotion_display.rb +15 -0
- data/lib/spree/permission_sets/promotion_management.rb +14 -0
- data/lib/spree/permission_sets/restricted_stock_display.rb +18 -0
- data/lib/spree/permission_sets/restricted_stock_management.rb +18 -0
- data/lib/spree/permission_sets/stock_display.rb +12 -0
- data/lib/spree/permission_sets/stock_management.rb +12 -0
- data/lib/spree/permission_sets/super_user.rb +11 -0
- data/lib/spree/permission_sets/user_display.rb +13 -0
- data/lib/spree/permission_sets/user_management.rb +21 -0
- data/lib/spree/permission_sets.rb +20 -0
- data/lib/spree/permitted_attributes.rb +133 -0
- data/lib/spree/preferences/configuration.rb +107 -0
- data/lib/spree/preferences/preferable.rb +180 -0
- data/lib/spree/preferences/preferable_class_methods.rb +88 -0
- data/lib/spree/preferences/scoped_store.rb +36 -0
- data/lib/spree/preferences/static_model_preferences.rb +49 -0
- data/lib/spree/preferences/statically_configurable.rb +39 -0
- data/lib/spree/preferences/store.rb +91 -0
- data/lib/spree/promo/environment.rb +13 -0
- data/lib/spree/testing_support/ability_helpers.rb +107 -0
- data/lib/spree/testing_support/authorization_helpers.rb +69 -0
- data/lib/spree/testing_support/bar_ability.rb +19 -0
- data/lib/spree/testing_support/caching.rb +33 -0
- data/lib/spree/testing_support/capybara_ext.rb +147 -0
- data/lib/spree/testing_support/common_rake.rb +38 -0
- data/lib/spree/testing_support/controller_requests.rb +108 -0
- data/lib/spree/testing_support/dummy_app/assets/javascripts/spree/backend/all.js +10 -0
- data/lib/spree/testing_support/dummy_app/assets/javascripts/spree/frontend/all.js +10 -0
- data/lib/spree/testing_support/dummy_app/assets/stylesheets/spree/backend/all.css +9 -0
- data/lib/spree/testing_support/dummy_app/assets/stylesheets/spree/frontend/all.css +9 -0
- data/lib/spree/testing_support/dummy_app/database.yml +33 -0
- data/lib/spree/testing_support/dummy_app/migrations.rb +47 -0
- data/lib/spree/testing_support/dummy_app/rake_tasks.rb +67 -0
- data/lib/spree/testing_support/dummy_app/routes.rb +5 -0
- data/lib/spree/testing_support/dummy_app/views/layouts/application.html.erb +1 -0
- data/lib/spree/testing_support/dummy_app.rb +120 -0
- data/lib/spree/testing_support/extension_rake.rb +11 -0
- data/lib/spree/testing_support/factories/address_factory.rb +45 -0
- data/lib/spree/testing_support/factories/adjustment_factory.rb +45 -0
- data/lib/spree/testing_support/factories/adjustment_reason_factory.rb +8 -0
- data/lib/spree/testing_support/factories/calculator_factory.rb +26 -0
- data/lib/spree/testing_support/factories/carton_factory.rb +26 -0
- data/lib/spree/testing_support/factories/country_factory.rb +21 -0
- data/lib/spree/testing_support/factories/credit_card_factory.rb +17 -0
- data/lib/spree/testing_support/factories/customer_return_factory.rb +35 -0
- data/lib/spree/testing_support/factories/image_factory.rb +7 -0
- data/lib/spree/testing_support/factories/inventory_unit_factory.rb +26 -0
- data/lib/spree/testing_support/factories/line_item_factory.rb +18 -0
- data/lib/spree/testing_support/factories/option_type_factory.rb +8 -0
- data/lib/spree/testing_support/factories/option_value_factory.rb +10 -0
- data/lib/spree/testing_support/factories/order_factory.rb +160 -0
- data/lib/spree/testing_support/factories/order_promotion_factory.rb +11 -0
- data/lib/spree/testing_support/factories/payment_factory.rb +51 -0
- data/lib/spree/testing_support/factories/payment_method_factory.rb +32 -0
- data/lib/spree/testing_support/factories/price_factory.rb +11 -0
- data/lib/spree/testing_support/factories/product_factory.rb +50 -0
- data/lib/spree/testing_support/factories/product_option_type_factory.rb +11 -0
- data/lib/spree/testing_support/factories/product_property_factory.rb +11 -0
- data/lib/spree/testing_support/factories/promotion_category_factory.rb +7 -0
- data/lib/spree/testing_support/factories/promotion_code_factory.rb +11 -0
- data/lib/spree/testing_support/factories/promotion_factory.rb +64 -0
- data/lib/spree/testing_support/factories/property_factory.rb +8 -0
- data/lib/spree/testing_support/factories/refund_factory.rb +21 -0
- data/lib/spree/testing_support/factories/refund_reason_factory.rb +7 -0
- data/lib/spree/testing_support/factories/reimbursement_factory.rb +21 -0
- data/lib/spree/testing_support/factories/reimbursement_type_factory.rb +9 -0
- data/lib/spree/testing_support/factories/return_authorization_factory.rb +20 -0
- data/lib/spree/testing_support/factories/return_item_factory.rb +23 -0
- data/lib/spree/testing_support/factories/return_reason_factory.rb +7 -0
- data/lib/spree/testing_support/factories/role_factory.rb +11 -0
- data/lib/spree/testing_support/factories/shipment_factory.rb +37 -0
- data/lib/spree/testing_support/factories/shipping_category_factory.rb +7 -0
- data/lib/spree/testing_support/factories/shipping_method_factory.rb +42 -0
- data/lib/spree/testing_support/factories/shipping_rate_factory.rb +11 -0
- data/lib/spree/testing_support/factories/state_factory.rb +28 -0
- data/lib/spree/testing_support/factories/stock_item_factory.rb +14 -0
- data/lib/spree/testing_support/factories/stock_location_factory.rb +41 -0
- data/lib/spree/testing_support/factories/stock_movement_factory.rb +15 -0
- data/lib/spree/testing_support/factories/stock_package_factory.rb +28 -0
- data/lib/spree/testing_support/factories/store_credit_category_factory.rb +7 -0
- data/lib/spree/testing_support/factories/store_credit_event_factory.rb +30 -0
- data/lib/spree/testing_support/factories/store_credit_factory.rb +16 -0
- data/lib/spree/testing_support/factories/store_credit_type_factory.rb +13 -0
- data/lib/spree/testing_support/factories/store_credit_update_reason_factory.rb +7 -0
- data/lib/spree/testing_support/factories/store_factory.rb +10 -0
- data/lib/spree/testing_support/factories/tax_category_factory.rb +10 -0
- data/lib/spree/testing_support/factories/tax_rate_factory.rb +14 -0
- data/lib/spree/testing_support/factories/taxon_factory.rb +11 -0
- data/lib/spree/testing_support/factories/taxonomy_factory.rb +7 -0
- data/lib/spree/testing_support/factories/user_factory.rb +21 -0
- data/lib/spree/testing_support/factories/variant_factory.rb +43 -0
- data/lib/spree/testing_support/factories/variant_property_rule_condition_factory.rb +11 -0
- data/lib/spree/testing_support/factories/variant_property_rule_factory.rb +22 -0
- data/lib/spree/testing_support/factories/variant_property_rule_value_factory.rb +11 -0
- data/lib/spree/testing_support/factories/zone_factory.rb +24 -0
- data/lib/spree/testing_support/factories.rb +7 -0
- data/lib/spree/testing_support/flash.rb +29 -0
- data/lib/spree/testing_support/order_walkthrough.rb +87 -0
- data/lib/spree/testing_support/preferences.rb +34 -0
- data/lib/spree/testing_support/sequences.rb +8 -0
- data/lib/spree/testing_support/shared_examples/gallery.rb +18 -0
- data/lib/spree/testing_support/url_helpers.rb +11 -0
- data/lib/spree_core.rb +3 -0
- data/lib/tasks/core.rake +104 -0
- data/lib/tasks/email.rake +9 -0
- data/lib/tasks/migrations/copy_order_bill_address_to_credit_card.rake +115 -0
- data/lib/tasks/migrations/migrate_shipping_rate_taxes.rake +20 -0
- data/lib/tasks/migrations/migrate_user_addresses.rake +31 -0
- data/lib/tasks/migrations/rename_gateways.rake +21 -0
- data/lib/tasks/order_capturing.rake +25 -0
- data/script/rails +10 -0
- data/solidus_core.gemspec +48 -0
- data/spec/fixtures/thinking-cat.jpg +0 -0
- data/spec/helpers/base_helper_spec.rb +168 -0
- data/spec/helpers/products_helper_spec.rb +200 -0
- data/spec/helpers/taxons_helper_spec.rb +41 -0
- data/spec/jobs/promotion_code_batch_job_spec.rb +96 -0
- data/spec/lib/calculated_adjustments_spec.rb +133 -0
- data/spec/lib/i18n_spec.rb +92 -0
- data/spec/lib/search/base_spec.rb +87 -0
- data/spec/lib/search/variant_spec.rb +115 -0
- data/spec/lib/spree/core/class_constantizer_spec.rb +71 -0
- data/spec/lib/spree/core/controller_helpers/auth_spec.rb +69 -0
- data/spec/lib/spree/core/controller_helpers/order_spec.rb +126 -0
- data/spec/lib/spree/core/controller_helpers/payment_parameters_spec.rb +195 -0
- data/spec/lib/spree/core/controller_helpers/pricing_spec.rb +81 -0
- data/spec/lib/spree/core/controller_helpers/search_spec.rb +21 -0
- data/spec/lib/spree/core/controller_helpers/store_spec.rb +18 -0
- data/spec/lib/spree/core/controller_helpers/strong_parameters_spec.rb +41 -0
- data/spec/lib/spree/core/current_store_spec.rb +33 -0
- data/spec/lib/spree/core/environment_extension_spec.rb +36 -0
- data/spec/lib/spree/core/importer/order_spec.rb +484 -0
- data/spec/lib/spree/core/role_configuration_spec.rb +155 -0
- data/spec/lib/spree/core/stock_configuration_spec.rb +59 -0
- data/spec/lib/spree/core/testing_support/factories/address_factory_spec.rb +61 -0
- data/spec/lib/spree/core/testing_support/factories/adjustment_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/factories/adjustment_reason_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/calculator_factory_spec.rb +44 -0
- data/spec/lib/spree/core/testing_support/factories/carton_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/country_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/credit_card_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/customer_return_factory_spec.rb +39 -0
- data/spec/lib/spree/core/testing_support/factories/image_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/inventory_unit_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/line_item_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/option_type_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/option_value_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/order_factory_spec.rb +376 -0
- data/spec/lib/spree/core/testing_support/factories/order_promotion_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/payment_factory_spec.rb +40 -0
- data/spec/lib/spree/core/testing_support/factories/payment_method_factory_spec.rb +32 -0
- data/spec/lib/spree/core/testing_support/factories/price_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/product_factory_spec.rb +32 -0
- data/spec/lib/spree/core/testing_support/factories/product_option_type_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/product_property_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/promotion_category_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/promotion_code_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/promotion_factory_spec.rb +32 -0
- data/spec/lib/spree/core/testing_support/factories/property_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/refund_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/refund_reason_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/reimbursement_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/factories/reimbursement_type_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/return_authorization_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/return_item_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/factories/return_reason_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/role_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/factories/shipment_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/shipping_category_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/shipping_method_factory_spec.rb +44 -0
- data/spec/lib/spree/core/testing_support/factories/shipping_rate_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/state_factory_spec.rb +59 -0
- data/spec/lib/spree/core/testing_support/factories/stock_item_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/stock_location_factory_spec.rb +35 -0
- data/spec/lib/spree/core/testing_support/factories/stock_movement_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/stock_package_factory_spec.rb +28 -0
- data/spec/lib/spree/core/testing_support/factories/store_credit_category_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/store_credit_event_factory_spec.rb +43 -0
- data/spec/lib/spree/core/testing_support/factories/store_credit_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/store_credit_type_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/factories/store_credit_update_reason_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/store_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/tax_category_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/tax_rate_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/taxon_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/taxonomy_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/user_factory_spec.rb +24 -0
- data/spec/lib/spree/core/testing_support/factories/variant_factory_spec.rb +56 -0
- data/spec/lib/spree/core/testing_support/factories/variant_property_rule_condition_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/variant_property_rule_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/variant_property_rule_value_factory_spec.rb +14 -0
- data/spec/lib/spree/core/testing_support/factories/zone_factory_spec.rb +20 -0
- data/spec/lib/spree/core/testing_support/preferences_spec.rb +28 -0
- data/spec/lib/spree/core/validators/email_spec.rb +53 -0
- data/spec/lib/spree/core/version_spec.rb +19 -0
- data/spec/lib/spree/localized_number_spec.rb +45 -0
- data/spec/lib/spree/migrations_spec.rb +32 -0
- data/spec/lib/spree/money_spec.rb +305 -0
- data/spec/lib/spree/permission_sets/default_customer_spec.rb +22 -0
- data/spec/lib/tasks/dummy_task.rake +12 -0
- data/spec/lib/tasks/dummy_task_spec.rb +30 -0
- data/spec/lib/tasks/migrations/migrate_shipping_rate_taxes_spec.rb +19 -0
- data/spec/mailers/carton_mailer_spec.rb +44 -0
- data/spec/mailers/order_mailer_spec.rb +117 -0
- data/spec/mailers/promotion_code_batch_mailer_spec.rb +47 -0
- data/spec/mailers/reimbursement_mailer_spec.rb +36 -0
- data/spec/mailers/test_mailer_spec.rb +11 -0
- data/spec/models/spree/ability_spec.rb +279 -0
- data/spec/models/spree/address_spec.rb +375 -0
- data/spec/models/spree/adjustment_reason_spec.rb +11 -0
- data/spec/models/spree/adjustment_spec.rb +339 -0
- data/spec/models/spree/app_configuration_spec.rb +55 -0
- data/spec/models/spree/asset_spec.rb +25 -0
- data/spec/models/spree/calculator/default_tax_spec.rb +260 -0
- data/spec/models/spree/calculator/distributed_amount_spec.rb +82 -0
- data/spec/models/spree/calculator/flat_percent_item_total_spec.rb +30 -0
- data/spec/models/spree/calculator/flat_rate_spec.rb +52 -0
- data/spec/models/spree/calculator/flexi_rate_spec.rb +158 -0
- data/spec/models/spree/calculator/free_shipping_spec.rb +8 -0
- data/spec/models/spree/calculator/percent_on_line_item_spec.rb +20 -0
- data/spec/models/spree/calculator/percent_per_item_spec.rb +12 -0
- data/spec/models/spree/calculator/price_sack_spec.rb +35 -0
- data/spec/models/spree/calculator/refunds/default_refund_amount_spec.rb +70 -0
- data/spec/models/spree/calculator/shipping/flat_percent_item_total_spec.rb +39 -0
- data/spec/models/spree/calculator/shipping/flat_rate_spec.rb +18 -0
- data/spec/models/spree/calculator/shipping/flexi_rate_spec.rb +56 -0
- data/spec/models/spree/calculator/shipping/per_item_spec.rb +25 -0
- data/spec/models/spree/calculator/shipping/price_sack_spec.rb +35 -0
- data/spec/models/spree/calculator/tiered_flat_rate_spec.rb +99 -0
- data/spec/models/spree/calculator/tiered_percent_spec.rb +191 -0
- data/spec/models/spree/calculator_spec.rb +43 -0
- data/spec/models/spree/carton_spec.rb +137 -0
- data/spec/models/spree/classification_spec.rb +114 -0
- data/spec/models/spree/concerns/display_money_spec.rb +44 -0
- data/spec/models/spree/concerns/ordered_property_value_list_spec.rb +52 -0
- data/spec/models/spree/concerns/user_address_book_spec.rb +358 -0
- data/spec/models/spree/concerns/user_methods_spec.rb +121 -0
- data/spec/models/spree/country_spec.rb +78 -0
- data/spec/models/spree/credit_card_spec.rb +373 -0
- data/spec/models/spree/customer_return_spec.rb +293 -0
- data/spec/models/spree/distributed_amounts_handler_spec.rb +83 -0
- data/spec/models/spree/exchange_spec.rb +76 -0
- data/spec/models/spree/fulfilment_changer_spec.rb +307 -0
- data/spec/models/spree/gallery/product_gallery_spec.rb +21 -0
- data/spec/models/spree/gallery/variant_gallery_spec.rb +21 -0
- data/spec/models/spree/gateway/bogus_simple.rb +14 -0
- data/spec/models/spree/gateway/bogus_spec.rb +14 -0
- data/spec/models/spree/gateway_spec.rb +14 -0
- data/spec/models/spree/image_spec.rb +25 -0
- data/spec/models/spree/inventory_unit_spec.rb +312 -0
- data/spec/models/spree/line_item_spec.rb +240 -0
- data/spec/models/spree/option_type_spec.rb +16 -0
- data/spec/models/spree/option_value_spec.rb +52 -0
- data/spec/models/spree/order/address_spec.rb +52 -0
- data/spec/models/spree/order/adjustments_spec.rb +29 -0
- data/spec/models/spree/order/callbacks_spec.rb +44 -0
- data/spec/models/spree/order/checkout_spec.rb +744 -0
- data/spec/models/spree/order/finalizing_spec.rb +111 -0
- data/spec/models/spree/order/number_generator_spec.rb +47 -0
- data/spec/models/spree/order/outstanding_balance_integration_spec.rb +137 -0
- data/spec/models/spree/order/payment_spec.rb +280 -0
- data/spec/models/spree/order/risk_assessment_spec.rb +70 -0
- data/spec/models/spree/order/state_machine_spec.rb +122 -0
- data/spec/models/spree/order/totals_spec.rb +26 -0
- data/spec/models/spree/order/updating_spec.rb +18 -0
- data/spec/models/spree/order/validations_spec.rb +17 -0
- data/spec/models/spree/order_cancellations_spec.rb +192 -0
- data/spec/models/spree/order_capturing_spec.rb +16 -0
- data/spec/models/spree/order_contents_spec.rb +362 -0
- data/spec/models/spree/order_inventory_spec.rb +278 -0
- data/spec/models/spree/order_merger_spec.rb +159 -0
- data/spec/models/spree/order_mutex_spec.rb +89 -0
- data/spec/models/spree/order_promotion_spec.rb +33 -0
- data/spec/models/spree/order_shipping_spec.rb +247 -0
- data/spec/models/spree/order_spec.rb +1633 -0
- data/spec/models/spree/order_taxation_spec.rb +128 -0
- data/spec/models/spree/order_update_attributes_spec.rb +49 -0
- data/spec/models/spree/order_updater_spec.rb +560 -0
- data/spec/models/spree/payment/cancellation_spec.rb +83 -0
- data/spec/models/spree/payment_create_spec.rb +205 -0
- data/spec/models/spree/payment_method/bogus_credit_card_spec.rb +10 -0
- data/spec/models/spree/payment_method/check_spec.rb +80 -0
- data/spec/models/spree/payment_method/credit_card_spec.rb +68 -0
- data/spec/models/spree/payment_method/simple_bogus_credit_card_spec.rb +20 -0
- data/spec/models/spree/payment_method/store_credit_spec.rb +325 -0
- data/spec/models/spree/payment_method_spec.rb +408 -0
- data/spec/models/spree/payment_spec.rb +1274 -0
- data/spec/models/spree/permission_sets/base_spec.rb +14 -0
- data/spec/models/spree/permission_sets/configuration_display.rb +79 -0
- data/spec/models/spree/permission_sets/configuration_management_spec.rb +49 -0
- data/spec/models/spree/permission_sets/dashboard_display_spec.rb +23 -0
- data/spec/models/spree/permission_sets/order_display_spec.rb +56 -0
- data/spec/models/spree/permission_sets/order_management_spec.rb +43 -0
- data/spec/models/spree/permission_sets/product_display_spec.rb +57 -0
- data/spec/models/spree/permission_sets/product_management_spec.rb +39 -0
- data/spec/models/spree/permission_sets/promotion_display_spec.rb +41 -0
- data/spec/models/spree/permission_sets/promotion_management_spec.rb +27 -0
- data/spec/models/spree/permission_sets/restricted_stock_display_spec.rb +42 -0
- data/spec/models/spree/permission_sets/restricted_stock_management_spec.rb +42 -0
- data/spec/models/spree/permission_sets/stock_display_spec.rb +25 -0
- data/spec/models/spree/permission_sets/stock_management_spec.rb +23 -0
- data/spec/models/spree/permission_sets/user_display_spec.rb +39 -0
- data/spec/models/spree/permission_sets/user_management_spec.rb +56 -0
- data/spec/models/spree/preference_spec.rb +79 -0
- data/spec/models/spree/preferences/configuration_spec.rb +27 -0
- data/spec/models/spree/preferences/preferable_spec.rb +334 -0
- data/spec/models/spree/preferences/scoped_store_spec.rb +62 -0
- data/spec/models/spree/preferences/static_model_preferences_spec.rb +79 -0
- data/spec/models/spree/preferences/statically_configurable_spec.rb +67 -0
- data/spec/models/spree/preferences/store_spec.rb +40 -0
- data/spec/models/spree/price_spec.rb +150 -0
- data/spec/models/spree/product/scopes_spec.rb +164 -0
- data/spec/models/spree/product_duplicator_spec.rb +92 -0
- data/spec/models/spree/product_filter_spec.rb +28 -0
- data/spec/models/spree/product_property_spec.rb +20 -0
- data/spec/models/spree/product_spec.rb +584 -0
- data/spec/models/spree/promotion/actions/create_adjustment_spec.rb +126 -0
- data/spec/models/spree/promotion/actions/create_item_adjustments_spec.rb +198 -0
- data/spec/models/spree/promotion/actions/create_quantity_adjustments_spec.rb +298 -0
- data/spec/models/spree/promotion/actions/free_shipping_spec.rb +61 -0
- data/spec/models/spree/promotion/rules/first_order_spec.rb +77 -0
- data/spec/models/spree/promotion/rules/first_repeat_purchase_since_spec.rb +71 -0
- data/spec/models/spree/promotion/rules/item_total_spec.rb +113 -0
- data/spec/models/spree/promotion/rules/nth_order_spec.rb +72 -0
- data/spec/models/spree/promotion/rules/one_use_per_user_spec.rb +44 -0
- data/spec/models/spree/promotion/rules/option_value_spec.rb +96 -0
- data/spec/models/spree/promotion/rules/product_spec.rb +178 -0
- data/spec/models/spree/promotion/rules/store_spec.rb +35 -0
- data/spec/models/spree/promotion/rules/taxon_spec.rb +174 -0
- data/spec/models/spree/promotion/rules/user_logged_in_spec.rb +28 -0
- data/spec/models/spree/promotion/rules/user_role_spec.rb +88 -0
- data/spec/models/spree/promotion/rules/user_spec.rb +39 -0
- data/spec/models/spree/promotion_action_spec.rb +44 -0
- data/spec/models/spree/promotion_category_spec.rb +19 -0
- data/spec/models/spree/promotion_code/batch_builder_spec.rb +107 -0
- data/spec/models/spree/promotion_code_batch_spec.rb +54 -0
- data/spec/models/spree/promotion_code_spec.rb +206 -0
- data/spec/models/spree/promotion_handler/cart_spec.rb +132 -0
- data/spec/models/spree/promotion_handler/coupon_spec.rb +365 -0
- data/spec/models/spree/promotion_handler/page_spec.rb +45 -0
- data/spec/models/spree/promotion_handler/shipping_spec.rb +96 -0
- data/spec/models/spree/promotion_rule_spec.rb +34 -0
- data/spec/models/spree/promotion_spec.rb +834 -0
- data/spec/models/spree/refund_spec.rb +199 -0
- data/spec/models/spree/reimbursement/credit_spec.rb +38 -0
- data/spec/models/spree/reimbursement/reimbursement_type_engine_spec.rb +144 -0
- data/spec/models/spree/reimbursement/reimbursement_type_validator_spec.rb +85 -0
- data/spec/models/spree/reimbursement_performer_spec.rb +32 -0
- data/spec/models/spree/reimbursement_spec.rb +253 -0
- data/spec/models/spree/reimbursement_tax_calculator_spec.rb +52 -0
- data/spec/models/spree/reimbursement_type/credit_spec.rb +55 -0
- data/spec/models/spree/reimbursement_type/exchange_spec.rb +47 -0
- data/spec/models/spree/reimbursement_type/original_payment_spec.rb +109 -0
- data/spec/models/spree/reimbursement_type/store_credit_spec.rb +99 -0
- data/spec/models/spree/return_authorization_spec.rb +226 -0
- data/spec/models/spree/return_item/eligibility_validator/default_spec.rb +79 -0
- data/spec/models/spree/return_item/eligibility_validator/inventory_shipped_spec.rb +59 -0
- data/spec/models/spree/return_item/eligibility_validator/no_reimbursements_spec.rb +86 -0
- data/spec/models/spree/return_item/eligibility_validator/order_completed_spec.rb +35 -0
- data/spec/models/spree/return_item/eligibility_validator/rma_required_spec.rb +31 -0
- data/spec/models/spree/return_item/eligibility_validator/time_since_purchase_spec.rb +42 -0
- data/spec/models/spree/return_item/exchange_variant_eligibility/same_option_value_spec.rb +66 -0
- data/spec/models/spree/return_item/exchange_variant_eligibility/same_product_spec.rb +43 -0
- data/spec/models/spree/return_item_spec.rb +776 -0
- data/spec/models/spree/returns_calculator_spec.rb +16 -0
- data/spec/models/spree/shipment_spec.rb +907 -0
- data/spec/models/spree/shipping_calculator_spec.rb +57 -0
- data/spec/models/spree/shipping_manifest_spec.rb +110 -0
- data/spec/models/spree/shipping_method_spec.rb +260 -0
- data/spec/models/spree/shipping_rate_spec.rb +154 -0
- data/spec/models/spree/shipping_rate_tax_spec.rb +79 -0
- data/spec/models/spree/state_spec.rb +43 -0
- data/spec/models/spree/stock/availability_spec.rb +143 -0
- data/spec/models/spree/stock/availability_validator_spec.rb +140 -0
- data/spec/models/spree/stock/content_item_spec.rb +70 -0
- data/spec/models/spree/stock/differentiator_spec.rb +41 -0
- data/spec/models/spree/stock/estimator_spec.rb +240 -0
- data/spec/models/spree/stock/inventory_unit_builder_spec.rb +34 -0
- data/spec/models/spree/stock/location_sorter/default_first_spec.rb +20 -0
- data/spec/models/spree/stock/location_sorter/unsorted_spec.rb +19 -0
- data/spec/models/spree/stock/package_spec.rb +182 -0
- data/spec/models/spree/stock/quantifier_spec.rb +113 -0
- data/spec/models/spree/stock/shipping_rate_selector_spec.rb +18 -0
- data/spec/models/spree/stock/shipping_rate_sorter_spec.rb +18 -0
- data/spec/models/spree/stock/simple_coordinator_spec.rb +247 -0
- data/spec/models/spree/stock/splitter/backordered_spec.rb +31 -0
- data/spec/models/spree/stock/splitter/base_spec.rb +22 -0
- data/spec/models/spree/stock/splitter/shipping_category_spec.rb +48 -0
- data/spec/models/spree/stock/splitter/weight_spec.rb +31 -0
- data/spec/models/spree/stock/splitter_chain_spec.rb +66 -0
- data/spec/models/spree/stock_item_spec.rb +347 -0
- data/spec/models/spree/stock_location_spec.rb +288 -0
- data/spec/models/spree/stock_movement_spec.rb +58 -0
- data/spec/models/spree/stock_quantities_spec.rb +249 -0
- data/spec/models/spree/store_credit_category_spec.rb +19 -0
- data/spec/models/spree/store_credit_event_spec.rb +328 -0
- data/spec/models/spree/store_credit_spec.rb +900 -0
- data/spec/models/spree/store_selector/by_server_name_spec.rb +28 -0
- data/spec/models/spree/store_selector/legacy_spec.rb +46 -0
- data/spec/models/spree/store_spec.rb +156 -0
- data/spec/models/spree/tax/order_adjuster_spec.rb +35 -0
- data/spec/models/spree/tax/shipping_rate_taxer_spec.rb +59 -0
- data/spec/models/spree/tax/tax_location_spec.rb +79 -0
- data/spec/models/spree/tax/taxation_integration_spec.rb +815 -0
- data/spec/models/spree/tax_calculator/default_spec.rb +56 -0
- data/spec/models/spree/tax_category_spec.rb +29 -0
- data/spec/models/spree/tax_rate_spec.rb +316 -0
- data/spec/models/spree/taxon_spec.rb +169 -0
- data/spec/models/spree/taxonomy_spec.rb +15 -0
- data/spec/models/spree/unit_cancel_spec.rb +61 -0
- data/spec/models/spree/user_spec.rb +247 -0
- data/spec/models/spree/validations/db_maximum_length_validator_spec.rb +33 -0
- data/spec/models/spree/variant/price_selector_spec.rb +90 -0
- data/spec/models/spree/variant/pricing_options_spec.rb +181 -0
- data/spec/models/spree/variant/scopes_spec.rb +94 -0
- data/spec/models/spree/variant/vat_price_generator_spec.rb +77 -0
- data/spec/models/spree/variant_property_rule_condition_spec.rb +17 -0
- data/spec/models/spree/variant_property_rule_spec.rb +85 -0
- data/spec/models/spree/variant_property_rule_value_spec.rb +20 -0
- data/spec/models/spree/variant_spec.rb +822 -0
- data/spec/models/spree/wallet_payment_source_spec.rb +48 -0
- data/spec/models/spree/wallet_spec.rb +155 -0
- data/spec/models/spree/zone_spec.rb +248 -0
- data/spec/rails_helper.rb +45 -0
- data/spec/shared_examples/calculator_shared_examples.rb +10 -0
- data/spec/spec_helper.rb +39 -0
- data/spec/support/big_decimal.rb +7 -0
- data/spec/support/concerns/default_price.rb +36 -0
- data/spec/support/concerns/payment_source.rb +66 -0
- data/spec/support/concerns/working_factories.rb +15 -0
- data/spec/support/dummy_ability.rb +7 -0
- data/spec/support/shared_contexts/rake.rb +32 -0
- data/vendor/assets/javascripts/jquery.payment.js +648 -0
- data/vendor/assets/javascripts/jsuri.js +2 -0
- data/vendor/assets/stylesheets/normalize.css +375 -0
- metadata +1226 -0
@@ -0,0 +1,83 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spree
|
4
|
+
# A value object to hold a map of variants to their quantities
|
5
|
+
class StockQuantities
|
6
|
+
attr_reader :quantities
|
7
|
+
include Enumerable
|
8
|
+
|
9
|
+
# @param quantities [Hash<Spree::Variant=>Numeric>]
|
10
|
+
def initialize(quantities = {})
|
11
|
+
raise ArgumentError unless quantities.keys.all?{ |v| v.is_a?(Spree::Variant) }
|
12
|
+
raise ArgumentError unless quantities.values.all?{ |v| v.is_a?(Numeric) }
|
13
|
+
|
14
|
+
@quantities = quantities
|
15
|
+
end
|
16
|
+
|
17
|
+
# @yield [variant, quantity]
|
18
|
+
def each(&block)
|
19
|
+
@quantities.each(&block)
|
20
|
+
end
|
21
|
+
|
22
|
+
# @param variant [Spree::Variant]
|
23
|
+
# @return [Integer] the quantity of variant
|
24
|
+
def [](variant)
|
25
|
+
@quantities[variant]
|
26
|
+
end
|
27
|
+
|
28
|
+
# @return [Array<Spree::Variant>] the variants being tracked
|
29
|
+
def variants
|
30
|
+
@quantities.keys.uniq
|
31
|
+
end
|
32
|
+
|
33
|
+
# Adds two StockQuantities together
|
34
|
+
# @return [Spree::StockQuantities]
|
35
|
+
def +(other)
|
36
|
+
combine_with(other) do |_variant, a, b|
|
37
|
+
(a || 0) + (b || 0)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
# Subtracts another StockQuantities from this one
|
42
|
+
# @return [Spree::StockQuantities]
|
43
|
+
def -(other)
|
44
|
+
combine_with(other) do |_variant, a, b|
|
45
|
+
(a || 0) - (b || 0)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
# Finds the intersection or common subset of two StockQuantities: the
|
50
|
+
# stock which exists in both StockQuantities.
|
51
|
+
# @return [Spree::StockQuantities]
|
52
|
+
def &(other)
|
53
|
+
combine_with(other) do |_variant, a, b|
|
54
|
+
next unless a && b
|
55
|
+
[a, b].min
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
# A StockQuantities is empty if all variants have zero quantity
|
60
|
+
# @return [true,false]
|
61
|
+
def empty?
|
62
|
+
@quantities.values.all?(&:zero?)
|
63
|
+
end
|
64
|
+
|
65
|
+
def ==(other)
|
66
|
+
self.class == other.class &&
|
67
|
+
quantities == other.quantities
|
68
|
+
end
|
69
|
+
|
70
|
+
protected
|
71
|
+
|
72
|
+
def combine_with(other)
|
73
|
+
self.class.new(
|
74
|
+
(variants | other.variants).map do |variant|
|
75
|
+
a = self[variant]
|
76
|
+
b = other[variant]
|
77
|
+
value = yield variant, a, b
|
78
|
+
[variant, value]
|
79
|
+
end.to_h.compact
|
80
|
+
)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spree
|
4
|
+
# Records store specific configuration such as store name and URL.
|
5
|
+
#
|
6
|
+
# `Spree::Store` provides the foundational ActiveRecord model for recording information
|
7
|
+
# specific to your store such as its name, URL, and tax location. This model will
|
8
|
+
# provide the foundation upon which [support for multiple stores](https://github.com/solidusio/solidus/issues/112)
|
9
|
+
# hosted by a single Solidus implementation can be built.
|
10
|
+
#
|
11
|
+
class Store < Spree::Base
|
12
|
+
has_many :store_payment_methods, inverse_of: :store
|
13
|
+
has_many :payment_methods, through: :store_payment_methods
|
14
|
+
|
15
|
+
has_many :store_shipping_methods, inverse_of: :store
|
16
|
+
has_many :shipping_methods, through: :store_shipping_methods
|
17
|
+
|
18
|
+
has_many :orders, class_name: "Spree::Order"
|
19
|
+
|
20
|
+
validates :code, presence: true, uniqueness: { allow_blank: true }
|
21
|
+
validates :name, presence: true
|
22
|
+
validates :url, presence: true
|
23
|
+
validates :mail_from_address, presence: true
|
24
|
+
|
25
|
+
before_save :ensure_default_exists_and_is_unique
|
26
|
+
before_destroy :validate_not_default
|
27
|
+
|
28
|
+
scope :by_url, lambda { |url| where("url like ?", "%#{url}%") }
|
29
|
+
|
30
|
+
class << self
|
31
|
+
deprecate :by_url, "Spree::Store.by_url is DEPRECATED", deprecator: Spree::Deprecation
|
32
|
+
end
|
33
|
+
|
34
|
+
def available_locales
|
35
|
+
locales = super()
|
36
|
+
if locales
|
37
|
+
super().split(",").map(&:to_sym)
|
38
|
+
else
|
39
|
+
Spree.i18n_available_locales
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def available_locales=(locales)
|
44
|
+
locales = locales.reject(&:blank?)
|
45
|
+
if locales.empty?
|
46
|
+
super(nil)
|
47
|
+
else
|
48
|
+
super(locales.map(&:to_s).join(","))
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def self.current(store_key)
|
53
|
+
Spree::Deprecation.warn "Spree::Store.current is DEPRECATED"
|
54
|
+
current_store = Store.find_by(code: store_key) || Store.by_url(store_key).first if store_key
|
55
|
+
current_store || Store.default
|
56
|
+
end
|
57
|
+
|
58
|
+
def self.default
|
59
|
+
where(default: true).first || new
|
60
|
+
end
|
61
|
+
|
62
|
+
def default_cart_tax_location
|
63
|
+
@default_cart_tax_location ||=
|
64
|
+
Spree::Tax::TaxLocation.new(country: Spree::Country.find_by(iso: cart_tax_country_iso))
|
65
|
+
end
|
66
|
+
|
67
|
+
private
|
68
|
+
|
69
|
+
def ensure_default_exists_and_is_unique
|
70
|
+
if default
|
71
|
+
Spree::Store.where.not(id: id).update_all(default: false)
|
72
|
+
elsif Spree::Store.where(default: true).count == 0
|
73
|
+
self.default = true
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def validate_not_default
|
78
|
+
if default
|
79
|
+
errors.add(:base, :cannot_destroy_default_store)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,293 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'discard'
|
4
|
+
|
5
|
+
class Spree::StoreCredit < Spree::PaymentSource
|
6
|
+
acts_as_paranoid
|
7
|
+
include Spree::ParanoiaDeprecations
|
8
|
+
|
9
|
+
include Discard::Model
|
10
|
+
self.discard_column = :deleted_at
|
11
|
+
|
12
|
+
VOID_ACTION = 'void'
|
13
|
+
CREDIT_ACTION = 'credit'
|
14
|
+
CAPTURE_ACTION = 'capture'
|
15
|
+
ELIGIBLE_ACTION = 'eligible'
|
16
|
+
AUTHORIZE_ACTION = 'authorize'
|
17
|
+
ALLOCATION_ACTION = 'allocation'
|
18
|
+
ADJUSTMENT_ACTION = 'adjustment'
|
19
|
+
INVALIDATE_ACTION = 'invalidate'
|
20
|
+
|
21
|
+
DEFAULT_CREATED_BY_EMAIL = "spree@example.com"
|
22
|
+
|
23
|
+
belongs_to :user, class_name: Spree::UserClassHandle.new
|
24
|
+
belongs_to :created_by, class_name: Spree::UserClassHandle.new
|
25
|
+
belongs_to :category, class_name: "Spree::StoreCreditCategory"
|
26
|
+
belongs_to :credit_type, class_name: 'Spree::StoreCreditType', foreign_key: 'type_id'
|
27
|
+
has_many :store_credit_events
|
28
|
+
|
29
|
+
validates_presence_of :user_id, :category_id, :type_id, :created_by_id, :currency
|
30
|
+
validates_numericality_of :amount, { greater_than: 0 }
|
31
|
+
validates_numericality_of :amount_used, { greater_than_or_equal_to: 0 }
|
32
|
+
validate :amount_used_less_than_or_equal_to_amount
|
33
|
+
validate :amount_authorized_less_than_or_equal_to_amount
|
34
|
+
|
35
|
+
delegate :name, to: :category, prefix: true
|
36
|
+
delegate :email, to: :created_by, prefix: true
|
37
|
+
|
38
|
+
scope :order_by_priority, -> { includes(:credit_type).order('spree_store_credit_types.priority ASC') }
|
39
|
+
|
40
|
+
after_save :store_event
|
41
|
+
before_validation :associate_credit_type
|
42
|
+
before_validation :validate_category_unchanged, on: :update
|
43
|
+
before_destroy :validate_no_amount_used
|
44
|
+
validate :validate_no_amount_used, if: :discarded?
|
45
|
+
|
46
|
+
attr_accessor :action, :action_amount, :action_originator, :action_authorization_code, :update_reason
|
47
|
+
|
48
|
+
extend Spree::DisplayMoney
|
49
|
+
money_methods :amount, :amount_used, :amount_authorized
|
50
|
+
|
51
|
+
def amount_remaining
|
52
|
+
return 0.0.to_d if invalidated?
|
53
|
+
amount - amount_used - amount_authorized
|
54
|
+
end
|
55
|
+
|
56
|
+
def authorize(amount, order_currency, options = {})
|
57
|
+
authorization_code = options[:action_authorization_code]
|
58
|
+
if authorization_code
|
59
|
+
if store_credit_events.find_by(action: AUTHORIZE_ACTION, authorization_code: authorization_code)
|
60
|
+
# Don't authorize again on capture
|
61
|
+
return true
|
62
|
+
end
|
63
|
+
else
|
64
|
+
authorization_code = generate_authorization_code
|
65
|
+
end
|
66
|
+
|
67
|
+
if validate_authorization(amount, order_currency)
|
68
|
+
update_attributes!({
|
69
|
+
action: AUTHORIZE_ACTION,
|
70
|
+
action_amount: amount,
|
71
|
+
action_originator: options[:action_originator],
|
72
|
+
action_authorization_code: authorization_code,
|
73
|
+
|
74
|
+
amount_authorized: amount_authorized + amount
|
75
|
+
})
|
76
|
+
authorization_code
|
77
|
+
else
|
78
|
+
false
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
def validate_authorization(amount, order_currency)
|
83
|
+
if amount_remaining.to_d < amount.to_d
|
84
|
+
errors.add(:base, I18n.t('spree.store_credit.insufficient_funds'))
|
85
|
+
elsif currency != order_currency
|
86
|
+
errors.add(:base, I18n.t('spree.store_credit.currency_mismatch'))
|
87
|
+
end
|
88
|
+
errors.blank?
|
89
|
+
end
|
90
|
+
|
91
|
+
def capture(amount, authorization_code, order_currency, options = {})
|
92
|
+
return false unless authorize(amount, order_currency, action_authorization_code: authorization_code)
|
93
|
+
auth_event = store_credit_events.find_by!(action: AUTHORIZE_ACTION, authorization_code: authorization_code)
|
94
|
+
|
95
|
+
if amount <= auth_event.amount
|
96
|
+
if currency != order_currency
|
97
|
+
errors.add(:base, I18n.t('spree.store_credit.currency_mismatch'))
|
98
|
+
false
|
99
|
+
else
|
100
|
+
update_attributes!({
|
101
|
+
action: CAPTURE_ACTION,
|
102
|
+
action_amount: amount,
|
103
|
+
action_originator: options[:action_originator],
|
104
|
+
action_authorization_code: authorization_code,
|
105
|
+
|
106
|
+
amount_used: amount_used + amount,
|
107
|
+
amount_authorized: amount_authorized - auth_event.amount
|
108
|
+
})
|
109
|
+
authorization_code
|
110
|
+
end
|
111
|
+
else
|
112
|
+
errors.add(:base, I18n.t('spree.store_credit.insufficient_authorized_amount'))
|
113
|
+
false
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
def void(authorization_code, options = {})
|
118
|
+
if auth_event = store_credit_events.find_by(action: AUTHORIZE_ACTION, authorization_code: authorization_code)
|
119
|
+
update_attributes!({
|
120
|
+
action: VOID_ACTION,
|
121
|
+
action_amount: auth_event.amount,
|
122
|
+
action_authorization_code: authorization_code,
|
123
|
+
action_originator: options[:action_originator],
|
124
|
+
|
125
|
+
amount_authorized: amount_authorized - auth_event.amount
|
126
|
+
})
|
127
|
+
true
|
128
|
+
else
|
129
|
+
errors.add(:base, I18n.t('spree.store_credit.unable_to_void', auth_code: authorization_code))
|
130
|
+
false
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
def credit(amount, authorization_code, order_currency, options = {})
|
135
|
+
# Find the amount related to this authorization_code in order to add the store credit back
|
136
|
+
capture_event = store_credit_events.find_by(action: CAPTURE_ACTION, authorization_code: authorization_code)
|
137
|
+
|
138
|
+
if currency != order_currency # sanity check to make sure the order currency hasn't changed since the auth
|
139
|
+
errors.add(:base, I18n.t('spree.store_credit.currency_mismatch'))
|
140
|
+
false
|
141
|
+
elsif capture_event && amount <= capture_event.amount
|
142
|
+
action_attributes = {
|
143
|
+
action: CREDIT_ACTION,
|
144
|
+
action_amount: amount,
|
145
|
+
action_originator: options[:action_originator],
|
146
|
+
action_authorization_code: authorization_code
|
147
|
+
}
|
148
|
+
create_credit_record(amount, action_attributes)
|
149
|
+
true
|
150
|
+
else
|
151
|
+
errors.add(:base, I18n.t('spree.store_credit.unable_to_credit', auth_code: authorization_code))
|
152
|
+
false
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
def can_void?(payment)
|
157
|
+
payment.pending?
|
158
|
+
end
|
159
|
+
|
160
|
+
def generate_authorization_code
|
161
|
+
"#{id}-SC-#{Time.current.utc.strftime('%Y%m%d%H%M%S%6N')}"
|
162
|
+
end
|
163
|
+
|
164
|
+
def editable?
|
165
|
+
!amount_remaining.zero?
|
166
|
+
end
|
167
|
+
|
168
|
+
def invalidateable?
|
169
|
+
!invalidated? && amount_authorized.zero?
|
170
|
+
end
|
171
|
+
|
172
|
+
def invalidated?
|
173
|
+
!!invalidated_at
|
174
|
+
end
|
175
|
+
|
176
|
+
def update_amount(amount, reason, user_performing_update)
|
177
|
+
previous_amount = self.amount
|
178
|
+
self.amount = amount
|
179
|
+
self.action_amount = self.amount - previous_amount
|
180
|
+
self.action = ADJUSTMENT_ACTION
|
181
|
+
self.update_reason = reason
|
182
|
+
self.action_originator = user_performing_update
|
183
|
+
save
|
184
|
+
end
|
185
|
+
|
186
|
+
def invalidate(reason, user_performing_invalidation)
|
187
|
+
if invalidateable?
|
188
|
+
self.action = INVALIDATE_ACTION
|
189
|
+
self.update_reason = reason
|
190
|
+
self.action_originator = user_performing_invalidation
|
191
|
+
self.invalidated_at = Time.current
|
192
|
+
save
|
193
|
+
else
|
194
|
+
errors.add(:invalidated_at, I18n.t('spree.store_credit.errors.cannot_invalidate_uncaptured_authorization'))
|
195
|
+
false
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
class << self
|
200
|
+
def default_created_by
|
201
|
+
Spree.user_class.find_by(email: DEFAULT_CREATED_BY_EMAIL)
|
202
|
+
end
|
203
|
+
end
|
204
|
+
|
205
|
+
private
|
206
|
+
|
207
|
+
def create_credit_record(amount, action_attributes = {})
|
208
|
+
# Setting credit_to_new_allocation to true will create a new allocation anytime #credit is called
|
209
|
+
# If it is not set, it will update the store credit's amount in place
|
210
|
+
credit = if Spree::Config[:credit_to_new_allocation]
|
211
|
+
Spree::StoreCredit.new(create_credit_record_params(amount))
|
212
|
+
else
|
213
|
+
self.amount_used = amount_used - amount
|
214
|
+
self
|
215
|
+
end
|
216
|
+
|
217
|
+
credit.assign_attributes(action_attributes)
|
218
|
+
credit.save!
|
219
|
+
end
|
220
|
+
|
221
|
+
def create_credit_record_params(amount)
|
222
|
+
{
|
223
|
+
amount: amount,
|
224
|
+
user_id: user_id,
|
225
|
+
category_id: category_id,
|
226
|
+
created_by_id: created_by_id,
|
227
|
+
currency: currency,
|
228
|
+
type_id: type_id,
|
229
|
+
memo: credit_allocation_memo
|
230
|
+
}
|
231
|
+
end
|
232
|
+
|
233
|
+
def credit_allocation_memo
|
234
|
+
I18n.t("spree.store_credit.credit_allocation_memo", id: id)
|
235
|
+
end
|
236
|
+
|
237
|
+
def store_event
|
238
|
+
return unless saved_change_to_amount? || saved_change_to_amount_used? || saved_change_to_amount_authorized? || [ELIGIBLE_ACTION, INVALIDATE_ACTION].include?(action)
|
239
|
+
|
240
|
+
event = if action
|
241
|
+
store_credit_events.build(action: action)
|
242
|
+
else
|
243
|
+
store_credit_events.where(action: ALLOCATION_ACTION).first_or_initialize
|
244
|
+
end
|
245
|
+
|
246
|
+
event.update_attributes!({
|
247
|
+
amount: action_amount || amount,
|
248
|
+
authorization_code: action_authorization_code || event.authorization_code || generate_authorization_code,
|
249
|
+
amount_remaining: amount_remaining,
|
250
|
+
user_total_amount: user.available_store_credit_total(currency: currency),
|
251
|
+
originator: action_originator,
|
252
|
+
update_reason: update_reason
|
253
|
+
})
|
254
|
+
end
|
255
|
+
|
256
|
+
def amount_used_less_than_or_equal_to_amount
|
257
|
+
return true if amount_used.nil?
|
258
|
+
|
259
|
+
if amount_used > amount
|
260
|
+
errors.add(:amount_used, I18n.t('spree.admin.store_credits.errors.amount_used_cannot_be_greater'))
|
261
|
+
end
|
262
|
+
end
|
263
|
+
|
264
|
+
def amount_authorized_less_than_or_equal_to_amount
|
265
|
+
if (amount_used + amount_authorized) > amount
|
266
|
+
errors.add(:amount_authorized, I18n.t('spree.admin.store_credits.errors.amount_authorized_exceeds_total_credit'))
|
267
|
+
end
|
268
|
+
end
|
269
|
+
|
270
|
+
def validate_category_unchanged
|
271
|
+
if category_id_changed?
|
272
|
+
errors.add(:category, I18n.t('spree.admin.store_credits.errors.cannot_be_modified'))
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
276
|
+
def validate_no_amount_used
|
277
|
+
if amount_used > 0
|
278
|
+
errors.add(:amount_used, 'is greater than zero. Can not delete store credit')
|
279
|
+
end
|
280
|
+
end
|
281
|
+
|
282
|
+
def associate_credit_type
|
283
|
+
unless type_id
|
284
|
+
credit_type_name =
|
285
|
+
if category.try(:non_expiring?)
|
286
|
+
Spree::StoreCreditType::NON_EXPIRING
|
287
|
+
else
|
288
|
+
Spree::StoreCreditType::EXPIRING
|
289
|
+
end
|
290
|
+
self.credit_type = Spree::StoreCreditType.find_by(name: credit_type_name)
|
291
|
+
end
|
292
|
+
end
|
293
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
class Spree::StoreCreditCategory < Spree::Base
|
4
|
+
class_attribute :non_expiring_credit_types
|
5
|
+
self.non_expiring_credit_types = [Spree::StoreCreditType::NON_EXPIRING]
|
6
|
+
|
7
|
+
class_attribute :reimbursement_category_name
|
8
|
+
self.reimbursement_category_name = I18n.t('spree.store_credit_category.default')
|
9
|
+
|
10
|
+
def self.reimbursement_category(_reimbursement)
|
11
|
+
Spree::StoreCreditCategory.find_by(name: reimbursement_category_name) ||
|
12
|
+
Spree::StoreCreditCategory.first
|
13
|
+
end
|
14
|
+
|
15
|
+
def non_expiring?
|
16
|
+
self.class.non_expiring_credit_types.include? name
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'discard'
|
4
|
+
|
5
|
+
module Spree
|
6
|
+
class StoreCreditEvent < Spree::Base
|
7
|
+
acts_as_paranoid
|
8
|
+
include Spree::ParanoiaDeprecations
|
9
|
+
|
10
|
+
include Discard::Model
|
11
|
+
self.discard_column = :deleted_at
|
12
|
+
|
13
|
+
belongs_to :store_credit
|
14
|
+
belongs_to :originator, polymorphic: true
|
15
|
+
belongs_to :update_reason, class_name: "Spree::StoreCreditUpdateReason"
|
16
|
+
|
17
|
+
validates_presence_of :update_reason, if: :action_requires_reason?
|
18
|
+
|
19
|
+
NON_EXPOSED_ACTIONS = [Spree::StoreCredit::ELIGIBLE_ACTION, Spree::StoreCredit::AUTHORIZE_ACTION]
|
20
|
+
|
21
|
+
scope :exposed_events, -> { exposable_actions.not_invalidated }
|
22
|
+
scope :exposable_actions, -> { where.not(action: NON_EXPOSED_ACTIONS) }
|
23
|
+
scope :not_invalidated, -> { joins(:store_credit).where(spree_store_credits: { invalidated_at: nil }) }
|
24
|
+
scope :chronological, -> { order(:created_at) }
|
25
|
+
scope :reverse_chronological, -> { order(created_at: :desc) }
|
26
|
+
|
27
|
+
delegate :currency, to: :store_credit
|
28
|
+
|
29
|
+
def capture_action?
|
30
|
+
action == Spree::StoreCredit::CAPTURE_ACTION
|
31
|
+
end
|
32
|
+
|
33
|
+
def authorization_action?
|
34
|
+
action == Spree::StoreCredit::AUTHORIZE_ACTION
|
35
|
+
end
|
36
|
+
|
37
|
+
def action_requires_reason?
|
38
|
+
[Spree::StoreCredit::ADJUSTMENT_ACTION, Spree::StoreCredit::INVALIDATE_ACTION].include?(action)
|
39
|
+
end
|
40
|
+
|
41
|
+
def display_amount
|
42
|
+
Spree::Money.new(amount, { currency: currency })
|
43
|
+
end
|
44
|
+
|
45
|
+
def display_user_total_amount
|
46
|
+
Spree::Money.new(user_total_amount, { currency: currency })
|
47
|
+
end
|
48
|
+
|
49
|
+
def display_remaining_amount
|
50
|
+
Spree::Money.new(amount_remaining, { currency: currency })
|
51
|
+
end
|
52
|
+
|
53
|
+
def display_event_date
|
54
|
+
I18n.l(created_at.to_date, format: :long)
|
55
|
+
end
|
56
|
+
|
57
|
+
def display_action
|
58
|
+
return if NON_EXPOSED_ACTIONS.include?(action)
|
59
|
+
I18n.t("spree.store_credit.display_action.#{action}")
|
60
|
+
end
|
61
|
+
|
62
|
+
def order
|
63
|
+
Spree::Payment.find_by(response_code: authorization_code).try(:order)
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spree
|
4
|
+
class StoreCreditType < Spree::Base
|
5
|
+
EXPIRING = 'Expiring'
|
6
|
+
NON_EXPIRING = 'Non-expiring'
|
7
|
+
DEFAULT_TYPE_NAME = EXPIRING
|
8
|
+
has_many :store_credits, class_name: 'Spree::StoreCredit', foreign_key: 'type_id'
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Default implementation for finding the current store is given an HTTP request
|
4
|
+
#
|
5
|
+
# This is the new default behaviour, starting in Solidus 2.3.0. For the old
|
6
|
+
# behaviour see Spree::StoreSelector::Legacy.
|
7
|
+
#
|
8
|
+
# This attempts to find a Spree::Store with a URL matching the domain name of
|
9
|
+
# the request exactly. Failing that it will return the store marked as default.
|
10
|
+
module Spree
|
11
|
+
module StoreSelector
|
12
|
+
class ByServerName
|
13
|
+
def initialize(request)
|
14
|
+
@request = request
|
15
|
+
end
|
16
|
+
|
17
|
+
# Chooses the current store based on a request.
|
18
|
+
# @return [Spree::Store]
|
19
|
+
def store
|
20
|
+
server_name = @request.env['SERVER_NAME']
|
21
|
+
|
22
|
+
# We select a store which either matches our server name, or is default.
|
23
|
+
# We sort by `default ASC` so that a store matching SERVER_NAME will come
|
24
|
+
# first, and we will find that instead of the default.
|
25
|
+
store = Spree::Store.where(url: server_name).or(Store.where(default: true)).order(default: :asc).first
|
26
|
+
|
27
|
+
# Provide a fallback, mostly for legacy/testing purposes
|
28
|
+
store || Spree::Store.new
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This class provides the old behaviour for finding a matching Spree::Store
|
4
|
+
# based on a request.
|
5
|
+
#
|
6
|
+
# To enable this, somewhere inside config/initializers/ add
|
7
|
+
#
|
8
|
+
# Spree::Config.current_store_selector_class = Spree::StoreSelector::Legacy
|
9
|
+
#
|
10
|
+
# This classes behaviour is somewhat complicated and has issues, which is why
|
11
|
+
# it has been replaced with Spree::StoreSelector::ByServerName by default.
|
12
|
+
#
|
13
|
+
# It will:
|
14
|
+
# * Find a "store_key"
|
15
|
+
# * from the HTTP_SPREE_STORE header, if it exists
|
16
|
+
# * or the server's domain name if HTTP_SPREE_STORE isn't set
|
17
|
+
# * Find a store, using the first match of:
|
18
|
+
# * having a code matching the store_key exactly
|
19
|
+
# * having a url which contains the store_key anywhere as a substring
|
20
|
+
# * has default set to true
|
21
|
+
#
|
22
|
+
module Spree
|
23
|
+
module StoreSelector
|
24
|
+
class Legacy
|
25
|
+
def initialize(request)
|
26
|
+
@request = request
|
27
|
+
end
|
28
|
+
|
29
|
+
# Chooses the current store based on a request.
|
30
|
+
# Checks request headers for HTTP_SPREE_STORE and falls back to
|
31
|
+
# looking up by the requesting server's name.
|
32
|
+
# @return [Spree::Store]
|
33
|
+
def store
|
34
|
+
current_store =
|
35
|
+
if store_key
|
36
|
+
Spree::Store.find_by(code: store_key) ||
|
37
|
+
Store.where("url like ?", "%#{store_key}%").first
|
38
|
+
end
|
39
|
+
|
40
|
+
current_store || Spree::Store.default
|
41
|
+
end
|
42
|
+
|
43
|
+
private
|
44
|
+
|
45
|
+
def store_key
|
46
|
+
@request.headers['HTTP_SPREE_STORE'] || @request.env['SERVER_NAME']
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spree
|
4
|
+
module Tax
|
5
|
+
# Simple object used to hold tax data for an item.
|
6
|
+
#
|
7
|
+
# This generic object will hold the amount of tax that should be applied to
|
8
|
+
# an item. (Either a {Spree::LineItem} or a {Spree::Shipment}.)
|
9
|
+
#
|
10
|
+
# @attr_reader [Integer] item_id the {Spree::LineItem} or {Spree::Shipment} ID
|
11
|
+
# @attr_reader [String] label information about the taxes
|
12
|
+
# @attr_reader [Spree::TaxRate] tax_rate will be used as the source for tax
|
13
|
+
# adjustments
|
14
|
+
# @attr_reader [BigDecimal] amount the amount of tax applied to the item
|
15
|
+
# @attr_reader [Boolean] included_in_price whether the amount is included
|
16
|
+
# in the items price, or additional tax.
|
17
|
+
class ItemTax
|
18
|
+
include ActiveModel::Model
|
19
|
+
attr_accessor :item_id, :label, :tax_rate, :amount, :included_in_price
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|