spree_core 4.3.0 → 4.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/finders/spree/option_values/find_available.rb +9 -1
- data/app/finders/spree/products/find.rb +2 -4
- data/app/finders/spree/taxons/find.rb +1 -1
- data/app/helpers/spree/base_helper.rb +12 -13
- data/app/helpers/spree/currency_helper.rb +1 -1
- data/app/helpers/spree/locale_helper.rb +6 -2
- data/app/helpers/spree/products_helper.rb +10 -19
- 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 +1 -1
- data/app/models/concerns/spree/display_link.rb +17 -29
- data/app/models/concerns/spree/display_money.rb +3 -1
- data/app/models/concerns/spree/image_methods.rb +21 -9
- data/app/models/concerns/spree/memoized_data.rb +1 -1
- data/app/models/concerns/spree/metadata.rb +23 -0
- data/app/models/concerns/spree/multi_store_resource.rb +1 -1
- 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 +59 -27
- data/app/models/concerns/spree/unique_name.rb +10 -0
- data/app/models/concerns/spree/user_methods.rb +9 -0
- data/app/models/concerns/spree/user_reporting.rb +1 -1
- data/app/models/concerns/spree/user_roles.rb +20 -2
- data/app/models/spree/ability.rb +11 -3
- data/app/models/spree/address.rb +11 -3
- data/app/models/spree/adjustment.rb +1 -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 +14 -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/cms_page.rb +7 -3
- data/app/models/spree/cms_section.rb +13 -13
- 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 +4 -2
- data/app/models/spree/credit_card.rb +17 -1
- data/app/models/spree/customer_return.rb +6 -1
- data/app/models/spree/digital.rb +19 -0
- data/app/models/spree/digital_link.rb +57 -0
- data/app/models/spree/fulfilment_changer.rb +1 -1
- data/app/models/spree/gateway/bogus.rb +5 -1
- data/app/models/spree/icon.rb +5 -1
- data/app/models/spree/image/configuration/active_storage.rb +6 -19
- data/app/models/spree/image.rb +3 -3
- data/app/models/spree/inventory_unit.rb +5 -2
- data/app/models/spree/legacy_user.rb +2 -2
- data/app/models/spree/line_item.rb +15 -4
- 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 +9 -1
- data/app/models/spree/menu.rb +3 -0
- data/app/models/spree/menu_item.rb +7 -11
- data/app/models/spree/option_type.rb +8 -4
- data/app/models/spree/option_value.rb +7 -0
- data/app/models/spree/order/address_book.rb +1 -0
- data/app/models/spree/order/checkout.rb +7 -1
- data/app/models/spree/order/digital.rb +33 -0
- data/app/models/spree/order.rb +45 -24
- 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 +2 -1
- data/app/models/spree/payment.rb +32 -5
- 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 +6 -1
- data/app/models/spree/payment_source.rb +10 -0
- data/app/models/spree/preference.rb +6 -1
- data/app/models/spree/price.rb +4 -1
- data/app/models/spree/product.rb +73 -30
- data/app/models/spree/product_property.rb +1 -0
- data/app/models/spree/promotion/rules/option_value.rb +2 -2
- data/app/models/spree/promotion/rules/product.rb +1 -1
- data/app/models/spree/promotion.rb +9 -1
- data/app/models/spree/promotion_action.rb +1 -1
- data/app/models/spree/promotion_rule.rb +1 -1
- data/app/models/spree/promotion_rule_user.rb +1 -1
- data/app/models/spree/property.rb +4 -0
- data/app/models/spree/prototype.rb +5 -0
- data/app/models/spree/refund.rb +10 -0
- data/app/models/spree/reimbursement.rb +4 -1
- data/app/models/spree/return_authorization.rb +7 -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 +11 -30
- data/app/models/spree/shipping_category.rb +4 -1
- data/app/models/spree/shipping_method.rb +8 -0
- 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 -3
- data/app/models/spree/stock/content_item.rb +1 -1
- data/app/models/spree/stock/quantifier.rb +2 -2
- data/app/models/spree/stock/splitter/digital.rb +35 -0
- data/app/models/spree/stock_item.rb +7 -2
- data/app/models/spree/stock_location.rb +23 -31
- data/app/models/spree/stock_movement.rb +7 -0
- data/app/models/spree/stock_transfer.rb +6 -6
- data/app/models/spree/store.rb +58 -20
- data/app/models/spree/store_credit.rb +10 -3
- data/app/models/spree/store_credit_category.rb +2 -0
- data/app/models/spree/store_credit_event.rb +2 -7
- 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/tax_category.rb +9 -1
- data/app/models/spree/tax_rate.rb +9 -2
- data/app/models/spree/taxon.rb +14 -0
- data/app/models/spree/taxon_image/configuration/active_storage.rb +6 -12
- data/app/models/spree/taxon_image.rb +3 -2
- data/app/models/spree/taxonomy.rb +11 -1
- data/app/models/spree/variant.rb +63 -24
- data/app/models/spree/wished_item.rb +33 -0
- data/app/models/spree/wishlist.rb +38 -0
- data/app/models/spree/zone.rb +11 -6
- data/app/services/spree/account/addresses/create.rb +1 -17
- data/app/services/spree/account/addresses/update.rb +1 -22
- 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/create.rb +4 -2
- 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 +4 -1
- data/app/services/spree/checkout/select_shipping_method.rb +49 -0
- data/app/services/spree/checkout/update.rb +3 -10
- 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/validators/spree/url_validator.rb +23 -0
- data/brakeman.ignore +20 -0
- data/config/initializers/active_storage.rb +0 -6
- data/config/locales/en.yml +19 -170
- data/config/routes.rb +43 -0
- 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 +14 -3
- 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 +2 -0
- data/lib/spree/core/configuration.rb +90 -0
- data/lib/spree/core/controller_helpers/auth.rb +7 -5
- data/lib/spree/core/controller_helpers/common.rb +15 -1
- data/lib/spree/core/controller_helpers/currency.rb +8 -6
- data/lib/spree/core/controller_helpers/locale.rb +8 -6
- data/lib/spree/core/controller_helpers/order.rb +4 -2
- data/lib/spree/core/controller_helpers/search.rb +1 -1
- data/lib/spree/core/controller_helpers/store.rb +5 -3
- data/lib/spree/core/dependencies.rb +130 -0
- data/lib/spree/core/engine.rb +54 -45
- data/lib/spree/core/importer/product.rb +1 -1
- 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 +3 -0
- data/{app/models/spree → lib/spree/core}/preferences/preferable_class_methods.rb +2 -0
- data/{app/models/spree → lib/spree/core}/preferences/store.rb +1 -1
- data/lib/spree/core/search/base.rb +9 -5
- data/lib/spree/core/version.rb +1 -1
- data/lib/spree/core.rb +41 -13
- data/lib/spree/money.rb +2 -2
- data/lib/spree/permitted_attributes.rb +36 -16
- data/lib/spree/testing_support/authorization_helpers.rb +3 -1
- data/lib/spree/testing_support/capybara_config.rb +14 -19
- data/lib/spree/testing_support/capybara_ext.rb +1 -6
- data/lib/spree/testing_support/common_rake.rb +23 -4
- data/lib/spree/testing_support/factories/asset_factory.rb +15 -0
- data/lib/spree/testing_support/factories/cms_section_factory.rb +2 -2
- 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 +3 -1
- data/lib/spree/testing_support/factories/image_factory.rb +3 -1
- data/lib/spree/testing_support/factories/log_entry_factory.rb +6 -0
- data/lib/spree/testing_support/factories/menu_item_factory.rb +1 -1
- data/lib/spree/testing_support/factories/order_factory.rb +6 -2
- 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/product_factory.rb +6 -1
- data/lib/spree/testing_support/factories/product_property_factory.rb +1 -0
- data/lib/spree/testing_support/factories/promotion_action_factory.rb +5 -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/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 +4 -3
- data/lib/spree/testing_support/factories/stock_transfer_factory.rb +9 -0
- data/lib/spree/testing_support/factories/store_credit_factory.rb +1 -1
- data/lib/spree/testing_support/factories/store_credit_type_factory.rb +5 -0
- data/lib/spree/testing_support/factories/store_factory.rb +1 -1
- data/lib/spree/testing_support/factories/tax_rate_factory.rb +1 -0
- data/lib/spree/testing_support/factories/taxon_image_factory.rb +3 -1
- data/lib/spree/testing_support/factories/user_factory.rb +6 -0
- data/lib/spree/testing_support/factories/variant_factory.rb +4 -0
- 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/jobs.rb +9 -0
- data/lib/spree/testing_support/metadata.rb +54 -0
- data/lib/spree_core.rb +2 -1
- data/lib/tasks/core.rake +16 -4
- data/spree_core.gemspec +4 -4
- metadata +160 -366
- data/app/models/friendly_id/slug_decorator.rb +0 -9
- data/app/models/spree/app_configuration.rb +0 -89
- data/app/models/spree/app_dependencies.rb +0 -98
- data/app/services/spree/account/addresses/helper.rb +0 -43
- data/app/services/spree/build_localized_redirect_url.rb +0 -101
- data/db/default/spree/countries.rb +0 -24
- 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 -49
- data/db/default/spree/store_credit_categories.rb +0 -1
- data/db/default/spree/stores.rb +0 -21
- data/db/default/spree/zones.rb +0 -29
- 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/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/20191017121054_add_supported_currencies_to_store.rb +0 -11
- data/db/migrate/20200102141311_add_social_to_spree_stores.rb +0 -10
- data/db/migrate/20200212144523_add_hide_from_nav_to_taxons.rb +0 -5
- data/db/migrate/20200308210757_add_default_locale_to_spree_store.rb +0 -7
- data/db/migrate/20200310145140_add_customer_support_email_to_spree_store.rb +0 -7
- data/db/migrate/20200421095017_add_compare_at_amount_to_spree_prices.rb +0 -7
- data/db/migrate/20200423123001_add_default_country_id_to_spree_store.rb +0 -9
- data/db/migrate/20200430072209_add_footer_fields_to_spree_stores.rb +0 -8
- data/db/migrate/20200513154939_add_show_property_to_spree_product_properties.rb +0 -5
- data/db/migrate/20200607161221_add_store_owner_order_notification_delivered_to_spree_orders.rb +0 -7
- data/db/migrate/20200607161222_add_new_order_notifications_email_to_spree_stores.rb +0 -7
- data/db/migrate/20200610113542_add_label_to_spree_addresses.rb +0 -5
- data/db/migrate/20200826075557_add_unique_index_on_taxon_id_and_product_id_to_spree_products_taxons.rb +0 -5
- data/db/migrate/20201006110150_add_checkout_zone_field_to_store.rb +0 -12
- data/db/migrate/20201012091259_add_filterable_column_to_spree_option_types.rb +0 -10
- data/db/migrate/20201013084504_add_seo_robots_to_spree_stores.rb +0 -5
- data/db/migrate/20201023152810_add_filterable_to_spree_properties.rb +0 -8
- data/db/migrate/20201127084048_add_default_country_kind_to_spree_zones.rb +0 -5
- data/db/migrate/20210112193440_remove_contact_email_from_spree_stores.rb +0 -5
- data/db/migrate/20210114182625_create_spree_payment_methods_stores.rb +0 -10
- data/db/migrate/20210114220232_migrate_data_payment_methods_stores.rb +0 -15
- data/db/migrate/20210117112551_remove_store_id_from_spree_payment_methods.rb +0 -5
- data/db/migrate/20210120142527_ensure_default_locale_in_spree_stores.rb +0 -5
- data/db/migrate/20210205211040_add_supported_locales_to_spree_stores.rb +0 -11
- data/db/migrate/20210215202602_migrate_spree_i18n_globalize_config.rb +0 -22
- data/db/migrate/20210407200948_create_spree_menus.rb +0 -16
- data/db/migrate/20210408092939_create_spree_menu_items.rb +0 -31
- data/db/migrate/20210504163720_add_filter_param_to_spree_product_properties.rb +0 -8
- data/db/migrate/20210505114659_add_filter_param_to_spree_properties.rb +0 -8
- data/db/migrate/20210512191732_create_spree_cms_pages.rb +0 -24
- data/db/migrate/20210514204251_create_spree_cms_sections.rb +0 -22
- data/db/migrate/20210527094055_create_spree_products_stores.rb +0 -36
- data/db/migrate/20210608045519_ensure_store_default_country_is_set.rb +0 -5
- data/db/migrate/20210702112334_add_missing_timestamp_columns.rb +0 -46
- data/db/migrate/20210713131614_add_unique_index_on_property_id_and_product_id_to_product_properties.rb +0 -29
- data/db/migrate/20210715091956_add_store_id_to_spree_store_credits.rb +0 -10
- data/db/migrate/20210716093151_add_store_id_to_spree_taxonomies.rb +0 -11
- data/db/migrate/20210716104141_add_index_on_name_parent_id_and_taxonomy_id_on_spree_taxons.rb +0 -31
- data/db/migrate/20210721120857_add_index_on_permalink_parent_id_and_taxonomy_id_on_spree_taxons.rb +0 -31
- data/db/migrate/20210721125657_create_spree_promotions_stores.rb +0 -29
- data/db/migrate/20210722090705_add_store_id_to_spree_customer_returns.rb +0 -11
- data/db/migrate/20210726065456_change_integer_id_columns_into_bigint.rb +0 -305
- data/db/migrate/20210730154425_fix_promotion_code_and_path_unique_indexes.rb +0 -9
- data/lib/friendly_id/slug_rails5_patch.rb +0 -11
- /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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a62717cb37cb66c1ddeea15d4d67798f91a73e06be9c92da4281d6b7c2c80997
|
4
|
+
data.tar.gz: 43c64db30fc7cc5ff3bd982f4c4ff5b81eb775e652af94f0c34d27670ac7681d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20e7f63e9110ea867f8df477ebc1282ff68d710848a3c0a1f7523089488ac771b98f4b1ffd4cbfb733d6345b82e2fec5a43e52a3b0ff6e072a2fdc1870766867
|
7
|
+
data.tar.gz: c12cc069169ce732437940158061e4b4b9c4a7f26962eeb6a9a808eb58f93f84e9eea35e272ce906f089ec9c899067b68ae9bffe5423399f91ce362e298cdad2
|
@@ -9,12 +9,20 @@ module Spree
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def execute
|
12
|
-
find_available(scope, products_scope)
|
12
|
+
find_available(scope, products_scope).select(select_args).order(order_args)
|
13
13
|
end
|
14
14
|
|
15
15
|
private
|
16
16
|
|
17
17
|
attr_reader :scope, :products_scope
|
18
|
+
|
19
|
+
def select_args
|
20
|
+
"#{OptionValue.table_name}.*, #{OptionType.table_name}.position AS option_type_position"
|
21
|
+
end
|
22
|
+
|
23
|
+
def order_args
|
24
|
+
"option_type_position, #{OptionValue.table_name}.position"
|
25
|
+
end
|
18
26
|
end
|
19
27
|
end
|
20
28
|
end
|
@@ -4,8 +4,6 @@ module Spree
|
|
4
4
|
def initialize(scope:, params:, current_currency: nil)
|
5
5
|
@scope = scope
|
6
6
|
|
7
|
-
ActiveSupport::Deprecation.warn('`current_currency` param is deprecated and will be removed in Spree 5') if current_currency
|
8
|
-
|
9
7
|
if current_currency.present?
|
10
8
|
ActiveSupport::Deprecation.warn(<<-DEPRECATION, caller)
|
11
9
|
`current_currency` param is deprecated and will be removed in Spree 5.
|
@@ -154,7 +152,7 @@ module Spree
|
|
154
152
|
def by_options(products)
|
155
153
|
return products unless options?
|
156
154
|
|
157
|
-
products_ids = options.map { |key, value| products.with_option_value(key, value)
|
155
|
+
products_ids = options.map { |key, value| products.with_option_value(key, value)&.ids }.compact.uniq
|
158
156
|
products.where(id: products_ids.reduce(&:intersection))
|
159
157
|
end
|
160
158
|
|
@@ -257,7 +255,7 @@ module Spree
|
|
257
255
|
|
258
256
|
def map_prices(prices)
|
259
257
|
prices.map do |price|
|
260
|
-
price == 'Infinity' ?
|
258
|
+
price == 'Infinity' ? BigDecimal::INFINITY : price.to_f
|
261
259
|
end
|
262
260
|
end
|
263
261
|
|
@@ -61,11 +61,11 @@ module Spree
|
|
61
61
|
DEPRECATION
|
62
62
|
|
63
63
|
image_path ||= if current_store.logo.attached? && current_store.logo.variable?
|
64
|
-
main_app.
|
64
|
+
main_app.cdn_image_url(current_store.logo.variant(resize_to_limit: [244, 104]))
|
65
65
|
elsif current_store.logo.attached? && current_store.logo.image?
|
66
|
-
main_app.
|
66
|
+
main_app.cdn_image_url(current_store.logo)
|
67
67
|
else
|
68
|
-
|
68
|
+
'logo/spree_50.png'
|
69
69
|
end
|
70
70
|
|
71
71
|
path = spree.respond_to?(:root_path) ? spree.root_path : main_app.root_path
|
@@ -76,7 +76,11 @@ module Spree
|
|
76
76
|
end
|
77
77
|
|
78
78
|
def spree_favicon_path
|
79
|
-
|
79
|
+
if current_store.favicon.present?
|
80
|
+
main_app.cdn_image_url(current_store.favicon)
|
81
|
+
else
|
82
|
+
url_for('favicon.ico')
|
83
|
+
end
|
80
84
|
end
|
81
85
|
|
82
86
|
def object
|
@@ -88,7 +92,7 @@ module Spree
|
|
88
92
|
|
89
93
|
if object.is_a? Spree::Product
|
90
94
|
image = default_image_for_product_or_variant(object)
|
91
|
-
og_meta['og:image'] = main_app.
|
95
|
+
og_meta['og:image'] = main_app.cdn_image_url(image.attachment) if image&.attachment
|
92
96
|
|
93
97
|
og_meta['og:url'] = spree.url_for(object) if frontend_available? # url_for product needed
|
94
98
|
og_meta['og:type'] = object.class.name.demodulize.downcase
|
@@ -163,8 +167,7 @@ module Spree
|
|
163
167
|
end
|
164
168
|
|
165
169
|
def seo_url(taxon, options = {})
|
166
|
-
options.merge(locale: locale_param)
|
167
|
-
spree.nested_taxons_path(taxon.permalink, options)
|
170
|
+
spree.nested_taxons_path(taxon.permalink, options.merge(locale: locale_param))
|
168
171
|
end
|
169
172
|
|
170
173
|
def frontend_available?
|
@@ -238,7 +241,7 @@ module Spree
|
|
238
241
|
|
239
242
|
def create_product_image_tag(image, product, options, style)
|
240
243
|
options[:alt] = image.alt.blank? ? product.name : image.alt
|
241
|
-
image_tag main_app.
|
244
|
+
image_tag main_app.cdn_image_url(image.url(style)), options
|
242
245
|
end
|
243
246
|
|
244
247
|
def define_image_method(style)
|
@@ -249,7 +252,7 @@ module Spree
|
|
249
252
|
img = if image_path.present?
|
250
253
|
create_product_image_tag image_path, product, options, style
|
251
254
|
else
|
252
|
-
|
255
|
+
inline_svg_tag 'noimage/backend-missing-image.svg', class: 'noimage', size: '60%*60%'
|
253
256
|
end
|
254
257
|
|
255
258
|
content_tag(:div, img, class: "admin-product-image-container #{style}-img")
|
@@ -269,9 +272,5 @@ module Spree
|
|
269
272
|
|
270
273
|
tag('meta', name: 'robots', content: current_store.seo_robots)
|
271
274
|
end
|
272
|
-
|
273
|
-
def taxon_wysiwyg_editor_enabled?
|
274
|
-
Spree::Config[:taxon_wysiwyg_editor_enabled]
|
275
|
-
end
|
276
275
|
end
|
277
276
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module Spree
|
2
2
|
module CurrencyHelper
|
3
3
|
def currency_options(selected_value = nil)
|
4
|
-
selected_value ||= Spree::
|
4
|
+
selected_value ||= Spree::Store.default.default_currency
|
5
5
|
currencies = ::Money::Currency.table.map do |_code, details|
|
6
6
|
iso = details[:iso_code]
|
7
7
|
[iso, "#{details[:name]} (#{iso})"]
|
@@ -15,10 +15,14 @@ module Spree
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def locale_presentation(locale)
|
18
|
-
if I18n.exists?('spree.i18n.this_file_language', locale: locale)
|
18
|
+
if I18n.exists?('spree.i18n.this_file_language', locale: locale, fallback: false)
|
19
19
|
[locale_full_name(locale), locale.to_s]
|
20
|
+
elsif defined?(SpreeI18n::Locale) && (language_name = SpreeI18n::Locale.local_language_name(locale))
|
21
|
+
["#{language_name} (#{locale})", locale.to_s]
|
22
|
+
elsif locale.to_s == 'en'
|
23
|
+
['English (US)', 'en']
|
20
24
|
else
|
21
|
-
|
25
|
+
[locale, locale.to_s]
|
22
26
|
end
|
23
27
|
end
|
24
28
|
|
@@ -44,20 +44,6 @@ module Spree
|
|
44
44
|
variants_option_types_presenter(variants, product).options
|
45
45
|
end
|
46
46
|
|
47
|
-
def product_wysiwyg_editor_enabled?
|
48
|
-
Spree::Config[:product_wysiwyg_editor_enabled]
|
49
|
-
end
|
50
|
-
|
51
|
-
# converts line breaks in product description into <p> tags (for html display purposes)
|
52
|
-
def product_description(product)
|
53
|
-
description = if Spree::Config[:show_raw_product_description] || product_wysiwyg_editor_enabled?
|
54
|
-
product.description
|
55
|
-
else
|
56
|
-
product.description.to_s.gsub(/(.*?)\r?\n\r?\n/m, '<p>\1</p>')
|
57
|
-
end
|
58
|
-
description.blank? ? Spree.t(:product_has_no_description) : description
|
59
|
-
end
|
60
|
-
|
61
47
|
def line_item_description_text(description_text)
|
62
48
|
if description_text.present?
|
63
49
|
truncate(strip_tags(description_text.gsub(' ', ' ').squish), length: 100)
|
@@ -82,7 +68,7 @@ module Spree
|
|
82
68
|
cache_key_elements.compact.join('/')
|
83
69
|
end
|
84
70
|
|
85
|
-
def
|
71
|
+
def limit_description(string)
|
86
72
|
return string if string.length <= 450
|
87
73
|
|
88
74
|
string.slice(0..449) + '...'
|
@@ -90,15 +76,20 @@ module Spree
|
|
90
76
|
|
91
77
|
# will return a human readable string
|
92
78
|
def available_status(product)
|
93
|
-
|
79
|
+
ActiveSupport::Deprecation.warn(<<-DEPRECATION, caller)
|
80
|
+
`Spree::ProductsHelper#available_status` method from spree/core is deprecated and will be removed.
|
81
|
+
Please use `Spree::Admin::ProductsHelper#available_status` from spree_backend instead.
|
82
|
+
DEPRECATION
|
83
|
+
|
84
|
+
return Spree.t(:archived) if product.discontinued?
|
94
85
|
return Spree.t(:deleted) if product.deleted?
|
95
86
|
|
96
87
|
if product.available?
|
97
|
-
Spree.t(:
|
98
|
-
elsif product.
|
88
|
+
Spree.t(:active)
|
89
|
+
elsif product.make_active_at&.future?
|
99
90
|
Spree.t(:pending_sale)
|
100
91
|
else
|
101
|
-
Spree.t(:
|
92
|
+
Spree.t(:draft)
|
102
93
|
end
|
103
94
|
end
|
104
95
|
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module Spree
|
2
|
+
module StockLocations
|
3
|
+
module StockItems
|
4
|
+
class CreateJob < Spree::BaseJob
|
5
|
+
queue_as :spree_stock_location_stock_items
|
6
|
+
|
7
|
+
def perform(stock_location)
|
8
|
+
Spree::StockLocations::StockItems::Create.call(stock_location: stock_location)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -18,7 +18,7 @@ module Spree
|
|
18
18
|
|
19
19
|
def calculator_type=(calculator_type)
|
20
20
|
klass = calculator_type.constantize if calculator_type
|
21
|
-
self.calculator = klass.new if klass && !calculator.
|
21
|
+
self.calculator = klass.new if klass && !calculator.instance_of?(klass)
|
22
22
|
end
|
23
23
|
|
24
24
|
private
|
@@ -1,42 +1,30 @@
|
|
1
1
|
module Spree
|
2
2
|
module DisplayLink
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
extend ActiveSupport::Concern
|
4
|
+
|
5
|
+
included do
|
6
|
+
belongs_to :linked_resource, polymorphic: true
|
7
|
+
|
8
|
+
def link
|
9
|
+
case linked_resource_type
|
10
|
+
when 'Spree::Taxon'
|
11
|
+
return if linked_resource&.permalink.blank?
|
7
12
|
|
8
|
-
if spree_routes.method_defined?(:nested_taxons_path)
|
9
|
-
spree_routes.nested_taxons_path(linked_resource.permalink)
|
10
|
-
else
|
11
13
|
"/#{Spree::Config[:storefront_taxons_path]}/#{linked_resource.permalink}"
|
12
|
-
|
13
|
-
|
14
|
-
return if linked_resource&.slug.blank?
|
14
|
+
when 'Spree::Product'
|
15
|
+
return if linked_resource&.slug.blank?
|
15
16
|
|
16
|
-
if spree_routes.method_defined?(:products_path)
|
17
|
-
spree_routes.product_path(linked_resource)
|
18
|
-
else
|
19
17
|
"/#{Spree::Config[:storefront_products_path]}/#{linked_resource.slug}"
|
20
|
-
|
21
|
-
|
22
|
-
return if linked_resource&.slug.blank?
|
18
|
+
when 'Spree::CmsPage'
|
19
|
+
return if linked_resource&.slug.blank?
|
23
20
|
|
24
|
-
if spree_routes.method_defined?(:page_path)
|
25
|
-
spree_routes.page_path(linked_resource.slug)
|
26
|
-
else
|
27
21
|
"/#{Spree::Config[:storefront_pages_path]}/#{linked_resource.slug}"
|
22
|
+
when 'Spree::Linkable::Homepage'
|
23
|
+
'/'
|
24
|
+
when 'Spree::Linkable::Uri'
|
25
|
+
destination
|
28
26
|
end
|
29
|
-
when 'Home Page'
|
30
|
-
'/'
|
31
|
-
when 'URL'
|
32
|
-
destination
|
33
27
|
end
|
34
28
|
end
|
35
|
-
|
36
|
-
private
|
37
|
-
|
38
|
-
def spree_routes
|
39
|
-
Spree::Core::Engine.routes.url_helpers
|
40
|
-
end
|
41
29
|
end
|
42
30
|
end
|
@@ -27,7 +27,9 @@ module Spree
|
|
27
27
|
define_method("display_#{method_name}") do |**args_list|
|
28
28
|
default_opts = respond_to?(:currency) ? { currency: currency } : {}
|
29
29
|
|
30
|
-
|
30
|
+
amount = args_list.blank? ? send(method_name) : send(method_name, **args_list)
|
31
|
+
|
32
|
+
Spree::Money.new(amount, default_opts.merge(opts).merge(args_list.slice(:currency)))
|
31
33
|
end
|
32
34
|
end
|
33
35
|
end
|
@@ -2,23 +2,35 @@ module Spree
|
|
2
2
|
module ImageMethods
|
3
3
|
extend ActiveSupport::Concern
|
4
4
|
|
5
|
-
def generate_url(size:, gravity: '
|
5
|
+
def generate_url(size:, gravity: 'centre', quality: 80, background: [0, 0, 0])
|
6
6
|
return if size.blank?
|
7
|
+
|
7
8
|
size = size.gsub(/\s+/, '')
|
8
9
|
|
9
10
|
return unless size.match(/(\d+)x(\d+)/)
|
10
11
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
), only_path: true)
|
12
|
+
width, height = size.split('x').map(&:to_i)
|
13
|
+
gravity = translate_gravity_for_mini_magick(gravity)
|
14
|
+
|
15
|
+
# FIXME: bring back support for background color
|
16
|
+
|
17
|
+
cdn_image_url(attachment.variant(resize_and_pad: [width, height, { gravity: gravity }], saver: { quality: quality }))
|
18
18
|
end
|
19
19
|
|
20
20
|
def original_url
|
21
|
-
|
21
|
+
cdn_image_url(attachment)
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
def translate_gravity_for_mini_magick(gravity)
|
27
|
+
variant_processor = Rails.application.config.active_storage.variant_processor
|
28
|
+
|
29
|
+
if gravity.downcase == 'centre' && [:mini_magick, nil].include?(variant_processor)
|
30
|
+
'center'
|
31
|
+
else
|
32
|
+
gravity
|
33
|
+
end
|
22
34
|
end
|
23
35
|
end
|
24
36
|
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Spree
|
2
|
+
module Metadata
|
3
|
+
extend ActiveSupport::Concern
|
4
|
+
|
5
|
+
included do
|
6
|
+
attribute :public_metadata, default: {}
|
7
|
+
attribute :private_metadata, default: {}
|
8
|
+
serialize :public_metadata, HashSerializer
|
9
|
+
serialize :private_metadata, HashSerializer
|
10
|
+
end
|
11
|
+
|
12
|
+
# https://nandovieira.com/using-postgresql-and-jsonb-with-ruby-on-rails
|
13
|
+
class HashSerializer
|
14
|
+
def self.dump(hash)
|
15
|
+
hash
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.load(hash)
|
19
|
+
(hash || {}).with_indifferent_access
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -16,7 +16,7 @@ module Spree
|
|
16
16
|
errors.add(:stores, Spree.t(:must_have_one_store))
|
17
17
|
end
|
18
18
|
|
19
|
-
# this can be
|
19
|
+
# this can be overridden on model basis
|
20
20
|
def disable_store_presence_validation?
|
21
21
|
Spree::Config[:disable_store_presence_validation]
|
22
22
|
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Spree
|
2
|
+
module NumberIdentifier
|
3
|
+
extend ActiveSupport::Concern
|
4
|
+
|
5
|
+
included do
|
6
|
+
before_validation :uppercase_number
|
7
|
+
|
8
|
+
validates :number, presence: true, length: { maximum: 32, allow_blank: true },
|
9
|
+
uniqueness: { allow_blank: true, case_sensitive: true, scope: spree_base_uniqueness_scope }
|
10
|
+
end
|
11
|
+
|
12
|
+
protected
|
13
|
+
|
14
|
+
def uppercase_number
|
15
|
+
number&.to_s&.upcase!
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -27,16 +27,21 @@ module Spree
|
|
27
27
|
next if name.to_s.include?('master_price')
|
28
28
|
|
29
29
|
parts = name.to_s.match(/(.*)_by_(.*)/)
|
30
|
-
scope(name.to_s, -> { order(Arel.sql("#{Product.quoted_table_name}.#{parts[2]} #{parts[1] == 'ascend' ? 'ASC' : 'DESC'}")) })
|
30
|
+
scope(name.to_s, -> { order(Arel.sql(sanitize_sql("#{Product.quoted_table_name}.#{parts[2]} #{parts[1] == 'ascend' ? 'ASC' : 'DESC'}"))) })
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
34
34
|
def self.property_conditions(property)
|
35
35
|
properties = Property.table_name
|
36
36
|
case property
|
37
|
-
when String then { "#{properties}.name" => property }
|
38
37
|
when Property then { "#{properties}.id" => property.id }
|
39
|
-
|
38
|
+
when Integer then { "#{properties}.id" => property }
|
39
|
+
else
|
40
|
+
if Property.column_for_attribute('id').type == :uuid
|
41
|
+
["#{properties.name} = ? OR #{properties.id} = ?", property, property]
|
42
|
+
else
|
43
|
+
{ "#{properties}.name" => property }
|
44
|
+
end
|
40
45
|
end
|
41
46
|
end
|
42
47
|
|
@@ -139,26 +144,34 @@ module Spree
|
|
139
144
|
end
|
140
145
|
|
141
146
|
add_search_scope :with_option do |option|
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
147
|
+
if option.is_a?(OptionType)
|
148
|
+
joins(:option_types).where(spree_option_types: { id: option.id })
|
149
|
+
elsif option.is_a?(Integer)
|
150
|
+
joins(:option_types).where(spree_option_types: { id: option })
|
151
|
+
elsif OptionType.column_for_attribute('id').type == :uuid
|
152
|
+
joins(:option_types).where(spree_option_types: { name: option }).or(Product.joins(:option_types).where(spree_option_types: { id: option }))
|
153
|
+
else
|
154
|
+
joins(:option_types).where(spree_option_types: { name: option })
|
155
|
+
end
|
150
156
|
end
|
151
157
|
|
152
158
|
add_search_scope :with_option_value do |option, value|
|
153
|
-
option_values = OptionValue.table_name
|
154
159
|
option_type_id = case option
|
155
|
-
when String then OptionType.find_by(name: option) || option.to_i
|
156
160
|
when OptionType then option.id
|
157
|
-
|
161
|
+
when Integer then option
|
162
|
+
else
|
163
|
+
if OptionType.column_for_attribute('id').type == :uuid
|
164
|
+
OptionType.where(id: option).or(OptionType.where(name: option))&.first&.id
|
165
|
+
else
|
166
|
+
OptionType.where(name: option)&.first&.id
|
167
|
+
end
|
158
168
|
end
|
159
169
|
|
160
|
-
|
161
|
-
|
170
|
+
return Product.group("#{Spree::Product.table_name}.id").none if option_type_id.blank?
|
171
|
+
|
172
|
+
group("#{Spree::Product.table_name}.id").
|
173
|
+
joins(variants_including_master: :option_values).
|
174
|
+
where(Spree::OptionValue.table_name => { name: value, option_type_id: option_type_id })
|
162
175
|
end
|
163
176
|
|
164
177
|
# Finds all products which have either:
|
@@ -223,7 +236,7 @@ module Spree
|
|
223
236
|
|
224
237
|
def self.not_discontinued(only_not_discontinued = true)
|
225
238
|
if only_not_discontinued != '0' && only_not_discontinued
|
226
|
-
where(
|
239
|
+
where.not(status: 'archived')
|
227
240
|
else
|
228
241
|
all
|
229
242
|
end
|
@@ -240,12 +253,14 @@ module Spree
|
|
240
253
|
|
241
254
|
# Can't use add_search_scope for this as it needs a default argument
|
242
255
|
def self.available(available_on = nil, currency = nil)
|
243
|
-
available_on
|
244
|
-
|
245
|
-
|
256
|
+
if available_on
|
257
|
+
scope = not_discontinued.where("#{Product.quoted_table_name}.available_on <= ?", available_on)
|
258
|
+
else
|
259
|
+
scope = where(status: 'active')
|
260
|
+
end
|
246
261
|
|
247
262
|
unless Spree::Config.show_products_without_price
|
248
|
-
currency ||= Spree::
|
263
|
+
currency ||= Spree::Store.default.default_currency
|
249
264
|
scope = scope.with_currency(currency)
|
250
265
|
end
|
251
266
|
|
@@ -269,7 +284,7 @@ module Spree
|
|
269
284
|
if user.try(:has_spree_role?, 'admin')
|
270
285
|
with_deleted
|
271
286
|
else
|
272
|
-
not_deleted.
|
287
|
+
not_deleted.where(status: 'active')
|
273
288
|
end
|
274
289
|
end
|
275
290
|
|
@@ -277,6 +292,26 @@ module Spree
|
|
277
292
|
group('spree_products.id').joins(:taxons).where(Taxon.arel_table[:name].eq(name))
|
278
293
|
end
|
279
294
|
|
295
|
+
# .search_by_name
|
296
|
+
if defined?(PgSearch)
|
297
|
+
include PgSearch::Model
|
298
|
+
|
299
|
+
if defined?(SpreeGlobalize)
|
300
|
+
pg_search_scope :search_by_name, associated_against: { translations: :name }, using: { tsearch: { any_word: true, prefix: true } }
|
301
|
+
else
|
302
|
+
pg_search_scope :search_by_name, against: :name, using: { tsearch: { any_word: true, prefix: true } }
|
303
|
+
end
|
304
|
+
else
|
305
|
+
def self.search_by_name(query)
|
306
|
+
if defined?(SpreeGlobalize)
|
307
|
+
joins(:translations).order(:name).where("LOWER(#{Product::Translation.table_name}.name) LIKE LOWER(:query)", query: "%#{query}%").distinct
|
308
|
+
else
|
309
|
+
where("LOWER(#{Product.table_name}.name) LIKE LOWER(:query)", query: "%#{query}%")
|
310
|
+
end
|
311
|
+
end
|
312
|
+
end
|
313
|
+
search_scopes << :search_by_name
|
314
|
+
|
280
315
|
def self.price_table_name
|
281
316
|
Price.quoted_table_name
|
282
317
|
end
|
@@ -300,14 +335,11 @@ module Spree
|
|
300
335
|
private_class_method :prepare_words
|
301
336
|
|
302
337
|
def self.get_taxons(*ids_or_records_or_names)
|
303
|
-
taxons = Taxon.table_name
|
304
338
|
ids_or_records_or_names.flatten.map do |t|
|
305
339
|
case t
|
306
|
-
when Integer then Taxon.find_by(id: t)
|
307
340
|
when ApplicationRecord then t
|
308
|
-
|
309
|
-
Taxon.
|
310
|
-
Taxon.where("#{taxons}.permalink LIKE ? OR #{taxons}.permalink = ?", "%/#{t}/", "#{t}/").first
|
341
|
+
else
|
342
|
+
Taxon.where(Taxon.arel_table[:name].eq(t)).or(Taxon.where(Taxon.arel_table[:id].eq(t))).or(Taxon.where(Taxon.arel_table[:permalink].matches("%/#{t}/"))).or(Taxon.where(Taxon.arel_table[:permalink].matches("#{t}/"))).first
|
311
343
|
end
|
312
344
|
end.compact.flatten.uniq
|
313
345
|
end
|