spree_core 4.1.1 → 4.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/spree/base_controller.rb +2 -2
- data/app/finders/concerns/spree/product_filterable.rb +9 -0
- data/app/finders/spree/addresses/find.rb +6 -0
- data/app/finders/spree/base_finder.rb +14 -0
- data/app/finders/spree/cms_pages/find.rb +41 -0
- data/app/finders/spree/countries/find.rb +11 -3
- data/app/finders/spree/credit_cards/find.rb +2 -2
- data/app/finders/spree/menus/find.rb +11 -0
- data/app/finders/spree/option_values/find_available.rb +28 -0
- data/app/finders/spree/orders/find_complete.rb +14 -2
- data/app/finders/spree/orders/find_current.rb +2 -14
- data/app/finders/spree/product_properties/find_available.rb +20 -0
- data/app/finders/spree/products/find.rb +131 -26
- data/app/finders/spree/stores/find_current.rb +24 -0
- data/app/finders/spree/taxons/find.rb +23 -7
- data/app/helpers/spree/base_helper.rb +140 -30
- data/app/helpers/spree/currency_helper.rb +34 -0
- data/app/helpers/spree/locale_helper.rb +39 -0
- data/app/helpers/spree/products_helper.rb +54 -37
- data/app/jobs/spree/base_job.rb +4 -0
- data/app/jobs/spree/stock_locations/stock_items/create_job.rb +13 -0
- data/app/jobs/spree/variants/remove_from_incomplete_orders_job.rb +9 -0
- data/app/jobs/spree/variants/remove_line_item_job.rb +9 -0
- data/app/models/concerns/spree/calculated_adjustments.rb +1 -1
- data/app/models/concerns/spree/default_price.rb +3 -6
- data/app/models/concerns/spree/display_link.rb +30 -0
- data/app/models/concerns/spree/display_money.rb +8 -2
- data/app/models/concerns/spree/filter_param.rb +21 -0
- data/app/models/concerns/spree/image_methods.rb +36 -0
- data/app/models/concerns/spree/memoized_data.rb +24 -0
- data/app/models/concerns/spree/metadata.rb +23 -0
- data/app/models/concerns/spree/multi_store_resource.rb +24 -0
- data/app/models/concerns/spree/named_type.rb +1 -1
- data/app/models/concerns/spree/number_identifier.rb +18 -0
- data/app/models/concerns/spree/product_scopes.rb +127 -32
- data/app/models/concerns/spree/single_store_resource.rb +19 -0
- data/app/models/concerns/spree/unique_name.rb +10 -0
- data/app/models/concerns/spree/user_address.rb +19 -0
- data/app/models/concerns/spree/user_methods.rb +31 -14
- data/app/models/concerns/spree/user_payment_source.rb +1 -1
- data/app/models/concerns/spree/user_reporting.rb +35 -10
- data/app/models/concerns/spree/user_roles.rb +43 -0
- data/app/models/spree/ability.rb +58 -37
- data/app/models/spree/address.rb +56 -9
- data/app/models/spree/adjustment.rb +2 -0
- data/app/models/spree/asset/support/active_storage.rb +3 -2
- data/app/models/spree/asset.rb +4 -0
- data/app/models/spree/base.rb +37 -0
- data/app/models/spree/calculator/flat_rate.rb +1 -1
- data/app/models/spree/calculator/flexi_rate.rb +1 -1
- data/app/models/spree/calculator/price_sack.rb +1 -1
- data/app/models/spree/calculator/shipping/digital_delivery.rb +22 -0
- data/app/models/spree/calculator/shipping/flat_rate.rb +1 -1
- data/app/models/spree/calculator/shipping/flexi_rate.rb +1 -1
- data/app/models/spree/calculator/shipping/per_item.rb +1 -1
- data/app/models/spree/calculator/shipping/price_sack.rb +1 -1
- data/app/models/spree/calculator.rb +2 -2
- data/app/models/spree/classification.rb +3 -0
- data/app/models/spree/cms/pages/feature_page.rb +7 -0
- data/app/models/spree/cms/pages/homepage.rb +20 -0
- data/app/models/spree/cms/pages/standard_page.rb +4 -0
- data/app/models/spree/cms/sections/featured_article.rb +22 -0
- data/app/models/spree/cms/sections/hero_image.rb +38 -0
- data/app/models/spree/cms/sections/image_gallery.rb +103 -0
- data/app/models/spree/cms/sections/product_carousel.rb +14 -0
- data/app/models/spree/cms/sections/rich_text_content.rb +13 -0
- data/app/models/spree/cms/sections/side_by_side_images.rb +74 -0
- data/app/models/spree/cms_page.rb +70 -0
- data/app/models/spree/cms_section.rb +69 -0
- data/app/models/spree/cms_section_image.rb +15 -0
- data/app/models/spree/cms_section_image_one.rb +4 -0
- data/app/models/spree/cms_section_image_three.rb +4 -0
- data/app/models/spree/cms_section_image_two.rb +4 -0
- data/app/models/spree/country.rb +18 -8
- data/app/models/spree/credit_card.rb +33 -13
- data/app/models/spree/customer_return.rb +14 -3
- data/app/models/spree/digital.rb +19 -0
- data/app/models/spree/digital_link.rb +57 -0
- data/app/models/spree/fulfilment_changer.rb +58 -16
- data/app/models/spree/gateway/bogus.rb +11 -5
- data/app/models/spree/icon.rb +13 -0
- data/app/models/spree/image/configuration/active_storage.rb +8 -19
- data/app/models/spree/image.rb +8 -27
- data/app/models/spree/inventory_unit.rb +7 -9
- data/app/models/spree/legacy_user.rb +2 -2
- data/app/models/spree/line_item.rb +34 -14
- data/app/models/spree/linkable/homepage.rb +3 -0
- data/app/models/spree/linkable/uri.rb +3 -0
- data/app/models/spree/log_entry.rb +5 -1
- data/app/models/spree/menu.rb +66 -0
- data/app/models/spree/menu_item.rb +72 -0
- data/app/models/spree/option_type.rb +15 -5
- data/app/models/spree/option_value.rb +18 -0
- data/app/models/spree/option_value_variant.rb +1 -1
- data/app/models/spree/order/address_book.rb +11 -25
- data/app/models/spree/order/checkout.rb +7 -1
- data/app/models/spree/order/currency_updater.rb +1 -1
- data/app/models/spree/order/digital.rb +33 -0
- data/app/models/spree/order/emails.rb +32 -0
- data/app/models/spree/order/payments.rb +11 -3
- data/app/models/spree/order/store_credit.rb +1 -1
- data/app/models/spree/order.rb +106 -57
- data/app/models/spree/order_inventory.rb +1 -1
- data/app/models/spree/order_merger.rb +1 -1
- data/app/models/spree/order_promotion.rb +1 -1
- data/app/models/spree/payment/processing.rb +4 -3
- data/app/models/spree/payment.rb +57 -9
- data/app/models/spree/payment_capture_event.rb +4 -0
- data/app/models/spree/payment_method/store_credit.rb +1 -1
- data/app/models/spree/payment_method.rb +24 -3
- data/app/models/spree/payment_source.rb +10 -0
- data/app/models/spree/preference.rb +6 -1
- data/app/models/spree/price.rb +30 -8
- data/app/models/spree/product.rb +144 -51
- data/app/models/spree/product_property.rb +20 -4
- data/app/models/spree/promotion/actions/create_item_adjustments.rb +1 -1
- data/app/models/spree/promotion/rules/country.rb +1 -1
- data/app/models/spree/promotion/rules/first_order.rb +4 -3
- data/app/models/spree/promotion/rules/option_value.rb +3 -3
- data/app/models/spree/promotion/rules/product.rb +3 -2
- data/app/models/spree/promotion/rules/taxon.rb +10 -7
- data/app/models/spree/promotion/rules/user.rb +2 -1
- data/app/models/spree/promotion.rb +18 -24
- data/app/models/spree/promotion_action.rb +1 -1
- data/app/models/spree/promotion_handler/cart.rb +7 -2
- data/app/models/spree/promotion_handler/coupon.rb +6 -6
- data/app/models/spree/promotion_handler/free_shipping.rb +5 -6
- data/app/models/spree/promotion_handler/page.rb +3 -2
- data/app/models/spree/promotion_handler/promotion_duplicator.rb +10 -3
- data/app/models/spree/promotion_rule.rb +3 -1
- data/app/models/spree/promotion_rule_user.rb +1 -1
- data/app/models/spree/property.rb +32 -1
- data/app/models/spree/prototype.rb +5 -0
- data/app/models/spree/refund.rb +12 -2
- data/app/models/spree/reimbursement.rb +9 -2
- data/app/models/spree/reimbursement_type/reimbursement_helpers.rb +2 -1
- data/app/models/spree/return_authorization.rb +7 -2
- data/app/models/spree/return_item/eligibility_validator/default.rb +0 -2
- data/app/models/spree/return_item.rb +5 -1
- data/app/models/spree/role.rb +3 -3
- data/app/models/spree/role_user.rb +1 -1
- data/app/models/spree/shipment.rb +14 -36
- data/app/models/spree/shipment_handler.rb +4 -2
- data/app/models/spree/shipping_category.rb +4 -1
- data/app/models/spree/shipping_method.rb +9 -5
- data/app/models/spree/shipping_rate.rb +2 -11
- data/app/models/spree/state.rb +1 -1
- data/app/models/spree/state_change.rb +1 -1
- data/app/models/spree/stock/availability_validator.rb +9 -4
- data/app/models/spree/stock/content_item.rb +1 -1
- data/app/models/spree/stock/quantifier.rb +7 -7
- data/app/models/spree/stock/splitter/digital.rb +35 -0
- data/app/models/spree/stock_item.rb +8 -7
- data/app/models/spree/stock_location.rb +32 -13
- data/app/models/spree/stock_movement.rb +7 -0
- data/app/models/spree/stock_transfer.rb +6 -6
- data/app/models/spree/store.rb +209 -10
- data/app/models/spree/store_credit.rb +18 -7
- data/app/models/spree/store_credit_category.rb +2 -0
- data/app/models/spree/store_credit_event.rb +4 -9
- data/app/models/spree/store_credit_type.rb +2 -0
- data/app/models/spree/store_favicon_image.rb +17 -0
- data/app/models/spree/store_logo.rb +9 -0
- data/app/models/spree/store_mailer_logo.rb +13 -0
- data/app/models/spree/store_payment_method.rb +11 -0
- data/app/models/spree/store_product.rb +11 -0
- data/app/models/spree/store_promotion.rb +11 -0
- data/app/models/spree/tax_category.rb +9 -1
- data/app/models/spree/tax_rate.rb +9 -2
- data/app/models/spree/taxon.rb +42 -1
- data/app/models/spree/taxon_image/configuration/active_storage.rb +8 -12
- data/app/models/spree/taxon_image.rb +4 -2
- data/app/models/spree/taxonomy.rb +14 -2
- data/app/models/spree/variant.rb +117 -43
- data/app/models/spree/wished_item.rb +33 -0
- data/app/models/spree/wishlist.rb +38 -0
- data/app/models/spree/zone.rb +29 -11
- data/app/paginators/spree/shared/paginate.rb +8 -1
- data/app/presenters/spree/filters/options_presenter.rb +47 -0
- data/app/presenters/spree/filters/price_presenter.rb +22 -0
- data/app/presenters/spree/filters/price_range_presenter.rb +29 -0
- data/app/presenters/spree/filters/properties_presenter.rb +23 -0
- data/app/presenters/spree/filters/property_presenter.rb +42 -0
- data/app/presenters/spree/filters/quantified_price_range_presenter.rb +44 -0
- data/app/presenters/spree/variant_presenter.rb +6 -1
- data/app/presenters/spree/variants/option_types_presenter.rb +1 -0
- data/app/services/spree/account/addresses/create.rb +8 -0
- data/app/services/spree/account/addresses/update.rb +8 -0
- data/app/services/spree/account/create.rb +17 -0
- data/app/services/spree/account/update.rb +15 -0
- data/app/services/spree/addresses/create.rb +24 -0
- data/app/services/spree/addresses/helper.rb +41 -0
- data/app/services/spree/addresses/update.rb +32 -0
- data/app/services/spree/cart/add_item.rb +4 -2
- data/app/services/spree/cart/associate.rb +16 -0
- data/app/services/spree/cart/change_currency.rb +27 -0
- data/app/services/spree/cart/create.rb +9 -5
- data/app/services/spree/cart/destroy.rb +40 -0
- data/app/services/spree/cart/empty.rb +36 -0
- data/app/services/spree/cart/estimate_shipping_rates.rb +3 -3
- data/app/services/spree/cart/remove_line_item.rb +1 -0
- data/app/services/spree/cart/update.rb +2 -2
- data/app/services/spree/checkout/add_store_credit.rb +5 -2
- data/app/services/spree/checkout/get_shipping_rates.rb +7 -10
- data/app/services/spree/checkout/select_shipping_method.rb +49 -0
- data/app/services/spree/checkout/update.rb +11 -7
- data/app/services/spree/classifications/reposition.rb +18 -0
- data/app/services/spree/compare_line_items.rb +4 -2
- data/app/services/spree/credit_cards/destroy.rb +41 -0
- data/app/services/spree/line_items/create.rb +20 -0
- data/app/services/spree/line_items/destroy.rb +18 -0
- data/app/services/spree/line_items/helper.rb +11 -0
- data/app/services/spree/line_items/update.rb +17 -0
- data/app/services/spree/orders/approve.rb +18 -0
- data/app/services/spree/orders/cancel.rb +18 -0
- data/app/services/spree/payments/create.rb +66 -0
- data/app/services/spree/seeds/all.rb +26 -0
- data/app/services/spree/seeds/countries.rb +50 -0
- data/app/services/spree/seeds/default_reimbursement_types.rb +12 -0
- data/app/services/spree/seeds/roles.rb +11 -0
- data/app/services/spree/seeds/shipping_categories.rb +12 -0
- data/app/services/spree/seeds/states.rb +72 -0
- data/app/services/spree/seeds/stock_locations.rb +18 -0
- data/app/services/spree/seeds/store_credit_categories.rb +14 -0
- data/app/services/spree/seeds/stores.rb +31 -0
- data/app/services/spree/seeds/zones.rb +39 -0
- data/app/services/spree/shipments/add_item.rb +32 -0
- data/app/services/spree/shipments/change_state.rb +14 -0
- data/app/services/spree/shipments/create.rb +48 -0
- data/app/services/spree/shipments/helper.rb +23 -0
- data/app/services/spree/shipments/remove_item.rb +55 -0
- data/app/services/spree/shipments/update.rb +40 -0
- data/app/services/spree/stock_locations/stock_items/create.rb +31 -0
- data/app/services/spree/variants/remove_line_items.rb +15 -0
- data/app/services/spree/wallet/create_payment_source.rb +26 -0
- data/app/sorters/spree/base_sorter.rb +47 -0
- data/app/sorters/spree/orders/sort.rb +1 -37
- data/app/sorters/spree/products/sort.rb +27 -34
- data/app/validators/db_maximum_length_validator.rb +5 -0
- data/app/validators/email_validator.rb +4 -2
- data/app/validators/spree/url_validator.rb +23 -0
- data/brakeman.ignore +20 -0
- data/config/initializers/active_storage.rb +1 -5
- data/config/initializers/inflections.rb +3 -0
- data/config/initializers/rails61_fixes.rb +3 -0
- data/config/locales/en.yml +188 -85
- data/config/routes.rb +41 -2
- data/db/migrate/20210914000000_spree_four_three.rb +1205 -0
- data/db/migrate/20210915064321_add_metadata_to_spree_orders.rb +13 -0
- data/db/migrate/20210915064322_add_metadata_to_spree_products.rb +13 -0
- data/db/migrate/20210915064323_add_metadata_to_spree_variants.rb +13 -0
- data/db/migrate/20210915064324_add_metadata_to_spree_line_items.rb +13 -0
- data/db/migrate/20210915064325_add_metadata_to_spree_shipments.rb +13 -0
- data/db/migrate/20210915064326_add_metadata_to_spree_payments.rb +13 -0
- data/db/migrate/20210915064327_add_metadata_to_spree_taxons_and_taxonomies.rb +18 -0
- data/db/migrate/20210915064328_add_metadata_to_spree_stock_transfers.rb +13 -0
- data/db/migrate/20210915064329_add_metadata_to_spree_multiple_tables.rb +30 -0
- data/db/migrate/20210920090344_add_deleted_at_to_spree_stores.rb +8 -0
- data/db/migrate/20210921070812_rename_column_access_hash_to_token.rb +8 -0
- data/db/migrate/20210921070813_create_spree_wishlists.rb +18 -0
- data/db/migrate/20210921070814_create_spree_wished_products.rb +16 -0
- data/db/migrate/20210921070815_rename_spree_wished_products_to_spree_wished_items.rb +5 -0
- data/db/migrate/20210921090344_add_unique_stock_item_stock_location_variant_deleted_at_index.rb +5 -0
- data/db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb +32 -0
- data/db/migrate/20210929091444_create_spree_digital_links.rb +13 -0
- data/db/migrate/20210929093238_create_spree_digitals.rb +9 -0
- data/db/migrate/20210930143043_rename_secret_to_token_on_spree_digital_links.rb +5 -0
- data/db/migrate/20210930155649_add_settings_to_spree_stores.rb +11 -0
- data/db/migrate/20211201202851_update_linkable_resource_types.rb +10 -0
- data/db/migrate/20211203082008_add_settings_to_payment_methods.rb +11 -0
- data/db/migrate/20211229162122_disable_propagate_all_variants_by_default.rb +5 -0
- data/db/migrate/20220103082046_add_status_and_make_active_at_to_spree_products.rb +7 -0
- data/db/migrate/20220106230929_add_internal_note_to_spree_orders.rb +5 -0
- data/db/migrate/20220113052823_create_payment_sources.rb +22 -0
- data/db/migrate/20220117100333_add_make_active_at_to_spree_products.rb +17 -0
- data/db/migrate/20220120092821_add_metadata_to_spree_tax_rates.rb +13 -0
- data/db/migrate/20220201103922_add_first_name_and_last_name_to_spree_users.rb +9 -0
- data/db/migrate/20220222083546_add_barcode_to_spree_variants.rb +6 -0
- data/db/migrate/20220329113557_fix_cms_pages_unique_indexes.rb +8 -0
- data/db/migrate/20220613133029_add_metadata_to_spree_stock_items.rb +13 -0
- data/db/seeds.rb +1 -5
- data/lib/friendly_id/paranoia.rb +4 -0
- data/lib/generators/spree/dummy/dummy_generator.rb +25 -10
- data/lib/generators/spree/dummy/templates/package.json +12 -0
- data/lib/generators/spree/dummy/templates/rails/database.yml +20 -18
- data/lib/generators/spree/dummy/templates/rails/test.rb +4 -0
- data/lib/generators/spree/dummy_model/templates/model.rb.tt +1 -1
- data/lib/generators/spree/install/install_generator.rb +18 -27
- data/lib/generators/spree/install/templates/config/initializers/spree.rb +1 -0
- data/lib/spree/core/components.rb +8 -0
- data/lib/spree/core/configuration.rb +90 -0
- data/lib/spree/core/controller_helpers/auth.rb +14 -4
- data/lib/spree/core/controller_helpers/common.rb +22 -9
- data/lib/spree/core/controller_helpers/currency.rb +56 -0
- data/lib/spree/core/controller_helpers/locale.rb +60 -0
- data/lib/spree/core/controller_helpers/order.rb +17 -10
- data/lib/spree/core/controller_helpers/search.rb +3 -2
- data/lib/spree/core/controller_helpers/store.rb +31 -7
- data/lib/spree/core/dependencies.rb +130 -0
- data/lib/spree/core/engine.rb +54 -39
- data/lib/spree/core/importer/order.rb +9 -9
- data/lib/spree/core/importer/product.rb +4 -2
- data/lib/spree/core/number_generator.rb +0 -2
- data/{app/models/spree → lib/spree/core}/preferences/configuration.rb +5 -2
- data/{app/models/spree → lib/spree/core}/preferences/preferable.rb +16 -1
- data/{app/models/spree → lib/spree/core}/preferences/preferable_class_methods.rb +12 -1
- data/{app/models/spree → lib/spree/core}/preferences/store.rb +2 -2
- data/lib/spree/core/product_duplicator.rb +1 -0
- data/lib/spree/core/product_filters.rb +3 -3
- data/lib/spree/core/search/base.rb +24 -25
- data/lib/spree/core/version.rb +3 -1
- data/lib/spree/core.rb +53 -17
- data/lib/spree/database_type_utilities.rb +12 -0
- data/lib/spree/i18n.rb +17 -19
- data/lib/spree/money.rb +4 -3
- data/lib/spree/permitted_attributes.rb +56 -15
- data/lib/spree/service_module.rb +8 -4
- data/lib/spree/testing_support/authorization_helpers.rb +15 -7
- data/lib/spree/testing_support/capybara_config.rb +14 -17
- data/lib/spree/testing_support/capybara_ext.rb +1 -6
- data/lib/spree/testing_support/common_rake.rb +39 -7
- data/lib/spree/testing_support/controller_requests.rb +10 -10
- data/lib/spree/testing_support/extension_rake.rb +2 -2
- data/lib/spree/testing_support/factories/address_factory.rb +1 -1
- data/lib/spree/testing_support/factories/asset_factory.rb +15 -0
- data/lib/spree/testing_support/factories/classification_factory.rb +8 -0
- data/lib/spree/testing_support/factories/cms_page_factory.rb +20 -0
- data/lib/spree/testing_support/factories/cms_section_factory.rb +31 -0
- data/lib/spree/testing_support/factories/customer_return_factory.rb +24 -17
- data/lib/spree/testing_support/factories/digital_factory.rb +10 -0
- data/lib/spree/testing_support/factories/digital_link_factory.rb +6 -0
- data/lib/spree/testing_support/factories/favicon_image_factory.rb +9 -0
- data/lib/spree/testing_support/factories/icon_factory.rb +9 -0
- data/lib/spree/testing_support/factories/image_factory.rb +3 -1
- data/lib/spree/testing_support/factories/line_item_factory.rb +6 -2
- data/lib/spree/testing_support/factories/log_entry_factory.rb +6 -0
- data/lib/spree/testing_support/factories/menu_factory.rb +16 -0
- data/lib/spree/testing_support/factories/menu_item_factory.rb +10 -0
- data/lib/spree/testing_support/factories/options_factory.rb +15 -0
- data/lib/spree/testing_support/factories/order_factory.rb +17 -4
- data/lib/spree/testing_support/factories/payment_capture_event_factory.rb +6 -0
- data/lib/spree/testing_support/factories/payment_factory.rb +3 -3
- data/lib/spree/testing_support/factories/payment_method_factory.rb +21 -4
- data/lib/spree/testing_support/factories/product_factory.rb +23 -2
- data/lib/spree/testing_support/factories/product_property_factory.rb +2 -1
- data/lib/spree/testing_support/factories/promotion_action_factory.rb +5 -0
- data/lib/spree/testing_support/factories/promotion_factory.rb +44 -23
- data/lib/spree/testing_support/factories/property_factory.rb +22 -0
- data/lib/spree/testing_support/factories/refund_factory.rb +1 -1
- data/lib/spree/testing_support/factories/reimbursement_credit_factory.rb +7 -0
- data/lib/spree/testing_support/factories/return_authorization_factory.rb +1 -1
- data/lib/spree/testing_support/factories/role_factory.rb +1 -1
- data/lib/spree/testing_support/factories/shipment_factory.rb +7 -9
- data/lib/spree/testing_support/factories/shipping_category_factory.rb +1 -1
- data/lib/spree/testing_support/factories/shipping_rate_factory.rb +7 -0
- data/lib/spree/testing_support/factories/state_change_factory.rb +8 -0
- data/lib/spree/testing_support/factories/stock_item_factory.rb +7 -0
- data/lib/spree/testing_support/factories/stock_location_factory.rb +6 -4
- data/lib/spree/testing_support/factories/stock_transfer_factory.rb +9 -0
- data/lib/spree/testing_support/factories/store_credit_factory.rb +1 -0
- data/lib/spree/testing_support/factories/store_credit_type_factory.rb +5 -0
- data/lib/spree/testing_support/factories/store_factory.rb +23 -8
- data/lib/spree/testing_support/factories/tax_rate_factory.rb +1 -0
- data/lib/spree/testing_support/factories/taxon_factory.rb +3 -1
- data/lib/spree/testing_support/factories/taxon_image_factory.rb +9 -0
- data/lib/spree/testing_support/factories/taxonomy_factory.rb +1 -0
- data/lib/spree/testing_support/factories/user_factory.rb +13 -2
- data/lib/spree/testing_support/factories/variant_factory.rb +6 -2
- data/lib/spree/testing_support/factories/wished_variant_factory.rb +6 -0
- data/lib/spree/testing_support/factories/wishlist_factory.rb +18 -0
- data/lib/spree/testing_support/factories/zone_factory.rb +16 -13
- data/lib/spree/testing_support/flatpickr_capybara.rb +124 -0
- data/lib/spree/testing_support/i18n.rb +1 -1
- data/lib/spree/testing_support/jobs.rb +9 -0
- data/lib/spree/testing_support/locale_helpers.rb +78 -0
- data/lib/spree/testing_support/metadata.rb +54 -0
- data/lib/spree/testing_support/next_instance_of.rb +38 -0
- data/lib/spree/testing_support/order_walkthrough.rb +10 -5
- data/lib/spree/testing_support/rspec_retry_config.rb +15 -0
- data/lib/spree_core.rb +2 -1
- data/lib/tasks/core.rake +17 -5
- data/spec/fixtures/favicon.ico +0 -0
- data/spec/fixtures/files/icon_256x256.gif +0 -0
- data/spec/fixtures/files/icon_256x256.png +0 -0
- data/spec/fixtures/files/icon_512x512.png +0 -0
- data/spec/fixtures/files/img_256x128.png +0 -0
- data/spree_core.gemspec +34 -26
- metadata +363 -460
- data/app/assets/images/logo/spree_50.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 +0 -59
- data/app/mailers/spree/base_mailer.rb +0 -32
- data/app/mailers/spree/order_mailer.rb +0 -17
- data/app/mailers/spree/reimbursement_mailer.rb +0 -10
- data/app/mailers/spree/shipment_mailer.rb +0 -10
- data/app/mailers/spree/test_mailer.rb +0 -8
- data/app/models/friendly_id/slug_decorator.rb +0 -9
- data/app/models/spree/app_configuration.rb +0 -76
- data/app/models/spree/app_dependencies.rb +0 -74
- data/app/models/spree/validations/db_maximum_length_validator.rb +0 -22
- data/app/views/layouts/spree/base_mailer.html.erb +0 -41
- data/app/views/spree/order_mailer/_adjustment.html.erb +0 -8
- data/app/views/spree/order_mailer/_subtotal.html.erb +0 -8
- data/app/views/spree/order_mailer/_total.html.erb +0 -8
- data/app/views/spree/order_mailer/cancel_email.html.erb +0 -30
- data/app/views/spree/order_mailer/cancel_email.text.erb +0 -16
- data/app/views/spree/order_mailer/confirm_email.html.erb +0 -70
- data/app/views/spree/order_mailer/confirm_email.text.erb +0 -38
- data/app/views/spree/reimbursement_mailer/reimbursement_email.html.erb +0 -61
- data/app/views/spree/reimbursement_mailer/reimbursement_email.text.erb +0 -22
- data/app/views/spree/shared/_base_mailer_footer.html.erb +0 -20
- data/app/views/spree/shared/_base_mailer_header.html.erb +0 -33
- data/app/views/spree/shared/_base_mailer_stylesheets.html.erb +0 -777
- data/app/views/spree/shared/_error_messages.html.erb +0 -11
- data/app/views/spree/shared/_mailer_line_item.html.erb +0 -16
- data/app/views/spree/shared/_paths.html.erb +0 -8
- data/app/views/spree/shipment_mailer/shipped_email.html.erb +0 -41
- data/app/views/spree/shipment_mailer/shipped_email.text.erb +0 -16
- data/app/views/spree/test_mailer/test_email.html.erb +0 -40
- data/app/views/spree/test_mailer/test_email.text.erb +0 -4
- data/config/initializers/assets.rb +0 -1
- data/config/initializers/premailer_assets.rb +0 -1
- data/config/initializers/premailer_rails.rb +0 -3
- data/db/default/spree/countries.rb +0 -18
- data/db/default/spree/default_reimbursement_type.rb +0 -1
- data/db/default/spree/roles.rb +0 -2
- data/db/default/spree/states.rb +0 -12
- data/db/default/spree/store_credit_categories.rb +0 -1
- data/db/default/spree/stores.rb +0 -15
- data/db/default/spree/zones.rb +0 -26
- data/db/migrate/20120831092320_spree_one_two.rb +0 -481
- data/db/migrate/20120831092359_spree_promo_one_two.rb +0 -45
- data/db/migrate/20120905145253_add_tax_rate_label.rb +0 -5
- data/db/migrate/20120905151823_add_toggle_tax_rate_display.rb +0 -5
- data/db/migrate/20120929093553_remove_unused_preference_columns.rb +0 -8
- data/db/migrate/20121009142519_add_lock_version_to_variant.rb +0 -5
- data/db/migrate/20121010142909_add_states_required_to_countries.rb +0 -5
- data/db/migrate/20121012071449_add_on_demand_to_product_and_variant.rb +0 -6
- data/db/migrate/20121017010007_remove_not_null_constraint_from_products_on_hand.rb +0 -11
- data/db/migrate/20121031162139_split_prices_from_variants.rb +0 -31
- data/db/migrate/20121107003422_remove_not_null_from_spree_prices_amount.rb +0 -9
- data/db/migrate/20121107184631_add_currency_to_line_items.rb +0 -5
- data/db/migrate/20121107194006_add_currency_to_orders.rb +0 -5
- data/db/migrate/20121109173623_add_cost_currency_to_variants.rb +0 -5
- data/db/migrate/20121111231553_remove_display_on_from_payment_methods.rb +0 -5
- data/db/migrate/20121124203911_add_position_to_taxonomies.rb +0 -5
- data/db/migrate/20121126040517_add_last_ip_to_spree_orders.rb +0 -5
- data/db/migrate/20121213162028_add_state_to_spree_adjustments.rb +0 -6
- data/db/migrate/20130114053446_add_display_on_to_spree_payment_methods.rb +0 -9
- data/db/migrate/20130120201805_add_position_to_product_properties.spree.rb +0 -6
- data/db/migrate/20130203232234_add_identifier_to_spree_payments.rb +0 -5
- data/db/migrate/20130207155350_add_order_id_index_to_payments.rb +0 -9
- data/db/migrate/20130208032954_add_primary_to_spree_products_taxons.rb +0 -5
- data/db/migrate/20130211190146_create_spree_stock_items.rb +0 -14
- data/db/migrate/20130211191120_create_spree_stock_locations.rb +0 -11
- data/db/migrate/20130213191427_create_default_stock.rb +0 -33
- data/db/migrate/20130222032153_add_order_id_index_to_shipments.rb +0 -5
- data/db/migrate/20130226032817_change_meta_description_on_spree_products_to_text.rb +0 -5
- data/db/migrate/20130226191231_add_stock_location_id_to_spree_shipments.rb +0 -5
- data/db/migrate/20130227143905_add_pending_to_inventory_unit.rb +0 -6
- data/db/migrate/20130228164411_remove_on_demand_from_product_and_variant.rb +0 -6
- data/db/migrate/20130228210442_create_shipping_method_zone.rb +0 -21
- data/db/migrate/20130301162745_remove_shipping_category_id_from_shipping_method.rb +0 -5
- data/db/migrate/20130301162924_create_shipping_method_categories.rb +0 -13
- data/db/migrate/20130301205200_add_tracking_url_to_spree_shipping_methods.rb +0 -5
- data/db/migrate/20130304162240_create_spree_shipping_rates.rb +0 -24
- data/db/migrate/20130304192936_remove_category_match_attributes_from_shipping_method.rb +0 -7
- data/db/migrate/20130305143310_create_stock_movements.rb +0 -12
- data/db/migrate/20130306181701_add_address_fields_to_stock_location.rb +0 -22
- data/db/migrate/20130306191917_add_active_field_to_stock_locations.rb +0 -5
- data/db/migrate/20130306195650_add_backorderable_to_stock_item.rb +0 -5
- data/db/migrate/20130307161754_add_default_quantity_to_stock_movement.rb +0 -5
- data/db/migrate/20130318151756_add_source_and_destination_to_stock_movements.rb +0 -8
- data/db/migrate/20130319062004_change_orders_total_precision.rb +0 -8
- data/db/migrate/20130319063911_change_spree_payments_amount_precision.rb +0 -7
- data/db/migrate/20130319064308_change_spree_return_authorization_amount_precision.rb +0 -7
- data/db/migrate/20130319082943_change_adjustments_amount_precision.rb +0 -7
- data/db/migrate/20130319183250_add_originator_to_stock_movement.rb +0 -7
- data/db/migrate/20130319190507_drop_source_and_destination_from_stock_movement.rb +0 -15
- data/db/migrate/20130325163316_migrate_inventory_unit_sold_to_on_hand.rb +0 -9
- data/db/migrate/20130326175857_add_stock_location_to_rma.rb +0 -5
- data/db/migrate/20130328130308_update_shipment_state_for_canceled_orders.rb +0 -15
- data/db/migrate/20130328195253_add_seo_metas_to_taxons.rb +0 -9
- data/db/migrate/20130329134939_remove_stock_item_and_variant_lock.rb +0 -14
- data/db/migrate/20130413230529_add_name_to_spree_credit_cards.rb +0 -5
- data/db/migrate/20130414000512_update_name_fields_on_spree_credit_cards.rb +0 -13
- data/db/migrate/20130417120034_add_index_to_source_columns_on_adjustments.rb +0 -5
- data/db/migrate/20130417120035_update_adjustment_states.rb +0 -16
- data/db/migrate/20130417123427_add_shipping_rates_to_shipments.rb +0 -15
- data/db/migrate/20130418125341_create_spree_stock_transfers.rb +0 -14
- data/db/migrate/20130423110707_drop_products_count_on_hand.rb +0 -5
- data/db/migrate/20130423223847_set_default_shipping_rate_cost.rb +0 -5
- data/db/migrate/20130509115210_add_number_to_stock_transfer.rb +0 -23
- data/db/migrate/20130514151929_add_sku_index_to_spree_variants.rb +0 -5
- data/db/migrate/20130515180736_add_backorderable_default_to_spree_stock_location.rb +0 -5
- data/db/migrate/20130516151222_add_propage_all_variants_to_spree_stock_location.rb +0 -5
- data/db/migrate/20130611054351_rename_shipping_methods_zones_to_spree_shipping_methods_zones.rb +0 -5
- data/db/migrate/20130611185927_add_user_id_index_to_spree_orders.rb +0 -5
- data/db/migrate/20130618041418_add_updated_at_to_spree_countries.rb +0 -9
- data/db/migrate/20130619012236_add_updated_at_to_spree_states.rb +0 -9
- data/db/migrate/20130626232741_add_cvv_result_code_and_cvv_result_message_to_spree_payments.rb +0 -6
- data/db/migrate/20130628021056_add_unique_index_to_permalink_on_spree_products.rb +0 -5
- data/db/migrate/20130628022817_add_unique_index_to_orders_shipments_and_stock_transfers.rb +0 -7
- data/db/migrate/20130708052307_add_deleted_at_to_spree_tax_rates.rb +0 -5
- data/db/migrate/20130711200933_remove_lock_version_from_inventory_units.rb +0 -6
- data/db/migrate/20130718042445_add_cost_price_to_line_item.rb +0 -5
- data/db/migrate/20130718233855_set_backorderable_to_default_to_false.rb +0 -6
- data/db/migrate/20130725031716_add_created_by_id_to_spree_orders.rb +0 -5
- data/db/migrate/20130729214043_index_completed_at_on_spree_orders.rb +0 -5
- data/db/migrate/20130802014537_add_tax_category_id_to_spree_line_items.rb +0 -5
- data/db/migrate/20130802022321_migrate_tax_categories_to_line_items.rb +0 -10
- data/db/migrate/20130806022521_drop_spree_mail_methods.rb +0 -12
- data/db/migrate/20130806145853_set_default_stock_location_on_shipments.rb +0 -8
- data/db/migrate/20130807024301_upgrade_adjustments.rb +0 -46
- data/db/migrate/20130807024302_rename_adjustment_fields.rb +0 -20
- data/db/migrate/20130809164245_add_admin_name_column_to_spree_shipping_methods.rb +0 -5
- data/db/migrate/20130809164330_add_admin_name_column_to_spree_stock_locations.rb +0 -5
- data/db/migrate/20130813004002_add_shipment_total_to_spree_orders.rb +0 -5
- data/db/migrate/20130813140619_expand_order_number_size.rb +0 -9
- data/db/migrate/20130813232134_rename_activators_to_promotions.rb +0 -5
- data/db/migrate/20130815000406_add_adjustment_total_to_line_items.rb +0 -5
- data/db/migrate/20130815024413_add_adjustment_total_to_shipments.rb +0 -5
- data/db/migrate/20130826062534_add_depth_to_spree_taxons.rb +0 -16
- data/db/migrate/20130828234942_add_tax_total_to_line_items_shipments_and_orders.rb +0 -8
- data/db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb +0 -15
- data/db/migrate/20130830001159_migrate_old_shipping_calculators.rb +0 -19
- data/db/migrate/20130903183026_add_code_to_spree_promotion_rules.rb +0 -5
- data/db/migrate/20130909115621_change_states_required_for_countries.rb +0 -9
- data/db/migrate/20130915032339_add_deleted_at_to_spree_stock_items.rb +0 -5
- data/db/migrate/20130917024658_remove_promotions_event_name_field.rb +0 -5
- data/db/migrate/20130924040529_add_promo_total_to_line_items_and_shipments_and_orders.rb +0 -7
- data/db/migrate/20131001013410_remove_unused_credit_card_fields.rb +0 -16
- data/db/migrate/20131026154747_add_track_inventory_to_variant.rb +0 -5
- data/db/migrate/20131107132123_add_tax_category_to_variants.rb +0 -6
- data/db/migrate/20131113035136_add_channel_to_spree_orders.rb +0 -5
- data/db/migrate/20131118043959_add_included_to_adjustments.rb +0 -5
- data/db/migrate/20131118050234_rename_tax_total_fields.rb +0 -11
- data/db/migrate/20131118183431_add_line_item_id_to_spree_inventory_units.rb +0 -21
- data/db/migrate/20131120234456_add_updated_at_to_variants.rb +0 -5
- data/db/migrate/20131127001002_add_position_to_classifications.rb +0 -5
- data/db/migrate/20131211112807_create_spree_orders_promotions.rb +0 -8
- data/db/migrate/20131211192741_unique_shipping_method_categories.rb +0 -24
- data/db/migrate/20131218054603_add_item_count_to_spree_orders.rb +0 -5
- data/db/migrate/20140106065820_remove_value_type_from_spree_preferences.rb +0 -8
- data/db/migrate/20140106224208_rename_permalink_to_slug_for_products.rb +0 -5
- data/db/migrate/20140120160805_add_index_to_variant_id_and_currency_on_prices.rb +0 -5
- data/db/migrate/20140124023232_rename_activator_id_in_rules_and_actions_to_promotion_id.rb +0 -6
- data/db/migrate/20140129024326_add_deleted_at_to_spree_prices.rb +0 -5
- data/db/migrate/20140203161722_add_approver_id_and_approved_at_to_orders.rb +0 -6
- data/db/migrate/20140204115338_add_confirmation_delivered_to_spree_orders.rb +0 -5
- data/db/migrate/20140204192230_add_auto_capture_to_payment_methods.rb +0 -5
- data/db/migrate/20140205120320_create_spree_payment_capture_events.rb +0 -12
- data/db/migrate/20140205144710_add_uncaptured_amount_to_payments.rb +0 -5
- data/db/migrate/20140205181631_default_variant_weight_to_zero.rb +0 -11
- data/db/migrate/20140207085910_add_tax_category_id_to_shipping_methods.rb +0 -5
- data/db/migrate/20140207093021_add_tax_rate_id_to_shipping_rates.rb +0 -5
- data/db/migrate/20140211040159_add_pre_tax_amount_to_line_items_and_shipments.rb +0 -6
- data/db/migrate/20140213184916_add_more_indexes.rb +0 -13
- data/db/migrate/20140219060952_add_considered_risky_to_orders.rb +0 -5
- data/db/migrate/20140227112348_add_preference_store_to_everything.rb +0 -8
- data/db/migrate/20140307235515_add_user_id_to_spree_credit_cards.rb +0 -13
- data/db/migrate/20140309023735_migrate_old_preferences.rb +0 -27
- data/db/migrate/20140309024355_create_spree_stores.rb +0 -25
- data/db/migrate/20140309033438_create_store_from_preferences.rb +0 -42
- data/db/migrate/20140315053743_add_timestamps_to_spree_assets.rb +0 -6
- data/db/migrate/20140318191500_create_spree_taxons_promotion_rules.rb +0 -8
- data/db/migrate/20140331100557_add_additional_store_fields.rb +0 -8
- data/db/migrate/20140410141842_add_many_missing_indexes.rb +0 -18
- data/db/migrate/20140410150358_correct_some_polymorphic_index_and_add_more_missing.rb +0 -66
- data/db/migrate/20140415041315_add_user_id_created_by_id_index_to_order.rb +0 -5
- data/db/migrate/20140508151342_change_spree_price_amount_precision.rb +0 -8
- data/db/migrate/20140518174634_add_token_to_spree_orders.rb +0 -5
- data/db/migrate/20140530024945_move_order_token_from_tokenized_permission.rb +0 -29
- data/db/migrate/20140601011216_set_shipment_total_for_users_upgrading.rb +0 -10
- data/db/migrate/20140604135309_drop_credit_card_first_name_and_last_name.rb +0 -6
- data/db/migrate/20140609201656_add_deleted_at_to_spree_promotion_actions.rb +0 -6
- data/db/migrate/20140616202624_remove_uncaptured_amount_from_spree_payments.rb +0 -5
- data/db/migrate/20140625214618_create_spree_refunds.rb +0 -12
- data/db/migrate/20140702140656_create_spree_return_authorization_inventory_unit.rb +0 -12
- data/db/migrate/20140707125621_rename_return_authorization_inventory_unit_to_return_items.rb +0 -5
- data/db/migrate/20140709160534_backfill_line_item_pre_tax_amount.rb +0 -10
- data/db/migrate/20140710041921_recreate_spree_return_authorizations.rb +0 -55
- data/db/migrate/20140710181204_add_amount_fields_to_return_items.rb +0 -7
- data/db/migrate/20140710190048_drop_return_authorization_amount.rb +0 -5
- data/db/migrate/20140713140455_create_spree_return_authorization_reasons.rb +0 -28
- data/db/migrate/20140713140527_create_spree_refund_reasons.rb +0 -14
- data/db/migrate/20140713142214_rename_return_authorization_reason.rb +0 -5
- data/db/migrate/20140715182625_create_spree_promotion_categories.rb +0 -11
- data/db/migrate/20140716204111_drop_received_at_on_return_items.rb +0 -9
- data/db/migrate/20140716212330_add_reception_and_acceptance_status_to_return_items.rb +0 -6
- data/db/migrate/20140717155155_create_default_refund_reason.rb +0 -9
- data/db/migrate/20140717185932_add_default_to_spree_stock_locations.rb +0 -7
- data/db/migrate/20140718133010_create_spree_customer_returns.rb +0 -9
- data/db/migrate/20140718133349_add_customer_return_id_to_return_item.rb +0 -6
- data/db/migrate/20140718195325_create_friendly_id_slugs.rb +0 -15
- data/db/migrate/20140723004419_rename_spree_refund_return_authorization_id.rb +0 -5
- data/db/migrate/20140723152808_increase_return_item_pre_tax_amount_precision.rb +0 -13
- data/db/migrate/20140723214541_copy_product_slugs_to_slug_history.rb +0 -15
- data/db/migrate/20140725131539_create_spree_reimbursements.rb +0 -21
- data/db/migrate/20140728225422_add_promotionable_to_spree_products.rb +0 -5
- data/db/migrate/20140729133613_add_exchange_inventory_unit_foreign_keys.rb +0 -7
- data/db/migrate/20140730155938_add_acceptance_status_errors_to_return_item.rb +0 -5
- data/db/migrate/20140731150017_create_spree_reimbursement_types.rb +0 -20
- data/db/migrate/20140804185157_add_default_to_shipment_cost.rb +0 -10
- data/db/migrate/20140805171035_add_default_to_spree_credit_cards.rb +0 -5
- data/db/migrate/20140805171219_make_existing_credit_cards_default.rb +0 -10
- data/db/migrate/20140806144901_add_type_to_reimbursement_type.rb +0 -9
- data/db/migrate/20140808184039_create_spree_reimbursement_credits.rb +0 -10
- data/db/migrate/20140827170513_add_meta_title_to_spree_products.rb +0 -7
- data/db/migrate/20140911173301_add_kind_to_zone.rb +0 -11
- data/db/migrate/20140924164824_add_code_to_spree_tax_categories.rb +0 -5
- data/db/migrate/20140927193717_default_pre_tax_amount_should_be_zero.rb +0 -6
- data/db/migrate/20141002191113_add_code_to_spree_shipping_methods.rb +0 -5
- data/db/migrate/20141007230328_add_cancel_audit_fields_to_spree_orders.rb +0 -6
- data/db/migrate/20141009204607_add_store_id_to_orders.rb +0 -8
- data/db/migrate/20141012083513_create_spree_taxons_prototypes.rb +0 -8
- data/db/migrate/20141021194502_add_state_lock_version_to_order.rb +0 -5
- data/db/migrate/20141023005240_add_counter_cache_from_spree_variants_to_spree_stock_items.rb +0 -8
- data/db/migrate/20141101231208_fix_adjustment_order_presence.rb +0 -13
- data/db/migrate/20141105213646_update_classifications_positions.rb +0 -9
- data/db/migrate/20141120135441_add_guest_token_index_to_spree_orders.rb +0 -5
- data/db/migrate/20141215232040_remove_token_permissions_table.rb +0 -6
- data/db/migrate/20141215235502_remove_extra_products_slug_index.rb +0 -5
- data/db/migrate/20141217215630_update_product_slug_index.rb +0 -6
- data/db/migrate/20141218025915_rename_identifier_to_number_for_payment.rb +0 -5
- data/db/migrate/20150118210639_create_spree_store_credits.rb +0 -24
- data/db/migrate/20150118211500_create_spree_store_credit_categories.rb +0 -8
- data/db/migrate/20150118212051_create_spree_store_credit_events.rb +0 -17
- data/db/migrate/20150118212101_create_spree_store_credit_types.rb +0 -10
- data/db/migrate/20150121022521_remove_environment_from_payment_method.rb +0 -6
- data/db/migrate/20150122145607_add_resellable_to_return_items.rb +0 -5
- data/db/migrate/20150122202432_add_code_to_spree_promotion_categories.rb +0 -5
- data/db/migrate/20150128032538_remove_environment_from_tracker.rb +0 -8
- data/db/migrate/20150128060325_remove_spree_configurations.rb +0 -16
- data/db/migrate/20150216173445_add_index_to_spree_stock_items_variant_id.rb +0 -13
- data/db/migrate/20150309161154_ensure_payments_have_numbers.rb +0 -13
- data/db/migrate/20150314013438_add_missing_indexes_on_spree_tables.rb +0 -67
- data/db/migrate/20150317174308_remove_duplicated_indexes_from_multi_columns.rb +0 -18
- data/db/migrate/20150324104002_remove_user_index_from_spree_state_changes.rb +0 -14
- data/db/migrate/20150515211137_fix_adjustment_order_id.rb +0 -70
- data/db/migrate/20150522071831_add_position_to_spree_payment_methods.rb +0 -5
- data/db/migrate/20150522181728_add_deleted_at_to_friendly_id_slugs.rb +0 -6
- data/db/migrate/20150609093816_increase_scale_on_pre_tax_amounts.rb +0 -16
- data/db/migrate/20150626181949_add_taxable_adjustment_total_to_line_item.rb +0 -19
- data/db/migrate/20150627090949_migrate_payment_methods_display.rb +0 -12
- data/db/migrate/20150707204155_enable_acts_as_paranoid_on_calculators.rb +0 -6
- data/db/migrate/20150714154102_spree_payment_method_store_credits.rb +0 -12
- data/db/migrate/20150726141425_rename_has_and_belongs_to_associations_to_model_names.rb +0 -18
- data/db/migrate/20150727191614_spree_store_credit_types.rb +0 -11
- data/db/migrate/20150819154308_add_discontinued_to_products_and_variants.rb +0 -68
- data/db/migrate/20151220072838_remove_shipping_method_id_from_spree_orders.rb +0 -13
- data/db/migrate/20160207191757_add_id_column_to_earlier_habtm_tables.rb +0 -16
- data/db/migrate/20160219165458_add_indexes.rb +0 -14
- data/db/migrate/20160509064646_remove_counter_cache_from_spree_variants_to_spree_stock_items.rb +0 -10
- data/db/migrate/20160608090604_add_zipcode_required_to_spree_countries.rb +0 -7
- data/db/migrate/20161014145148_add_created_at_to_variant.rb +0 -8
- data/db/migrate/20161014152814_add_null_false_to_spree_variants_timestamps.rb +0 -6
- data/db/migrate/20161125065505_add_quantity_to_inventory_units.rb +0 -5
- data/db/migrate/20170119122701_add_original_return_item_id_to_spree_inventory_units.rb +0 -29
- data/db/migrate/20170315152755_add_unique_index_on_number_to_spree_orders.rb +0 -16
- data/db/migrate/20170316154338_add_unique_index_on_number_to_spree_stock_transfer.rb +0 -16
- data/db/migrate/20170316205511_add_unique_index_on_number_to_spree_shipment.rb +0 -16
- data/db/migrate/20170320134043_add_unique_index_on_number_to_spree_payments.rb +0 -17
- data/db/migrate/20170320142750_add_unique_index_on_number_to_spree_return_authorizations.rb +0 -16
- data/db/migrate/20170320145040_add_unique_index_on_number_to_spree_customer_returns.rb +0 -16
- data/db/migrate/20170320145518_add_unique_index_on_number_to_spree_reimbursements.rb +0 -16
- data/db/migrate/20170323151450_add_missing_unique_indexes_for_unique_attributes.rb +0 -37
- data/db/migrate/20170329110859_add_index_on_stock_location_to_spree_customer_returns.rb +0 -5
- data/db/migrate/20170329113917_add_index_on_prototype_to_spree_option_type_prototype.rb +0 -19
- data/db/migrate/20170330082155_add_indexes_to_spree_option_value_variant.rb +0 -19
- data/db/migrate/20170330132215_add_index_on_promotion_id_to_order_promotions.rb +0 -5
- data/db/migrate/20170331101758_add_indexes_for_property_prototype.rb +0 -20
- data/db/migrate/20170331103334_add_index_for_prototype_id_to_prototype_taxons.rb +0 -5
- data/db/migrate/20170331110454_add_indexes_to_refunds.rb +0 -6
- data/db/migrate/20170331111757_add_indexes_to_reimbursement_credits.rb +0 -6
- data/db/migrate/20170331115246_add_indexes_to_return_authorizations.rb +0 -6
- data/db/migrate/20170331120125_add_indexes_to_return_items.rb +0 -11
- data/db/migrate/20170331121725_add_index_to_role_users.rb +0 -18
- data/db/migrate/20170331123625_add_index_to_shipping_method_categories.rb +0 -5
- data/db/migrate/20170331123832_add_index_to_shipping_method_zones.rb +0 -20
- data/db/migrate/20170331124251_add_index_to_spree_shipping_rates.rb +0 -6
- data/db/migrate/20170331124513_add_index_to_spree_stock_items.rb +0 -5
- data/db/migrate/20170331124924_add_index_to_spree_stock_movement.rb +0 -5
- data/db/migrate/20170413211707_change_indexes_on_friendly_id_slugs.rb +0 -10
- data/db/migrate/20170722102643_add_analytics_kind_to_spree_trackers.rb +0 -5
- data/db/migrate/20170727103056_rename_tracker_kind_field.rb +0 -5
- data/db/migrate/20171004223836_remove_icon_from_taxons.rb +0 -8
- data/db/migrate/20180222133746_add_unique_index_on_spree_promotions_code.rb +0 -6
- data/db/migrate/20180613080857_rename_guest_token_to_token_in_orders.rb +0 -5
- data/db/migrate/20180915160001_add_timestamps_to_spree_prices.rb +0 -12
- data/db/migrate/20181024100754_add_deleted_at_to_spree_credit_cards.rb +0 -6
- data/db/migrate/20190305121659_add_iso_and_iso3_validation_on_presence_and_uniqueness.rb +0 -18
- data/db/migrate/20190523092729_add_user_id_and_deleted_at_to_spree_addresses.rb +0 -12
- data/db/migrate/20191005121504_add_store_id_to_payment_methods.rb +0 -7
- data/db/migrate/20191016134113_add_deafult_value_for_store_default_currency.rb +0 -5
- data/db/migrate/20200102141311_add_social_to_spree_stores.rb +0 -7
- data/db/migrate/20200212144523_add_hide_from_nav_to_taxons.rb +0 -5
- data/lib/friendly_id/slug_rails5_patch.rb +0 -11
- data/lib/generators/spree/dummy/templates/initializers/bullet.rb +0 -5
- data/lib/generators/spree/install/templates/config/initializers/spree_storefront.rb +0 -1
- data/lib/generators/spree/install/templates/config/spree_storefront.yml +0 -67
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/backend/all.js +0 -17
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/frontend/all.js +0 -18
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/backend/all.css +0 -16
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/frontend/all.css +0 -16
- data/lib/spree/i18n/base.rb +0 -17
- data/lib/spree/i18n/initializer.rb +0 -1
- data/lib/tasks/email.rake +0 -10
- data/vendor/assets/javascripts/fetch.umd.js +0 -531
- data/vendor/assets/javascripts/jquery.payment.js +0 -652
- data/vendor/assets/javascripts/jsuri.js +0 -458
- data/vendor/assets/javascripts/polyfill.min.js +0 -1
- /data/app/models/spree/return_item/eligibility_validator/{r_m_a_required.rb → rma_required.rb} +0 -0
- /data/lib/spree/{dependencies_helper.rb → core/dependencies_helper.rb} +0 -0
- /data/{app/models/spree → lib/spree/core}/preferences/scoped_store.rb +0 -0
@@ -83,6 +83,11 @@ module Spree
|
|
83
83
|
order.process_payments!
|
84
84
|
end
|
85
85
|
end
|
86
|
+
|
87
|
+
before_transition to: :complete do |order|
|
88
|
+
order.create_digital_links if order.some_digital?
|
89
|
+
end
|
90
|
+
|
86
91
|
after_transition to: :complete, do: :persist_user_credit_card
|
87
92
|
before_transition to: :payment, do: :set_shipments_cost
|
88
93
|
before_transition to: :payment, do: :create_tax_charge!
|
@@ -107,6 +112,7 @@ module Spree
|
|
107
112
|
|
108
113
|
before_transition to: :resumed, do: :ensure_line_item_variants_are_not_discontinued
|
109
114
|
before_transition to: :resumed, do: :ensure_line_items_are_in_stock
|
115
|
+
before_transition to: :resumed, do: proc { |order| order.state_machine_resumed = true }
|
110
116
|
|
111
117
|
after_transition to: :complete, do: :finalize!
|
112
118
|
after_transition to: :resumed, do: :after_resume
|
@@ -220,7 +226,7 @@ module Spree
|
|
220
226
|
@updating_params = params
|
221
227
|
run_callbacks :updating_from_params do
|
222
228
|
# Set existing card after setting permitted parameters because
|
223
|
-
# rails would slice parameters
|
229
|
+
# rails would slice parameters containing ruby objects, apparently
|
224
230
|
existing_card_id = @updating_params[:order] ? @updating_params[:order].delete(:existing_card) : nil
|
225
231
|
|
226
232
|
attributes = if @updating_params[:order]
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module Spree
|
2
|
+
class Order < Spree::Base
|
3
|
+
module Digital
|
4
|
+
def digital?
|
5
|
+
if line_items.empty?
|
6
|
+
false
|
7
|
+
else
|
8
|
+
line_items.all?(&:digital?)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def some_digital?
|
13
|
+
line_items.any?(&:digital?)
|
14
|
+
end
|
15
|
+
|
16
|
+
def digital_line_items
|
17
|
+
line_items.select(&:digital?)
|
18
|
+
end
|
19
|
+
|
20
|
+
def digital_links
|
21
|
+
digital_line_items.map(&:digital_links).flatten
|
22
|
+
end
|
23
|
+
|
24
|
+
def create_digital_links
|
25
|
+
digital_line_items.each do |line_item|
|
26
|
+
line_item.variant.digitals.each do |digital|
|
27
|
+
line_item.digital_links.create!(digital: digital)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module Spree
|
2
|
+
class Order < Spree::Base
|
3
|
+
module Emails
|
4
|
+
extend ActiveSupport::Concern
|
5
|
+
|
6
|
+
def deliver_order_confirmation_email
|
7
|
+
# you can overwrite this method in your application / extension to send out the confirmation email
|
8
|
+
# or use `spree_emails` gem
|
9
|
+
# YourEmailVendor.deliver_order_confirmation_email(id) # `id` = ID of the Order being sent, you can also pass the entire Order object using `self`
|
10
|
+
# update_column(:confirmation_delivered, true) # if you would like to mark that the email was sent
|
11
|
+
end
|
12
|
+
|
13
|
+
# If you would like to also send confirmation email to store owner(s)
|
14
|
+
def deliver_store_owner_order_notification_email?
|
15
|
+
false
|
16
|
+
end
|
17
|
+
|
18
|
+
def deliver_store_owner_order_notification_email
|
19
|
+
# you can overwrite this method in your application / extension to send out the confirmation email
|
20
|
+
# or use `spree_emails` gem
|
21
|
+
# YourEmailVendor.deliver_store_owner_notification_email(id) # `id` = ID of the Order being sent, you can also pass the entire Order object using `self`
|
22
|
+
# update_column(:store_owner_notification_delivered, true) # if you would like to mark that the email was sent
|
23
|
+
end
|
24
|
+
|
25
|
+
def send_cancel_email
|
26
|
+
# you can overwrite this method in your application / extension to send out the confirmation email
|
27
|
+
# or use `spree_emails` gem
|
28
|
+
# YourEmailVendor.deliver_cancel_email(id) # `id` = ID of the Order being sent, you can also pass the entire Order object using `self`
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module Spree
|
2
2
|
class Order < Spree::Base
|
3
3
|
module Payments
|
4
|
-
extend ActiveSupport::Concern
|
4
|
+
extend ActiveSupport::Concern # FIXME: this module is not required to be a concern
|
5
5
|
included do
|
6
6
|
# processes any pending payments and must return a boolean as it's
|
7
7
|
# return value is used by the checkout state_machine to determine
|
@@ -32,7 +32,7 @@ module Spree
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def pending_payments
|
35
|
-
payments.
|
35
|
+
payments.pending
|
36
36
|
end
|
37
37
|
|
38
38
|
def unprocessed_payments
|
@@ -52,7 +52,7 @@ module Spree
|
|
52
52
|
|
53
53
|
payment.public_send(method)
|
54
54
|
|
55
|
-
if payment.completed? && payment_total !=
|
55
|
+
if payment.completed? && payment_total != total_without_pending_store_credits
|
56
56
|
self.payment_total += payment.amount
|
57
57
|
end
|
58
58
|
end
|
@@ -60,6 +60,14 @@ module Spree
|
|
60
60
|
result = !!Spree::Config[:allow_checkout_on_gateway_error]
|
61
61
|
errors.add(:base, e.message) && (return result)
|
62
62
|
end
|
63
|
+
|
64
|
+
# Pending store credits are not added to `self.payment_total`.
|
65
|
+
# It can cause a situation where the amount of the credit card payment reduced with store credits
|
66
|
+
# may be added twice to `self.payment_total` causing wrong `order.outstanding_balance`
|
67
|
+
# calculations and thus an incorrect payment state.
|
68
|
+
def total_without_pending_store_credits
|
69
|
+
total - payments.map { |p| p.amount if p.source.is_a?(Spree::StoreCredit) && p.pending? }.sum(&:to_f)
|
70
|
+
end
|
63
71
|
end
|
64
72
|
end
|
65
73
|
end
|
data/app/models/spree/order.rb
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
require_dependency 'spree/order/checkout'
|
2
2
|
require_dependency 'spree/order/currency_updater'
|
3
|
+
require_dependency 'spree/order/digital'
|
3
4
|
require_dependency 'spree/order/payments'
|
4
5
|
require_dependency 'spree/order/store_credit'
|
6
|
+
require_dependency 'spree/order/emails'
|
5
7
|
|
6
8
|
module Spree
|
7
9
|
class Order < Spree::Base
|
@@ -10,19 +12,36 @@ module Spree
|
|
10
12
|
|
11
13
|
include Spree::Order::Checkout
|
12
14
|
include Spree::Order::CurrencyUpdater
|
15
|
+
include Spree::Order::Digital
|
13
16
|
include Spree::Order::Payments
|
14
17
|
include Spree::Order::StoreCredit
|
15
18
|
include Spree::Order::AddressBook
|
19
|
+
include Spree::Order::Emails
|
16
20
|
include Spree::Core::NumberGenerator.new(prefix: 'R')
|
17
21
|
include Spree::Core::TokenGenerator
|
18
22
|
|
23
|
+
include NumberIdentifier
|
19
24
|
include NumberAsParam
|
25
|
+
include SingleStoreResource
|
26
|
+
include MemoizedData
|
27
|
+
include Metadata
|
28
|
+
if defined?(Spree::Webhooks)
|
29
|
+
include Spree::Webhooks::HasWebhooks
|
30
|
+
end
|
31
|
+
if defined?(Spree::Security::Orders)
|
32
|
+
include Spree::Security::Orders
|
33
|
+
end
|
34
|
+
if defined?(Spree::VendorConcern)
|
35
|
+
include Spree::VendorConcern
|
36
|
+
end
|
37
|
+
|
38
|
+
MEMOIZED_METHODS = %w(tax_zone)
|
20
39
|
|
21
40
|
extend Spree::DisplayMoney
|
22
41
|
money_methods :outstanding_balance, :item_total, :adjustment_total,
|
23
42
|
:included_tax_total, :additional_tax_total, :tax_total,
|
24
43
|
:shipment_total, :promo_total, :total,
|
25
|
-
:cart_promo_total
|
44
|
+
:cart_promo_total, :pre_tax_item_amount, :pre_tax_total
|
26
45
|
|
27
46
|
alias display_ship_total display_shipment_total
|
28
47
|
alias_attribute :ship_total, :shipment_total
|
@@ -48,26 +67,34 @@ module Spree
|
|
48
67
|
|
49
68
|
checkout_flow do
|
50
69
|
go_to_state :address
|
51
|
-
go_to_state :delivery
|
70
|
+
go_to_state :delivery, if: ->(order) { order.delivery_required? }
|
52
71
|
go_to_state :payment, if: ->(order) { order.payment? || order.payment_required? }
|
53
72
|
go_to_state :confirm, if: ->(order) { order.confirmation_required? }
|
54
73
|
go_to_state :complete
|
55
74
|
remove_transition from: :delivery, to: :confirm, unless: ->(order) { order.confirmation_required? }
|
56
75
|
end
|
57
76
|
|
58
|
-
self.whitelisted_ransackable_associations = %w[shipments user promotions bill_address ship_address line_items store]
|
59
|
-
self.whitelisted_ransackable_attributes = %w[
|
77
|
+
self.whitelisted_ransackable_associations = %w[shipments user created_by approver canceler promotions bill_address ship_address line_items store]
|
78
|
+
self.whitelisted_ransackable_attributes = %w[
|
79
|
+
completed_at email number state payment_state shipment_state
|
80
|
+
total item_total considered_risky channel
|
81
|
+
]
|
60
82
|
|
61
83
|
attr_reader :coupon_code
|
62
84
|
attr_accessor :temporary_address, :temporary_credit_card
|
63
85
|
|
86
|
+
attribute :state_machine_resumed, :boolean
|
87
|
+
|
64
88
|
if Spree.user_class
|
65
|
-
belongs_to :user, class_name: Spree.user_class
|
66
|
-
belongs_to :created_by, class_name: Spree.user_class.to_s, optional: true
|
67
|
-
belongs_to :approver, class_name: Spree.user_class.to_s, optional: true
|
68
|
-
belongs_to :canceler, class_name: Spree.user_class.to_s, optional: true
|
89
|
+
belongs_to :user, class_name: "::#{Spree.user_class}", optional: true
|
69
90
|
else
|
70
91
|
belongs_to :user, optional: true
|
92
|
+
end
|
93
|
+
if Spree.admin_user_class
|
94
|
+
belongs_to :created_by, class_name: Spree.admin_user_class.to_s, optional: true
|
95
|
+
belongs_to :approver, class_name: Spree.admin_user_class.to_s, optional: true
|
96
|
+
belongs_to :canceler, class_name: Spree.admin_user_class.to_s, optional: true
|
97
|
+
else
|
71
98
|
belongs_to :created_by, optional: true
|
72
99
|
belongs_to :approver, optional: true
|
73
100
|
belongs_to :canceler, optional: true
|
@@ -93,6 +120,7 @@ module Spree
|
|
93
120
|
has_many :reimbursements, inverse_of: :order, class_name: 'Spree::Reimbursement'
|
94
121
|
has_many :line_item_adjustments, through: :line_items, source: :adjustments
|
95
122
|
has_many :inventory_units, inverse_of: :order, class_name: 'Spree::InventoryUnit'
|
123
|
+
has_many :return_items, through: :inventory_units, class_name: 'Spree::ReturnItem'
|
96
124
|
has_many :variants, through: :line_items
|
97
125
|
has_many :products, through: :variants
|
98
126
|
has_many :refunds, through: :payments
|
@@ -121,15 +149,17 @@ module Spree
|
|
121
149
|
# Needs to happen before save_permalink is called
|
122
150
|
before_validation :ensure_store_presence
|
123
151
|
before_validation :ensure_currency_presence
|
152
|
+
|
124
153
|
before_validation :clone_billing_address, if: :use_billing?
|
125
154
|
attr_accessor :use_billing
|
126
155
|
|
127
156
|
before_create :create_token
|
128
157
|
before_create :link_by_email
|
129
|
-
before_update :homogenize_line_item_currencies, if: :currency_changed?
|
158
|
+
before_update :ensure_updated_shipments, :homogenize_line_item_currencies, if: :currency_changed?
|
130
159
|
|
131
160
|
with_options presence: true do
|
132
|
-
|
161
|
+
# we want to have this case_sentive: true as changing it to false causes all SQL to use LOWER(slug)
|
162
|
+
# which is very costly and slow on large set of records
|
133
163
|
validates :email, length: { maximum: 254, allow_blank: true }, email: { allow_blank: true }, if: :require_email
|
134
164
|
validates :item_count, numericality: { greater_than_or_equal_to: 0, less_than: 2**31, only_integer: true, allow_blank: true }
|
135
165
|
validates :store
|
@@ -157,6 +187,9 @@ module Spree
|
|
157
187
|
scope :completed_between, ->(start_date, end_date) { where(completed_at: start_date..end_date) }
|
158
188
|
scope :complete, -> { where.not(completed_at: nil) }
|
159
189
|
scope :incomplete, -> { where(completed_at: nil) }
|
190
|
+
scope :not_canceled, -> { where.not(state: 'canceled') }
|
191
|
+
scope :with_deleted_bill_address, -> { joins(:bill_address).where.not(Address.table_name => { deleted_at: nil }) }
|
192
|
+
scope :with_deleted_ship_address, -> { joins(:ship_address).where.not(Address.table_name => { deleted_at: nil }) }
|
160
193
|
|
161
194
|
# shows completed orders first, by their completed_at date, then uncompleted orders by their created_at
|
162
195
|
scope :reverse_chronological, -> { order(Arel.sql('spree_orders.completed_at IS NULL'), completed_at: :desc, created_at: :desc) }
|
@@ -167,14 +200,19 @@ module Spree
|
|
167
200
|
update_hooks.add(hook)
|
168
201
|
end
|
169
202
|
|
170
|
-
# For
|
203
|
+
# For compatibility with Calculator::PriceSack
|
171
204
|
def amount
|
172
205
|
line_items.inject(0.0) { |sum, li| sum + li.amount }
|
173
206
|
end
|
174
207
|
|
175
208
|
# Sum of all line item amounts pre-tax
|
176
209
|
def pre_tax_item_amount
|
177
|
-
line_items.
|
210
|
+
line_items.sum(:pre_tax_amount)
|
211
|
+
end
|
212
|
+
|
213
|
+
# Sum of all line item and shipment pre-tax
|
214
|
+
def pre_tax_total
|
215
|
+
pre_tax_item_amount + shipments.sum(:pre_tax_amount)
|
178
216
|
end
|
179
217
|
|
180
218
|
def shipping_discount
|
@@ -193,6 +231,11 @@ module Spree
|
|
193
231
|
line_items.exists?
|
194
232
|
end
|
195
233
|
|
234
|
+
# Does this order require a physical delivery.
|
235
|
+
def delivery_required?
|
236
|
+
!digital?
|
237
|
+
end
|
238
|
+
|
196
239
|
# Is this a free order in which case the payment step should be skipped
|
197
240
|
def payment_required?
|
198
241
|
total.to_f > 0.0
|
@@ -297,15 +340,15 @@ module Spree
|
|
297
340
|
def outstanding_balance
|
298
341
|
if canceled?
|
299
342
|
-1 * payment_total
|
300
|
-
elsif refunds.exists?
|
301
|
-
# If refund has happened add it back to total to prevent balance_due payment state
|
302
|
-
# See: https://github.com/spree/spree/issues/6229 & https://github.com/spree/spree/issues/8136
|
303
|
-
total - (payment_total + refunds.sum(:amount))
|
304
343
|
else
|
305
|
-
total - payment_total
|
344
|
+
total - (payment_total + reimbursement_paid_total)
|
306
345
|
end
|
307
346
|
end
|
308
347
|
|
348
|
+
def reimbursement_paid_total
|
349
|
+
reimbursements.sum(&:paid_amount)
|
350
|
+
end
|
351
|
+
|
309
352
|
def outstanding_balance?
|
310
353
|
outstanding_balance != 0
|
311
354
|
end
|
@@ -320,6 +363,10 @@ module Spree
|
|
320
363
|
complete? || resumed? || awaiting_return? || returned?
|
321
364
|
end
|
322
365
|
|
366
|
+
def uneditable?
|
367
|
+
complete? || canceled? || returned?
|
368
|
+
end
|
369
|
+
|
323
370
|
def credit_cards
|
324
371
|
credit_card_ids = payments.from_credit_card.pluck(:source_id).uniq
|
325
372
|
CreditCard.where(id: credit_card_ids)
|
@@ -350,6 +397,7 @@ module Spree
|
|
350
397
|
touch :completed_at
|
351
398
|
|
352
399
|
deliver_order_confirmation_email unless confirmation_delivered?
|
400
|
+
deliver_store_owner_order_notification_email if deliver_store_owner_order_notification_email?
|
353
401
|
|
354
402
|
consider_risk
|
355
403
|
end
|
@@ -360,17 +408,16 @@ module Spree
|
|
360
408
|
save!
|
361
409
|
end
|
362
410
|
|
363
|
-
def deliver_order_confirmation_email
|
364
|
-
OrderMailer.confirm_email(id).deliver_later
|
365
|
-
update_column(:confirmation_delivered, true)
|
366
|
-
end
|
367
|
-
|
368
411
|
# Helper methods for checkout steps
|
369
412
|
def paid?
|
370
|
-
|
413
|
+
payments.valid.completed.size == payments.valid.size && payments.valid.sum(:amount) >= total
|
371
414
|
end
|
372
415
|
|
373
416
|
def available_payment_methods(store = nil)
|
417
|
+
if store.present?
|
418
|
+
ActiveSupport::Deprecation.warn('The `store` parameter is deprecated and will be removed in Spree 5. Order is already associated with Store')
|
419
|
+
end
|
420
|
+
|
374
421
|
@available_payment_methods ||= collect_payment_methods(store)
|
375
422
|
end
|
376
423
|
|
@@ -402,21 +449,15 @@ module Spree
|
|
402
449
|
end
|
403
450
|
|
404
451
|
def empty!
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
updater.update_item_count
|
410
|
-
adjustments.destroy_all
|
411
|
-
shipments.destroy_all
|
412
|
-
state_changes.destroy_all
|
413
|
-
order_promotions.destroy_all
|
452
|
+
ActiveSupport::Deprecation.warn(<<-DEPRECATION, caller)
|
453
|
+
`Order#empty!` is deprecated and will be removed in Spree 5.0.
|
454
|
+
Please use `Spree::Cart::Empty.call(order: order)` instead.
|
455
|
+
DEPRECATION
|
414
456
|
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
end
|
457
|
+
raise Spree.t(:cannot_empty_completed_order) if completed?
|
458
|
+
|
459
|
+
result = Spree::Dependencies.cart_empty_service.constantize.call(order: self)
|
460
|
+
result.value
|
420
461
|
end
|
421
462
|
|
422
463
|
def has_step?(step)
|
@@ -459,6 +500,10 @@ module Spree
|
|
459
500
|
%w(partial shipped).include?(shipment_state)
|
460
501
|
end
|
461
502
|
|
503
|
+
def fully_shipped?
|
504
|
+
shipments.shipped.size == shipments.size
|
505
|
+
end
|
506
|
+
|
462
507
|
def create_proposed_shipments
|
463
508
|
all_adjustments.shipping.delete_all
|
464
509
|
|
@@ -554,6 +599,10 @@ module Spree
|
|
554
599
|
!approved?
|
555
600
|
end
|
556
601
|
|
602
|
+
def can_be_destroyed?
|
603
|
+
!completed? && payments.completed.empty?
|
604
|
+
end
|
605
|
+
|
557
606
|
def consider_risk
|
558
607
|
considered_risky! if is_risky? && !approved?
|
559
608
|
end
|
@@ -566,11 +615,6 @@ module Spree
|
|
566
615
|
update_column(:considered_risky, false)
|
567
616
|
end
|
568
617
|
|
569
|
-
def reload(options = nil)
|
570
|
-
remove_instance_variable(:@tax_zone) if defined?(@tax_zone)
|
571
|
-
super
|
572
|
-
end
|
573
|
-
|
574
618
|
def tax_total
|
575
619
|
included_tax_total + additional_tax_total
|
576
620
|
end
|
@@ -602,19 +646,16 @@ module Spree
|
|
602
646
|
promotions.pluck(:code).compact.first
|
603
647
|
end
|
604
648
|
|
605
|
-
def payments_attributes=(attributes)
|
606
|
-
validate_payments_attributes(attributes)
|
607
|
-
super(attributes)
|
608
|
-
end
|
609
|
-
|
610
649
|
def validate_payments_attributes(attributes)
|
650
|
+
ActiveSupport::Deprecation.warn('`Order#validate_payments_attributes` is deprecated and will be removed in Spree 5')
|
651
|
+
|
611
652
|
# Ensure the payment methods specified are allowed for this user
|
612
|
-
|
653
|
+
payment_method_ids = available_payment_methods.map(&:id).map(&:to_s)
|
654
|
+
|
613
655
|
attributes.each do |payment_attributes|
|
614
|
-
payment_method_id = payment_attributes[:payment_method_id]
|
656
|
+
payment_method_id = payment_attributes[:payment_method_id].to_s
|
615
657
|
|
616
|
-
|
617
|
-
payment_methods.find(payment_method_id) if payment_method_id
|
658
|
+
raise ActiveRecord::RecordNotFound unless payment_method_ids.include?(payment_method_id)
|
618
659
|
end
|
619
660
|
end
|
620
661
|
|
@@ -641,6 +682,13 @@ module Spree
|
|
641
682
|
sum(:amount)
|
642
683
|
end
|
643
684
|
|
685
|
+
def has_free_shipping?
|
686
|
+
shipment_adjustments.
|
687
|
+
joins(:promotion_action).
|
688
|
+
where(spree_adjustments: { eligible: true, source_type: 'Spree::PromotionAction' },
|
689
|
+
spree_promotion_actions: { type: 'Spree::Promotion::Actions::FreeShipping' }).exists?
|
690
|
+
end
|
691
|
+
|
644
692
|
private
|
645
693
|
|
646
694
|
def link_by_email
|
@@ -678,10 +726,6 @@ module Spree
|
|
678
726
|
update_with_updater!
|
679
727
|
end
|
680
728
|
|
681
|
-
def send_cancel_email
|
682
|
-
OrderMailer.cancel_email(id).deliver_later
|
683
|
-
end
|
684
|
-
|
685
729
|
def after_resume
|
686
730
|
shipments.each(&:resume!)
|
687
731
|
consider_risk
|
@@ -692,7 +736,7 @@ module Spree
|
|
692
736
|
end
|
693
737
|
|
694
738
|
def ensure_currency_presence
|
695
|
-
self.currency ||= store.default_currency
|
739
|
+
self.currency ||= store.default_currency
|
696
740
|
end
|
697
741
|
|
698
742
|
def create_token
|
@@ -700,7 +744,12 @@ module Spree
|
|
700
744
|
end
|
701
745
|
|
702
746
|
def collect_payment_methods(store = nil)
|
703
|
-
|
747
|
+
if store.present?
|
748
|
+
ActiveSupport::Deprecation.warn('The `store` parameter is deprecated and will be removed in Spree 5. Order is already associated with Store')
|
749
|
+
end
|
750
|
+
store ||= self.store
|
751
|
+
|
752
|
+
store.payment_methods.available_on_front_end.select { |pm| pm.available_for_order?(self) }
|
704
753
|
end
|
705
754
|
|
706
755
|
def credit_card_nil_payment?(attributes)
|
@@ -120,7 +120,7 @@ module Spree
|
|
120
120
|
if order.completed?
|
121
121
|
current_on_hand = shipment.stock_location.count_on_hand(variant)
|
122
122
|
|
123
|
-
if current_on_hand
|
123
|
+
if current_on_hand&.negative? && current_on_hand.abs < removed_backordered
|
124
124
|
shipment.stock_location.restock_backordered variant, current_on_hand.abs, shipment
|
125
125
|
else
|
126
126
|
shipment.stock_location.restock_backordered variant, removed_backordered, shipment
|
@@ -3,7 +3,7 @@ module Spree
|
|
3
3
|
belongs_to :order, class_name: 'Spree::Order'
|
4
4
|
belongs_to :promotion, class_name: 'Spree::Promotion'
|
5
5
|
|
6
|
-
delegate :name, :description, :code, to: :promotion
|
6
|
+
delegate :name, :description, :code, :public_metadata, to: :promotion
|
7
7
|
delegate :currency, to: :order
|
8
8
|
|
9
9
|
extend Spree::DisplayMoney
|
@@ -72,7 +72,7 @@ module Spree
|
|
72
72
|
end
|
73
73
|
|
74
74
|
def cancel!
|
75
|
-
response = payment_method.cancel(response_code)
|
75
|
+
response = payment_method.cancel(response_code, self)
|
76
76
|
handle_response(response, :void, :failure)
|
77
77
|
end
|
78
78
|
|
@@ -152,6 +152,7 @@ module Spree
|
|
152
152
|
def protect_from_connection_error
|
153
153
|
yield
|
154
154
|
rescue ActiveMerchant::ConnectionError => e
|
155
|
+
failure!
|
155
156
|
gateway_error(e)
|
156
157
|
end
|
157
158
|
|
@@ -163,8 +164,8 @@ module Spree
|
|
163
164
|
else
|
164
165
|
error.to_s
|
165
166
|
end
|
166
|
-
logger.error(Spree.t(:gateway_error))
|
167
|
-
logger.error(" #{error.to_yaml}")
|
167
|
+
Rails.logger.error(Spree.t(:gateway_error))
|
168
|
+
Rails.logger.error(" #{error.to_yaml}")
|
168
169
|
raise Core::GatewayError, text
|
169
170
|
end
|
170
171
|
|