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
@@ -1,29 +1,45 @@
|
|
1
1
|
module Spree
|
2
2
|
class ProductProperty < Spree::Base
|
3
|
+
include Spree::FilterParam
|
4
|
+
|
5
|
+
auto_strip_attributes :value
|
6
|
+
|
3
7
|
acts_as_list scope: :product
|
4
8
|
|
5
9
|
with_options inverse_of: :product_properties do
|
6
10
|
belongs_to :product, touch: true, class_name: 'Spree::Product'
|
7
|
-
belongs_to :property, class_name: 'Spree::Property'
|
11
|
+
belongs_to :property, touch: true, class_name: 'Spree::Property'
|
8
12
|
end
|
9
13
|
|
10
14
|
validates :property, presence: true
|
11
|
-
|
12
|
-
validates :value,
|
15
|
+
validates :property_id, uniqueness: { scope: :product_id }
|
16
|
+
validates :value, presence: true
|
13
17
|
|
14
18
|
default_scope { order(:position) }
|
15
19
|
|
16
|
-
|
20
|
+
scope :filterable, -> { joins(:property).where(Property.table_name => { filterable: true }) }
|
21
|
+
scope :for_products, ->(products) { joins(:product).merge(products) }
|
22
|
+
|
23
|
+
self.whitelisted_ransackable_attributes = ['value', 'filter_param']
|
17
24
|
self.whitelisted_ransackable_associations = ['property']
|
18
25
|
|
19
26
|
# virtual attributes for use with AJAX completion stuff
|
20
27
|
delegate :name, :presentation, to: :property, prefix: true, allow_nil: true
|
21
28
|
|
22
29
|
def property_name=(name)
|
30
|
+
ActiveSupport::Deprecation.warn(<<-DEPRECATION, caller)
|
31
|
+
`ProductProperty#property_name=` is deprecated and will be removed in Spree 5.0.
|
32
|
+
DEPRECATION
|
23
33
|
if name.present?
|
24
34
|
# don't use `find_by :name` to workaround globalize/globalize#423 bug
|
25
35
|
self.property = Property.where(name: name).first_or_create(presentation: name)
|
26
36
|
end
|
27
37
|
end
|
38
|
+
|
39
|
+
protected
|
40
|
+
|
41
|
+
def param_candidate
|
42
|
+
value
|
43
|
+
end
|
28
44
|
end
|
29
45
|
end
|
@@ -23,7 +23,7 @@ module Spree
|
|
23
23
|
order = line_item.order
|
24
24
|
|
25
25
|
# Prevent negative order totals
|
26
|
-
amounts << order.amount - order.adjustments.sum(:amount).abs if order.adjustments.any?
|
26
|
+
amounts << order.amount - order.adjustments.eligible.sum(:amount).abs if order.adjustments.eligible.any?
|
27
27
|
|
28
28
|
amounts.min * -1
|
29
29
|
end
|
@@ -11,7 +11,7 @@ module Spree
|
|
11
11
|
|
12
12
|
def eligible?(order, options = {})
|
13
13
|
country_id = options[:country_id] || order.ship_address.try(:country_id)
|
14
|
-
unless country_id.eql?(preferred_country_id ||
|
14
|
+
unless country_id.eql?(preferred_country_id || order.store.default_country_id)
|
15
15
|
eligibility_errors.add(:base, eligibility_error_message(:wrong_country))
|
16
16
|
end
|
17
17
|
|
@@ -2,7 +2,7 @@ module Spree
|
|
2
2
|
class Promotion
|
3
3
|
module Rules
|
4
4
|
class FirstOrder < PromotionRule
|
5
|
-
attr_reader :user, :email
|
5
|
+
attr_reader :user, :email, :store
|
6
6
|
|
7
7
|
def applicable?(promotable)
|
8
8
|
promotable.is_a?(Spree::Order)
|
@@ -11,6 +11,7 @@ module Spree
|
|
11
11
|
def eligible?(order, options = {})
|
12
12
|
@user = order.try(:user) || options[:user]
|
13
13
|
@email = order.email
|
14
|
+
@store = order.store
|
14
15
|
|
15
16
|
if user || email
|
16
17
|
if !completed_orders.blank? && completed_orders.first != order
|
@@ -26,11 +27,11 @@ module Spree
|
|
26
27
|
private
|
27
28
|
|
28
29
|
def completed_orders
|
29
|
-
user ? user.orders.complete : orders_by_email
|
30
|
+
user ? user.orders.for_store(store).complete : orders_by_email
|
30
31
|
end
|
31
32
|
|
32
33
|
def orders_by_email
|
33
|
-
|
34
|
+
store.orders.where(email: email).complete
|
34
35
|
end
|
35
36
|
end
|
36
37
|
end
|
@@ -4,9 +4,9 @@ module Spree
|
|
4
4
|
module OptionValueWithNumerificationSupport
|
5
5
|
def preferred_eligible_values
|
6
6
|
values = super || {}
|
7
|
-
Hash[values.keys.
|
7
|
+
Hash[values.keys.zip(
|
8
8
|
values.values.map do |v|
|
9
|
-
(v.is_a?(Array) ? v : v.split(','))
|
9
|
+
(v.is_a?(Array) ? v : v.split(','))
|
10
10
|
end
|
11
11
|
)]
|
12
12
|
end
|
@@ -31,7 +31,7 @@ module Spree
|
|
31
31
|
end
|
32
32
|
|
33
33
|
def actionable?(line_item)
|
34
|
-
product_id = line_item.
|
34
|
+
product_id = line_item.product_id
|
35
35
|
option_values_ids = line_item.variant.option_value_ids
|
36
36
|
eligible_product_ids = preferred_eligible_values.keys
|
37
37
|
eligible_value_ids = preferred_eligible_values[product_id]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# A rule to limit a promotion based on products in the order.
|
2
2
|
# Can require all or any of the products to be present.
|
3
|
-
# Valid products either come from assigned product group or are
|
3
|
+
# Valid products either come from assigned product group or are assigned directly to the rule.
|
4
4
|
module Spree
|
5
5
|
class Promotion
|
6
6
|
module Rules
|
@@ -58,7 +58,8 @@ module Spree
|
|
58
58
|
end
|
59
59
|
|
60
60
|
def product_ids_string=(s)
|
61
|
-
|
61
|
+
# check this
|
62
|
+
self.product_ids = s
|
62
63
|
end
|
63
64
|
end
|
64
65
|
end
|
@@ -30,7 +30,12 @@ module Spree
|
|
30
30
|
end
|
31
31
|
|
32
32
|
def actionable?(line_item)
|
33
|
-
|
33
|
+
store = line_item.order.store
|
34
|
+
|
35
|
+
store.products.
|
36
|
+
joins(:classifications).
|
37
|
+
where(Spree::Classification.table_name => { taxon_id: taxon_ids, product_id: line_item.product_id }).
|
38
|
+
exists?
|
34
39
|
end
|
35
40
|
|
36
41
|
def taxon_ids_string
|
@@ -39,14 +44,16 @@ module Spree
|
|
39
44
|
|
40
45
|
def taxon_ids_string=(s)
|
41
46
|
ids = s.to_s.split(',').map(&:strip)
|
42
|
-
self.taxons = Spree::Taxon.find(ids)
|
47
|
+
self.taxons = Spree::Taxon.for_stores(stores).find(ids)
|
43
48
|
end
|
44
49
|
|
45
50
|
private
|
46
51
|
|
47
52
|
# All taxons in an order
|
48
53
|
def order_taxons(order)
|
49
|
-
Spree::
|
54
|
+
taxon_ids = Spree::Classification.where(product_id: order.product_ids).pluck(:taxon_id).uniq
|
55
|
+
|
56
|
+
order.store.taxons.where(id: taxon_ids)
|
50
57
|
end
|
51
58
|
|
52
59
|
# ids of taxons rules and taxons rules children
|
@@ -62,10 +69,6 @@ module Spree
|
|
62
69
|
def taxons_in_order_including_parents(order)
|
63
70
|
order_taxons_in_taxons_and_children(order).inject([]) { |taxons, taxon| taxons << taxon.self_and_ancestors }.flatten.uniq
|
64
71
|
end
|
65
|
-
|
66
|
-
def taxon_product_ids
|
67
|
-
Spree::Product.joins(:taxons).where(spree_taxons: { id: taxons.pluck(:id) }).pluck(:id).uniq
|
68
|
-
end
|
69
72
|
end
|
70
73
|
end
|
71
74
|
end
|
@@ -1,5 +1,14 @@
|
|
1
1
|
module Spree
|
2
2
|
class Promotion < Spree::Base
|
3
|
+
include MultiStoreResource
|
4
|
+
include Metadata
|
5
|
+
if defined?(Spree::Webhooks)
|
6
|
+
include Spree::Webhooks::HasWebhooks
|
7
|
+
end
|
8
|
+
if defined?(Spree::Security::Promotions)
|
9
|
+
include Spree::Security::Promotions
|
10
|
+
end
|
11
|
+
|
3
12
|
MATCH_POLICIES = %w(all any)
|
4
13
|
UNACTIVATABLE_ORDER_STATES = ['complete', 'awaiting_return', 'returned']
|
5
14
|
|
@@ -16,17 +25,19 @@ module Spree
|
|
16
25
|
has_many :order_promotions, class_name: 'Spree::OrderPromotion'
|
17
26
|
has_many :orders, through: :order_promotions, class_name: 'Spree::Order'
|
18
27
|
|
28
|
+
has_many :store_promotions, class_name: 'Spree::StorePromotion'
|
29
|
+
has_many :stores, class_name: 'Spree::Store', through: :store_promotions
|
30
|
+
|
19
31
|
accepts_nested_attributes_for :promotion_actions, :promotion_rules
|
20
32
|
|
21
33
|
validates_associated :rules
|
22
34
|
|
23
35
|
validates :name, presence: true
|
24
|
-
validates :path, :code, uniqueness: { case_sensitive: false, allow_blank: true }
|
25
36
|
validates :usage_limit, numericality: { greater_than: 0, allow_nil: true }
|
26
37
|
validates :description, length: { maximum: 255 }, allow_blank: true
|
27
38
|
validate :expires_at_must_be_later_than_starts_at, if: -> { starts_at && expires_at }
|
28
39
|
|
29
|
-
|
40
|
+
auto_strip_attributes :code, :path, :name
|
30
41
|
|
31
42
|
scope :coupons, -> { where.not(code: nil) }
|
32
43
|
scope :advertised, -> { where(advertise: true) }
|
@@ -42,7 +53,7 @@ module Spree
|
|
42
53
|
def self.with_coupon_code(coupon_code)
|
43
54
|
where("lower(#{table_name}.code) = ?", coupon_code.strip.downcase).
|
44
55
|
includes(:promotion_actions).where.not(spree_promotion_actions: { id: nil }).
|
45
|
-
|
56
|
+
last
|
46
57
|
end
|
47
58
|
|
48
59
|
def self.active
|
@@ -192,21 +203,10 @@ module Spree
|
|
192
203
|
end
|
193
204
|
|
194
205
|
def used_by?(user, excluded_orders = [])
|
195
|
-
|
196
|
-
:
|
197
|
-
:
|
198
|
-
:
|
199
|
-
].any? do |adjustment_type|
|
200
|
-
user.orders.complete.joins(adjustment_type).where(
|
201
|
-
spree_adjustments: {
|
202
|
-
source_type: 'Spree::PromotionAction',
|
203
|
-
source_id: actions.map(&:id),
|
204
|
-
eligible: true
|
205
|
-
}
|
206
|
-
).where.not(
|
207
|
-
id: excluded_orders.map(&:id)
|
208
|
-
).any?
|
209
|
-
end
|
206
|
+
user.orders.complete.joins(:promotions).joins(:all_adjustments).
|
207
|
+
where.not(spree_orders: { id: excluded_orders.map(&:id) }).
|
208
|
+
where(spree_promotions: { id: id }).
|
209
|
+
where(spree_adjustments: { source_type: 'Spree::PromotionAction', eligible: true }).any?
|
210
210
|
end
|
211
211
|
|
212
212
|
private
|
@@ -221,12 +221,6 @@ module Spree
|
|
221
221
|
end
|
222
222
|
end
|
223
223
|
|
224
|
-
def normalize_blank_values
|
225
|
-
[:code, :path].each do |column|
|
226
|
-
self[column] = nil if self[column].blank?
|
227
|
-
end
|
228
|
-
end
|
229
|
-
|
230
224
|
def match_all?
|
231
225
|
match_policy == 'all'
|
232
226
|
end
|
@@ -8,7 +8,7 @@ module Spree
|
|
8
8
|
|
9
9
|
scope :of_type, ->(t) { where(type: t) }
|
10
10
|
|
11
|
-
# This method should be
|
11
|
+
# This method should be overridden in subclass
|
12
12
|
# Updates the state of the order or performs some other action depending on the subclass
|
13
13
|
# options will contain the payload from the event that activated the promotion. This will include
|
14
14
|
# the key :user which allows user based actions to be performed in addition to actions on the order
|
@@ -13,12 +13,13 @@ module Spree
|
|
13
13
|
# the promotions system accurate and performant. Here they can plug custom
|
14
14
|
# handler to activate promos as they wish once an item is added to cart
|
15
15
|
class Cart
|
16
|
-
attr_reader :line_item, :order
|
16
|
+
attr_reader :line_item, :order, :store
|
17
17
|
attr_accessor :error, :success
|
18
18
|
|
19
19
|
def initialize(order, line_item = nil)
|
20
20
|
@order = order
|
21
21
|
@line_item = line_item
|
22
|
+
@store = order.store
|
22
23
|
end
|
23
24
|
|
24
25
|
def activate
|
@@ -34,7 +35,11 @@ module Spree
|
|
34
35
|
private
|
35
36
|
|
36
37
|
def promotions
|
37
|
-
|
38
|
+
promotion_scope.find_by_sql("#{order.promotions.active.to_sql} UNION #{promotion_scope.active.where(code: nil, path: nil).to_sql}")
|
39
|
+
end
|
40
|
+
|
41
|
+
def promotion_scope
|
42
|
+
::Spree::Promotion.for_store(store)
|
38
43
|
end
|
39
44
|
end
|
40
45
|
end
|
@@ -1,18 +1,19 @@
|
|
1
1
|
module Spree
|
2
2
|
module PromotionHandler
|
3
3
|
class Coupon
|
4
|
-
attr_reader :order
|
4
|
+
attr_reader :order, :store
|
5
5
|
attr_accessor :error, :success, :status_code
|
6
6
|
|
7
7
|
def initialize(order)
|
8
8
|
@order = order
|
9
|
+
@store = order.store
|
9
10
|
end
|
10
11
|
|
11
12
|
def apply
|
12
13
|
if order.coupon_code.present?
|
13
14
|
if promotion.present? && promotion.actions.exists?
|
14
15
|
handle_present_promotion
|
15
|
-
elsif
|
16
|
+
elsif store.promotions.with_coupon_code(order.coupon_code).try(:expired?)
|
16
17
|
set_error_code :coupon_code_expired
|
17
18
|
else
|
18
19
|
set_error_code :coupon_code_not_found
|
@@ -25,10 +26,9 @@ module Spree
|
|
25
26
|
|
26
27
|
def remove(coupon_code)
|
27
28
|
promotion = order.promotions.with_coupon_code(coupon_code)
|
28
|
-
|
29
29
|
if promotion.present?
|
30
30
|
# Order promotion has to be destroyed before line item removing
|
31
|
-
order.order_promotions.
|
31
|
+
order.order_promotions.where(promotion_id: promotion.id).destroy_all
|
32
32
|
|
33
33
|
remove_promotion_adjustments(promotion)
|
34
34
|
remove_promotion_line_items(promotion)
|
@@ -52,7 +52,7 @@ module Spree
|
|
52
52
|
end
|
53
53
|
|
54
54
|
def promotion
|
55
|
-
@promotion ||=
|
55
|
+
@promotion ||= store.promotions.active.includes(
|
56
56
|
:promotion_rules, :promotion_actions
|
57
57
|
).with_coupon_code(order.coupon_code)
|
58
58
|
end
|
@@ -76,7 +76,7 @@ module Spree
|
|
76
76
|
line_item = order.find_line_item_by_variant(item.variant)
|
77
77
|
next if line_item.blank?
|
78
78
|
|
79
|
-
Spree::Dependencies.cart_remove_item_service(order: order,
|
79
|
+
Spree::Dependencies.cart_remove_item_service.constantize.call(order: order, variant: item.variant, quantity: item.quantity)
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
@@ -2,12 +2,13 @@ module Spree
|
|
2
2
|
module PromotionHandler
|
3
3
|
# Used for activating promotions with shipping rules
|
4
4
|
class FreeShipping
|
5
|
-
attr_reader :order, :order_promo_ids
|
5
|
+
attr_reader :order, :order_promo_ids, :store
|
6
6
|
attr_accessor :error, :success
|
7
7
|
|
8
8
|
def initialize(order)
|
9
9
|
@order = order
|
10
|
-
@
|
10
|
+
@store = order.store
|
11
|
+
@order_promo_ids = order.promotions.ids
|
11
12
|
end
|
12
13
|
|
13
14
|
def activate
|
@@ -21,10 +22,8 @@ module Spree
|
|
21
22
|
private
|
22
23
|
|
23
24
|
def promotions
|
24
|
-
|
25
|
-
|
26
|
-
path: nil
|
27
|
-
)
|
25
|
+
store.promotions.active.joins(:promotion_actions).
|
26
|
+
where(Spree::PromotionAction.table_name => { type: 'Spree::Promotion::Actions::FreeShipping' }, path: nil).distinct
|
28
27
|
end
|
29
28
|
end
|
30
29
|
end
|
@@ -1,10 +1,11 @@
|
|
1
1
|
module Spree
|
2
2
|
module PromotionHandler
|
3
3
|
class Page
|
4
|
-
attr_reader :order, :path
|
4
|
+
attr_reader :order, :path, :store
|
5
5
|
|
6
6
|
def initialize(order, path)
|
7
7
|
@order = order
|
8
|
+
@store = order.store
|
8
9
|
@path = path.gsub(/\A\//, '')
|
9
10
|
end
|
10
11
|
|
@@ -17,7 +18,7 @@ module Spree
|
|
17
18
|
private
|
18
19
|
|
19
20
|
def promotion
|
20
|
-
@promotion ||=
|
21
|
+
@promotion ||= store.promotions.active.find_by(path: path)
|
21
22
|
end
|
22
23
|
end
|
23
24
|
end
|
@@ -1,15 +1,17 @@
|
|
1
1
|
module Spree
|
2
2
|
module PromotionHandler
|
3
3
|
class PromotionDuplicator
|
4
|
-
def initialize(promotion)
|
4
|
+
def initialize(promotion, random_string: nil)
|
5
5
|
@promotion = promotion
|
6
|
+
@random_string = random_string || generate_random_string(4)
|
6
7
|
end
|
7
8
|
|
8
9
|
def duplicate
|
9
10
|
@new_promotion = @promotion.dup
|
10
|
-
@new_promotion.path = "#{@promotion.path}
|
11
|
+
@new_promotion.path = "#{@promotion.path}_#{@random_string}"
|
11
12
|
@new_promotion.name = "New #{@promotion.name}"
|
12
|
-
@new_promotion.code = "#{@promotion.code}
|
13
|
+
@new_promotion.code = "#{@promotion.code}_#{@random_string}"
|
14
|
+
@new_promotion.stores = @promotion.stores
|
13
15
|
|
14
16
|
ActiveRecord::Base.transaction do
|
15
17
|
@new_promotion.save
|
@@ -33,6 +35,11 @@ module Spree
|
|
33
35
|
end
|
34
36
|
end
|
35
37
|
|
38
|
+
def generate_random_string(number)
|
39
|
+
charset = Array('A'..'Z') + Array('a'..'z')
|
40
|
+
Array.new(number) { charset.sample }.join
|
41
|
+
end
|
42
|
+
|
36
43
|
def copy_actions
|
37
44
|
@promotion.promotion_actions.each do |action|
|
38
45
|
new_action = action.dup
|
@@ -3,6 +3,8 @@ module Spree
|
|
3
3
|
class PromotionRule < Spree::Base
|
4
4
|
belongs_to :promotion, class_name: 'Spree::Promotion', inverse_of: :promotion_rules
|
5
5
|
|
6
|
+
delegate :stores, to: :promotion
|
7
|
+
|
6
8
|
scope :of_type, ->(t) { where(type: t) }
|
7
9
|
|
8
10
|
validate :unique_per_promotion, on: :create
|
@@ -33,7 +35,7 @@ module Spree
|
|
33
35
|
|
34
36
|
def unique_per_promotion
|
35
37
|
if Spree::PromotionRule.exists?(promotion_id: promotion_id, type: self.class.name)
|
36
|
-
errors
|
38
|
+
errors.add(:base, 'Promotion already contains this rule type')
|
37
39
|
end
|
38
40
|
end
|
39
41
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module Spree
|
2
2
|
class PromotionRuleUser < Spree::Base
|
3
3
|
belongs_to :promotion_rule, class_name: 'Spree::PromotionRule'
|
4
|
-
belongs_to :user, class_name: Spree.user_class
|
4
|
+
belongs_to :user, class_name: "::#{Spree.user_class}"
|
5
5
|
|
6
6
|
validates :user, :promotion_rule, presence: true
|
7
7
|
validates :user_id, uniqueness: { scope: :promotion_rule_id }, allow_nil: true
|
@@ -1,5 +1,13 @@
|
|
1
1
|
module Spree
|
2
2
|
class Property < Spree::Base
|
3
|
+
include Spree::FilterParam
|
4
|
+
include Metadata
|
5
|
+
if defined?(Spree::Webhooks)
|
6
|
+
include Spree::Webhooks::HasWebhooks
|
7
|
+
end
|
8
|
+
|
9
|
+
auto_strip_attributes :name, :presentation
|
10
|
+
|
3
11
|
has_many :property_prototypes, class_name: 'Spree::PropertyPrototype'
|
4
12
|
has_many :prototypes, through: :property_prototypes, class_name: 'Spree::Prototype'
|
5
13
|
|
@@ -9,15 +17,38 @@ module Spree
|
|
9
17
|
validates :name, :presentation, presence: true
|
10
18
|
|
11
19
|
scope :sorted, -> { order(:name) }
|
20
|
+
scope :filterable, -> { where(filterable: true) }
|
12
21
|
|
13
22
|
after_touch :touch_all_products
|
23
|
+
after_save :ensure_product_properties_have_filter_params
|
14
24
|
|
15
|
-
self.whitelisted_ransackable_attributes = ['presentation']
|
25
|
+
self.whitelisted_ransackable_attributes = ['presentation', 'filterable']
|
26
|
+
|
27
|
+
def uniq_values(product_properties_scope: nil)
|
28
|
+
with_uniq_values_cache_key(product_properties_scope) do
|
29
|
+
properties = product_properties
|
30
|
+
properties = properties.where(id: product_properties_scope) if product_properties_scope.present?
|
31
|
+
properties.where.not(value: [nil, '']).pluck(:filter_param, :value).uniq
|
32
|
+
end
|
33
|
+
end
|
16
34
|
|
17
35
|
private
|
18
36
|
|
19
37
|
def touch_all_products
|
20
38
|
products.update_all(updated_at: Time.current)
|
21
39
|
end
|
40
|
+
|
41
|
+
def with_uniq_values_cache_key(product_properties_scope, &block)
|
42
|
+
return block.call if product_properties_scope.present?
|
43
|
+
|
44
|
+
uniq_values_cache_key = ['property-uniq-values', cache_key_with_version]
|
45
|
+
Rails.cache.fetch(uniq_values_cache_key) { block.call }
|
46
|
+
end
|
47
|
+
|
48
|
+
def ensure_product_properties_have_filter_params
|
49
|
+
return unless filterable?
|
50
|
+
|
51
|
+
product_properties.where(filter_param: [nil, '']).where.not(value: [nil, '']).find_each(&:save)
|
52
|
+
end
|
22
53
|
end
|
23
54
|
end
|
@@ -1,5 +1,10 @@
|
|
1
1
|
module Spree
|
2
2
|
class Prototype < Spree::Base
|
3
|
+
include Metadata
|
4
|
+
if defined?(Spree::Webhooks)
|
5
|
+
include Spree::Webhooks::HasWebhooks
|
6
|
+
end
|
7
|
+
|
3
8
|
has_many :property_prototypes, class_name: 'Spree::PropertyPrototype'
|
4
9
|
has_many :properties, through: :property_prototypes, class_name: 'Spree::Property'
|
5
10
|
|
data/app/models/spree/refund.rb
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
module Spree
|
2
2
|
class Refund < Spree::Base
|
3
|
+
include Metadata
|
4
|
+
if defined?(Spree::Webhooks)
|
5
|
+
include Spree::Webhooks::HasWebhooks
|
6
|
+
end
|
7
|
+
if defined?(Spree::Security::Refunds)
|
8
|
+
include Spree::Security::Refunds
|
9
|
+
end
|
10
|
+
|
3
11
|
with_options inverse_of: :refunds do
|
4
12
|
belongs_to :payment
|
5
13
|
belongs_to :reimbursement, optional: true
|
@@ -21,6 +29,8 @@ module Spree
|
|
21
29
|
|
22
30
|
scope :non_reimbursement, -> { where(reimbursement_id: nil) }
|
23
31
|
|
32
|
+
attr_reader :response
|
33
|
+
|
24
34
|
def money
|
25
35
|
Spree::Money.new(amount, currency: payment.currency)
|
26
36
|
end
|
@@ -61,14 +71,14 @@ module Spree
|
|
61
71
|
end
|
62
72
|
|
63
73
|
unless response.success?
|
64
|
-
logger.error(Spree.t(:gateway_error) + " #{response.to_yaml}")
|
74
|
+
Rails.logger.error(Spree.t(:gateway_error) + " #{response.to_yaml}")
|
65
75
|
text = response.params['message'] || response.params['response_reason_text'] || response.message
|
66
76
|
raise Core::GatewayError, text
|
67
77
|
end
|
68
78
|
|
69
79
|
response
|
70
80
|
rescue ActiveMerchant::ConnectionError => e
|
71
|
-
logger.error(Spree.t(:gateway_error) + " #{e.inspect}")
|
81
|
+
Rails.logger.error(Spree.t(:gateway_error) + " #{e.inspect}")
|
72
82
|
raise Core::GatewayError, Spree.t(:unable_to_connect_to_gateway)
|
73
83
|
end
|
74
84
|
|
@@ -1,6 +1,10 @@
|
|
1
1
|
module Spree
|
2
2
|
class Reimbursement < Spree::Base
|
3
3
|
include Spree::Core::NumberGenerator.new(prefix: 'RI', length: 9)
|
4
|
+
include NumberIdentifier
|
5
|
+
if defined?(Spree::Webhooks)
|
6
|
+
include Spree::Webhooks::HasWebhooks
|
7
|
+
end
|
4
8
|
|
5
9
|
class IncompleteReimbursementError < StandardError; end
|
6
10
|
|
@@ -15,7 +19,6 @@ module Spree
|
|
15
19
|
has_many :return_items
|
16
20
|
end
|
17
21
|
|
18
|
-
validates :number, uniqueness: true
|
19
22
|
validates :order, presence: true
|
20
23
|
validate :validate_return_items_belong_to_same_order
|
21
24
|
|
@@ -60,6 +63,8 @@ module Spree
|
|
60
63
|
class_attribute :reimbursement_failure_hooks
|
61
64
|
self.reimbursement_failure_hooks = []
|
62
65
|
|
66
|
+
delegate :store, :currency, to: :order
|
67
|
+
|
63
68
|
state_machine :reimbursement_status, initial: :pending do
|
64
69
|
event :errored do
|
65
70
|
transition to: :errored, from: :pending
|
@@ -137,7 +142,9 @@ module Spree
|
|
137
142
|
end
|
138
143
|
|
139
144
|
def send_reimbursement_email
|
140
|
-
|
145
|
+
# you can overwrite this method in your application / extension to send out the confirmation email
|
146
|
+
# or use `spree_emails` gem
|
147
|
+
# YourEmailVendor.deliver_reimbursement_email(id) # `id` = ID of the Reimbursement being sent, you can also pass the entire object using `self`
|
141
148
|
end
|
142
149
|
|
143
150
|
# If there are multiple different reimbursement types for a single
|
@@ -51,7 +51,8 @@ module Spree
|
|
51
51
|
category: category,
|
52
52
|
created_by: Spree::StoreCredit.default_created_by,
|
53
53
|
memo: "Refund for uncreditable payments on order #{reimbursement.order.number}",
|
54
|
-
currency: reimbursement.order.currency
|
54
|
+
currency: reimbursement.order.currency,
|
55
|
+
store: reimbursement.order.store
|
55
56
|
}
|
56
57
|
end
|
57
58
|
|
@@ -1,6 +1,10 @@
|
|
1
1
|
module Spree
|
2
2
|
class ReturnAuthorization < Spree::Base
|
3
3
|
include Spree::Core::NumberGenerator.new(prefix: 'RA', length: 9)
|
4
|
+
include NumberIdentifier
|
5
|
+
if defined?(Spree::Webhooks)
|
6
|
+
include Spree::Webhooks::HasWebhooks
|
7
|
+
end
|
4
8
|
|
5
9
|
belongs_to :order, class_name: 'Spree::Order', inverse_of: :return_authorizations
|
6
10
|
|
@@ -17,7 +21,6 @@ module Spree
|
|
17
21
|
|
18
22
|
accepts_nested_attributes_for :return_items, allow_destroy: true
|
19
23
|
|
20
|
-
validates :number, uniqueness: true
|
21
24
|
validates :order, :reason, :stock_location, presence: true
|
22
25
|
validate :must_have_shipped_units, on: :create
|
23
26
|
|
@@ -38,13 +41,15 @@ module Spree
|
|
38
41
|
money_methods :pre_tax_total
|
39
42
|
|
40
43
|
self.whitelisted_ransackable_attributes = ['memo', 'number', 'state']
|
44
|
+
self.whitelisted_ransackable_associations = ['order']
|
41
45
|
|
42
46
|
def pre_tax_total
|
43
47
|
return_items.sum(:pre_tax_amount)
|
44
48
|
end
|
45
49
|
|
46
50
|
def currency
|
47
|
-
|
51
|
+
# FIXME: we should associate ReturnAuthorization with Store
|
52
|
+
order.nil? ? Spree::Store.default.default_currency : order.currency
|
48
53
|
end
|
49
54
|
|
50
55
|
def refundable_amount
|