solidus_core 1.0.0.pre
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of solidus_core might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/LICENSE +26 -0
- data/app/assets/images/logo/solidus.png +0 -0
- data/app/assets/images/logo/solidus_logo.png +0 -0
- data/app/assets/images/noimage/large.png +0 -0
- data/app/assets/images/noimage/mini.png +0 -0
- data/app/assets/images/noimage/product.png +0 -0
- data/app/assets/images/noimage/small.png +0 -0
- data/app/assets/javascripts/spree.js.coffee.erb +61 -0
- data/app/controllers/spree/base_controller.rb +15 -0
- data/app/helpers/spree/base_helper.rb +210 -0
- data/app/helpers/spree/checkout_helper.rb +31 -0
- data/app/helpers/spree/orders_helper.rb +17 -0
- data/app/helpers/spree/products_helper.rb +82 -0
- data/app/helpers/spree/store_helper.rb +16 -0
- data/app/helpers/spree/taxons_helper.rb +19 -0
- data/app/mailers/spree/base_mailer.rb +23 -0
- data/app/mailers/spree/carton_mailer.rb +12 -0
- data/app/mailers/spree/order_mailer.rb +35 -0
- data/app/mailers/spree/reimbursement_mailer.rb +10 -0
- data/app/mailers/spree/test_mailer.rb +8 -0
- data/app/models/concerns/spree/adjustment_source.rb +24 -0
- data/app/models/concerns/spree/calculated_adjustments.rb +33 -0
- data/app/models/concerns/spree/default_price.rb +34 -0
- data/app/models/concerns/spree/display_money.rb +32 -0
- data/app/models/concerns/spree/named_type.rb +12 -0
- data/app/models/concerns/spree/user_address.rb +30 -0
- data/app/models/concerns/spree/user_api_authentication.rb +13 -0
- data/app/models/concerns/spree/user_payment_source.rb +19 -0
- data/app/models/concerns/spree/user_reporting.rb +22 -0
- data/app/models/spree/ability.rb +74 -0
- data/app/models/spree/address.rb +157 -0
- data/app/models/spree/adjustment.rb +143 -0
- data/app/models/spree/app_configuration.rb +253 -0
- data/app/models/spree/asset.rb +6 -0
- data/app/models/spree/base.rb +15 -0
- data/app/models/spree/billing_integration.rb +21 -0
- data/app/models/spree/calculator.rb +47 -0
- data/app/models/spree/calculator/default_tax.rb +67 -0
- data/app/models/spree/calculator/flat_percent_item_total.rb +22 -0
- data/app/models/spree/calculator/flat_rate.rb +20 -0
- data/app/models/spree/calculator/flexi_rate.rb +33 -0
- data/app/models/spree/calculator/free_shipping.rb +21 -0
- data/app/models/spree/calculator/percent_on_line_item.rb +15 -0
- data/app/models/spree/calculator/percent_per_item.rb +50 -0
- data/app/models/spree/calculator/price_sack.rb +29 -0
- data/app/models/spree/calculator/returns/default_refund_amount.rb +36 -0
- data/app/models/spree/calculator/shipping/flat_percent_item_total.rb +22 -0
- data/app/models/spree/calculator/shipping/flat_rate.rb +18 -0
- data/app/models/spree/calculator/shipping/flexi_rate.rb +35 -0
- data/app/models/spree/calculator/shipping/per_item.rb +22 -0
- data/app/models/spree/calculator/shipping/price_sack.rb +28 -0
- data/app/models/spree/calculator/tiered_flat_rate.rb +37 -0
- data/app/models/spree/calculator/tiered_percent.rb +44 -0
- data/app/models/spree/carton.rb +57 -0
- data/app/models/spree/classification.rb +11 -0
- data/app/models/spree/country.rb +23 -0
- data/app/models/spree/credit_card.rb +197 -0
- data/app/models/spree/customer_return.rb +73 -0
- data/app/models/spree/exchange.rb +46 -0
- data/app/models/spree/gateway.rb +79 -0
- data/app/models/spree/gateway/bogus.rb +91 -0
- data/app/models/spree/gateway/bogus_simple.rb +26 -0
- data/app/models/spree/image.rb +44 -0
- data/app/models/spree/inventory_unit.rb +154 -0
- data/app/models/spree/item_adjustments.rb +85 -0
- data/app/models/spree/item_adjustments.rb.orig +93 -0
- data/app/models/spree/legacy_user.rb +38 -0
- data/app/models/spree/line_item.rb +183 -0
- data/app/models/spree/line_item_action.rb +6 -0
- data/app/models/spree/log_entry.rb +20 -0
- data/app/models/spree/option_type.rb +30 -0
- data/app/models/spree/option_value.rb +26 -0
- data/app/models/spree/option_values_variant.rb +6 -0
- data/app/models/spree/order.rb +811 -0
- data/app/models/spree/order/checkout.rb +351 -0
- data/app/models/spree/order/currency_updater.rb +40 -0
- data/app/models/spree/order/payments.rb +66 -0
- data/app/models/spree/order_cancellations.rb +72 -0
- data/app/models/spree/order_capturing.rb +49 -0
- data/app/models/spree/order_contents.rb +125 -0
- data/app/models/spree/order_inventory.rb +108 -0
- data/app/models/spree/order_mutex.rb +35 -0
- data/app/models/spree/order_promotion.rb +23 -0
- data/app/models/spree/order_shipping.rb +99 -0
- data/app/models/spree/order_stock_location.rb +15 -0
- data/app/models/spree/order_updater.rb +178 -0
- data/app/models/spree/payment.rb +292 -0
- data/app/models/spree/payment/processing.rb +210 -0
- data/app/models/spree/payment_capture_event.rb +9 -0
- data/app/models/spree/payment_method.rb +79 -0
- data/app/models/spree/payment_method/check.rb +31 -0
- data/app/models/spree/payment_method/store_credit.rb +127 -0
- data/app/models/spree/preference.rb +5 -0
- data/app/models/spree/preferences/configuration.rb +78 -0
- data/app/models/spree/preferences/preferable.rb +128 -0
- data/app/models/spree/preferences/preferable_class_methods.rb +64 -0
- data/app/models/spree/preferences/scoped_store.rb +33 -0
- data/app/models/spree/preferences/store.rb +93 -0
- data/app/models/spree/price.rb +62 -0
- data/app/models/spree/product.rb +347 -0
- data/app/models/spree/product/scopes.rb +262 -0
- data/app/models/spree/product_option_type.rb +7 -0
- data/app/models/spree/product_property.rb +25 -0
- data/app/models/spree/product_scope/scopes.rb +47 -0
- data/app/models/spree/promotion.rb +229 -0
- data/app/models/spree/promotion/actions/create_adjustment.rb +63 -0
- data/app/models/spree/promotion/actions/create_item_adjustments.rb +80 -0
- data/app/models/spree/promotion/actions/create_quantity_adjustments.rb +129 -0
- data/app/models/spree/promotion/actions/free_shipping.rb +41 -0
- data/app/models/spree/promotion/rules/first_order.rb +37 -0
- data/app/models/spree/promotion/rules/item_total.rb +61 -0
- data/app/models/spree/promotion/rules/one_use_per_user.rb +24 -0
- data/app/models/spree/promotion/rules/option_value.rb +50 -0
- data/app/models/spree/promotion/rules/product.rb +64 -0
- data/app/models/spree/promotion/rules/taxon.rb +69 -0
- data/app/models/spree/promotion/rules/user.rb +30 -0
- data/app/models/spree/promotion/rules/user_logged_in.rb +18 -0
- data/app/models/spree/promotion_action.rb +23 -0
- data/app/models/spree/promotion_builder.rb +55 -0
- data/app/models/spree/promotion_category.rb +6 -0
- data/app/models/spree/promotion_chooser.rb +30 -0
- data/app/models/spree/promotion_code.rb +39 -0
- data/app/models/spree/promotion_code/code_builder.rb +62 -0
- data/app/models/spree/promotion_handler/cart.rb +65 -0
- data/app/models/spree/promotion_handler/coupon.rb +119 -0
- data/app/models/spree/promotion_handler/free_shipping.rb +43 -0
- data/app/models/spree/promotion_handler/page.rb +24 -0
- data/app/models/spree/promotion_rule.rb +44 -0
- data/app/models/spree/property.rb +20 -0
- data/app/models/spree/prototype.rb +9 -0
- data/app/models/spree/refund.rb +96 -0
- data/app/models/spree/refund_reason.rb +13 -0
- data/app/models/spree/reimbursement.rb +188 -0
- data/app/models/spree/reimbursement/credit.rb +25 -0
- data/app/models/spree/reimbursement/reimbursement_type_engine.rb +56 -0
- data/app/models/spree/reimbursement/reimbursement_type_validator.rb +15 -0
- data/app/models/spree/reimbursement_performer.rb +43 -0
- data/app/models/spree/reimbursement_tax_calculator.rb +38 -0
- data/app/models/spree/reimbursement_type.rb +16 -0
- data/app/models/spree/reimbursement_type/credit.rb +13 -0
- data/app/models/spree/reimbursement_type/exchange.rb +9 -0
- data/app/models/spree/reimbursement_type/original_payment.rb +13 -0
- data/app/models/spree/reimbursement_type/reimbursement_helpers.rb +70 -0
- data/app/models/spree/reimbursement_type/store_credit.rb +27 -0
- data/app/models/spree/return_authorization.rb +108 -0
- data/app/models/spree/return_authorization_reason.rb +7 -0
- data/app/models/spree/return_item.rb +311 -0
- data/app/models/spree/return_item/eligibility_validator/base_validator.rb +24 -0
- data/app/models/spree/return_item/eligibility_validator/default.rb +30 -0
- data/app/models/spree/return_item/eligibility_validator/inventory_shipped.rb +16 -0
- data/app/models/spree/return_item/eligibility_validator/no_reimbursements.rb +17 -0
- data/app/models/spree/return_item/eligibility_validator/order_completed.rb +16 -0
- data/app/models/spree/return_item/eligibility_validator/rma_required.rb +17 -0
- data/app/models/spree/return_item/eligibility_validator/time_since_purchase.rb +16 -0
- data/app/models/spree/return_item/exchange_variant_eligibility/same_option_value.rb +34 -0
- data/app/models/spree/return_item/exchange_variant_eligibility/same_product.rb +9 -0
- data/app/models/spree/returns_calculator.rb +8 -0
- data/app/models/spree/role.rb +10 -0
- data/app/models/spree/role_user.rb +17 -0
- data/app/models/spree/shipment.rb +427 -0
- data/app/models/spree/shipping_calculator.rb +22 -0
- data/app/models/spree/shipping_category.rb +8 -0
- data/app/models/spree/shipping_manifest.rb +23 -0
- data/app/models/spree/shipping_method.rb +69 -0
- data/app/models/spree/shipping_method_category.rb +6 -0
- data/app/models/spree/shipping_rate.rb +57 -0
- data/app/models/spree/state.rb +30 -0
- data/app/models/spree/state_change.rb +15 -0
- data/app/models/spree/static_model_preferences.rb +32 -0
- data/app/models/spree/stock/adjuster.rb +28 -0
- data/app/models/spree/stock/availability_validator.rb +35 -0
- data/app/models/spree/stock/content_item.rb +48 -0
- data/app/models/spree/stock/coordinator.rb +96 -0
- data/app/models/spree/stock/differentiator.rb +44 -0
- data/app/models/spree/stock/estimator.rb +70 -0
- data/app/models/spree/stock/inventory_unit_builder.rb +22 -0
- data/app/models/spree/stock/inventory_validator.rb +14 -0
- data/app/models/spree/stock/package.rb +131 -0
- data/app/models/spree/stock/packer.rb +49 -0
- data/app/models/spree/stock/prioritizer.rb +47 -0
- data/app/models/spree/stock/quantifier.rb +47 -0
- data/app/models/spree/stock/splitter/backordered.rb +23 -0
- data/app/models/spree/stock/splitter/base.rb +28 -0
- data/app/models/spree/stock/splitter/shipping_category.rb +32 -0
- data/app/models/spree/stock/splitter/weight.rb +32 -0
- data/app/models/spree/stock_item.rb +107 -0
- data/app/models/spree/stock_location.rb +128 -0
- data/app/models/spree/stock_movement.rb +26 -0
- data/app/models/spree/stock_transfer.rb +108 -0
- data/app/models/spree/store.rb +38 -0
- data/app/models/spree/store_credit.rb +267 -0
- data/app/models/spree/store_credit_category.rb +17 -0
- data/app/models/spree/store_credit_event.rb +52 -0
- data/app/models/spree/store_credit_type.rb +6 -0
- data/app/models/spree/tax_category.rb +19 -0
- data/app/models/spree/tax_rate.rb +199 -0
- data/app/models/spree/taxon.rb +103 -0
- data/app/models/spree/taxonomy.rb +27 -0
- data/app/models/spree/tracker.rb +8 -0
- data/app/models/spree/transfer_item.rb +58 -0
- data/app/models/spree/unit_cancel.rb +32 -0
- data/app/models/spree/user_stock_location.rb +6 -0
- data/app/models/spree/validations/db_maximum_length_validator.rb +22 -0
- data/app/models/spree/variant.rb +356 -0
- data/app/models/spree/variant/scopes.rb +40 -0
- data/app/models/spree/zone.rb +138 -0
- data/app/models/spree/zone_member.rb +11 -0
- data/app/views/layouts/spree/base_mailer.html.erb +784 -0
- data/app/views/spree/admin/orders/customer_details/_autocomplete.js.erb +19 -0
- data/app/views/spree/carton_mailer/shipped_email.text.erb +16 -0
- data/app/views/spree/order_mailer/cancel_email.html.erb +45 -0
- data/app/views/spree/order_mailer/cancel_email.text.erb +16 -0
- data/app/views/spree/order_mailer/confirm_email.html.erb +84 -0
- data/app/views/spree/order_mailer/confirm_email.text.erb +38 -0
- data/app/views/spree/order_mailer/inventory_cancellation_email.text.erb +10 -0
- data/app/views/spree/reimbursement_mailer/reimbursement_email.text.erb +22 -0
- data/app/views/spree/shared/_base_mailer_footer.html.erb +20 -0
- data/app/views/spree/shared/_base_mailer_header.html.erb +31 -0
- data/app/views/spree/shared/_error_messages.html.erb +11 -0
- data/app/views/spree/shipment_mailer/shipped_email.html.erb +34 -0
- data/app/views/spree/test_mailer/test_email.html.erb +40 -0
- data/app/views/spree/test_mailer/test_email.text.erb +4 -0
- data/config/initializers/friendly_id.rb +88 -0
- data/config/initializers/premailer_assets.rb +1 -0
- data/config/initializers/user_class_extensions.rb +42 -0
- data/config/locales/en.yml +1534 -0
- data/config/routes.rb +1 -0
- data/db/default/spree/countries.rb +19 -0
- data/db/default/spree/roles.rb +2 -0
- data/db/default/spree/states.rb +16 -0
- data/db/default/spree/store_credit.rb +16 -0
- data/db/default/spree/stores.rb +9 -0
- data/db/default/spree/zones.rb +17 -0
- data/db/migrate/20120831092320_spree_one_two.rb +481 -0
- data/db/migrate/20120831092359_spree_promo_one_two.rb +45 -0
- data/db/migrate/20120905145253_add_tax_rate_label.rb +5 -0
- data/db/migrate/20120905151823_add_toggle_tax_rate_display.rb +5 -0
- data/db/migrate/20120929093553_remove_unused_preference_columns.rb +8 -0
- data/db/migrate/20121009142519_add_lock_version_to_variant.rb +5 -0
- data/db/migrate/20121010142909_add_states_required_to_countries.rb +5 -0
- data/db/migrate/20121012071449_add_on_demand_to_product_and_variant.rb +6 -0
- data/db/migrate/20121017010007_remove_not_null_constraint_from_products_on_hand.rb +11 -0
- data/db/migrate/20121031162139_split_prices_from_variants.rb +31 -0
- data/db/migrate/20121107003422_remove_not_null_from_spree_prices_amount.rb +9 -0
- data/db/migrate/20121107184631_add_currency_to_line_items.rb +5 -0
- data/db/migrate/20121107194006_add_currency_to_orders.rb +5 -0
- data/db/migrate/20121109173623_add_cost_currency_to_variants.rb +5 -0
- data/db/migrate/20121111231553_remove_display_on_from_payment_methods.rb +5 -0
- data/db/migrate/20121124203911_add_position_to_taxonomies.rb +5 -0
- data/db/migrate/20121126040517_add_last_ip_to_spree_orders.rb +5 -0
- data/db/migrate/20121213162028_add_state_to_spree_adjustments.rb +6 -0
- data/db/migrate/20130114053446_add_display_on_to_spree_payment_methods.rb +9 -0
- data/db/migrate/20130120201805_add_position_to_product_properties.spree.rb +6 -0
- data/db/migrate/20130203232234_add_identifier_to_spree_payments.rb +5 -0
- data/db/migrate/20130207155350_add_order_id_index_to_payments.rb +9 -0
- data/db/migrate/20130208032954_add_primary_to_spree_products_taxons.rb +5 -0
- data/db/migrate/20130211190146_create_spree_stock_items.rb +14 -0
- data/db/migrate/20130211191120_create_spree_stock_locations.rb +11 -0
- data/db/migrate/20130213191427_create_default_stock.rb +34 -0
- data/db/migrate/20130222032153_add_order_id_index_to_shipments.rb +5 -0
- data/db/migrate/20130226032817_change_meta_description_on_spree_products_to_text.rb +5 -0
- data/db/migrate/20130226191231_add_stock_location_id_to_spree_shipments.rb +5 -0
- data/db/migrate/20130227143905_add_pending_to_inventory_unit.rb +6 -0
- data/db/migrate/20130228164411_remove_on_demand_from_product_and_variant.rb +6 -0
- data/db/migrate/20130228210442_create_shipping_method_zone.rb +21 -0
- data/db/migrate/20130301162745_remove_shipping_category_id_from_shipping_method.rb +5 -0
- data/db/migrate/20130301162924_create_shipping_method_categories.rb +13 -0
- data/db/migrate/20130301205200_add_tracking_url_to_spree_shipping_methods.rb +5 -0
- data/db/migrate/20130304162240_create_spree_shipping_rates.rb +24 -0
- data/db/migrate/20130304192936_remove_category_match_attributes_from_shipping_method.rb +7 -0
- data/db/migrate/20130305143310_create_stock_movements.rb +12 -0
- data/db/migrate/20130306181701_add_address_fields_to_stock_location.rb +22 -0
- data/db/migrate/20130306191917_add_active_field_to_stock_locations.rb +5 -0
- data/db/migrate/20130306195650_add_backorderable_to_stock_item.rb +5 -0
- data/db/migrate/20130307161754_add_default_quantity_to_stock_movement.rb +5 -0
- data/db/migrate/20130318151756_add_source_and_destination_to_stock_movements.rb +8 -0
- data/db/migrate/20130319062004_change_orders_total_precision.rb +8 -0
- data/db/migrate/20130319063911_change_spree_payments_amount_precision.rb +7 -0
- data/db/migrate/20130319064308_change_spree_return_authorization_amount_precision.rb +7 -0
- data/db/migrate/20130319082943_change_adjustments_amount_precision.rb +7 -0
- data/db/migrate/20130319183250_add_originator_to_stock_movement.rb +7 -0
- data/db/migrate/20130319190507_drop_source_and_destination_from_stock_movement.rb +15 -0
- data/db/migrate/20130325163316_migrate_inventory_unit_sold_to_on_hand.rb +9 -0
- data/db/migrate/20130326175857_add_stock_location_to_rma.rb +5 -0
- data/db/migrate/20130328130308_update_shipment_state_for_canceled_orders.rb +15 -0
- data/db/migrate/20130328195253_add_seo_metas_to_taxons.rb +9 -0
- data/db/migrate/20130329134939_remove_stock_item_and_variant_lock.rb +14 -0
- data/db/migrate/20130413230529_add_name_to_spree_credit_cards.rb +5 -0
- data/db/migrate/20130414000512_update_name_fields_on_spree_credit_cards.rb +13 -0
- data/db/migrate/20130417120034_add_index_to_source_columns_on_adjustments.rb +5 -0
- data/db/migrate/20130417120035_update_adjustment_states.rb +16 -0
- data/db/migrate/20130417123427_add_shipping_rates_to_shipments.rb +15 -0
- data/db/migrate/20130418125341_create_spree_stock_transfers.rb +14 -0
- data/db/migrate/20130423110707_drop_products_count_on_hand.rb +5 -0
- data/db/migrate/20130423223847_set_default_shipping_rate_cost.rb +5 -0
- data/db/migrate/20130509115210_add_number_to_stock_transfer.rb +23 -0
- data/db/migrate/20130514151929_add_sku_index_to_spree_variants.rb +5 -0
- data/db/migrate/20130515180736_add_backorderable_default_to_spree_stock_location.rb +5 -0
- data/db/migrate/20130516151222_add_propage_all_variants_to_spree_stock_location.rb +5 -0
- data/db/migrate/20130611054351_rename_shipping_methods_zones_to_spree_shipping_methods_zones.rb +5 -0
- data/db/migrate/20130611185927_add_user_id_index_to_spree_orders.rb +5 -0
- data/db/migrate/20130618041418_add_updated_at_to_spree_countries.rb +9 -0
- data/db/migrate/20130619012236_add_updated_at_to_spree_states.rb +9 -0
- data/db/migrate/20130626232741_add_cvv_result_code_and_cvv_result_message_to_spree_payments.rb +6 -0
- data/db/migrate/20130628021056_add_unique_index_to_permalink_on_spree_products.rb +5 -0
- data/db/migrate/20130628022817_add_unique_index_to_orders_shipments_and_stock_transfers.rb +7 -0
- data/db/migrate/20130708052307_add_deleted_at_to_spree_tax_rates.rb +5 -0
- data/db/migrate/20130711200933_remove_lock_version_from_inventory_units.rb +6 -0
- data/db/migrate/20130718042445_add_cost_price_to_line_item.rb +5 -0
- data/db/migrate/20130718233855_set_backorderable_to_default_to_false.rb +6 -0
- data/db/migrate/20130725031716_add_created_by_id_to_spree_orders.rb +5 -0
- data/db/migrate/20130729214043_index_completed_at_on_spree_orders.rb +5 -0
- data/db/migrate/20130802014537_add_tax_category_id_to_spree_line_items.rb +5 -0
- data/db/migrate/20130802022321_migrate_tax_categories_to_line_items.rb +10 -0
- data/db/migrate/20130806022521_drop_spree_mail_methods.rb +12 -0
- data/db/migrate/20130806145853_set_default_stock_location_on_shipments.rb +8 -0
- data/db/migrate/20130807024301_upgrade_adjustments.rb +40 -0
- data/db/migrate/20130807024302_rename_adjustment_fields.rb +14 -0
- data/db/migrate/20130809164245_add_admin_name_column_to_spree_shipping_methods.rb +5 -0
- data/db/migrate/20130809164330_add_admin_name_column_to_spree_stock_locations.rb +5 -0
- data/db/migrate/20130813004002_add_shipment_total_to_spree_orders.rb +5 -0
- data/db/migrate/20130813140619_expand_order_number_size.rb +9 -0
- data/db/migrate/20130813232134_rename_activators_to_promotions.rb +5 -0
- data/db/migrate/20130815000406_add_adjustment_total_to_line_items.rb +5 -0
- data/db/migrate/20130815024413_add_adjustment_total_to_shipments.rb +5 -0
- data/db/migrate/20130826062534_add_depth_to_spree_taxons.rb +16 -0
- data/db/migrate/20130828234942_add_tax_total_to_line_items_shipments_and_orders.rb +8 -0
- data/db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb +15 -0
- data/db/migrate/20130830001159_migrate_old_shipping_calculators.rb +19 -0
- data/db/migrate/20130903183026_add_code_to_spree_promotion_rules.rb +5 -0
- data/db/migrate/20130909115621_change_states_required_for_countries.rb +9 -0
- data/db/migrate/20130915032339_add_deleted_at_to_spree_stock_items.rb +5 -0
- data/db/migrate/20130917024658_remove_promotions_event_name_field.rb +5 -0
- data/db/migrate/20130924040529_add_promo_total_to_line_items_and_shipments_and_orders.rb +7 -0
- data/db/migrate/20131001013410_remove_unused_credit_card_fields.rb +16 -0
- data/db/migrate/20131026154747_add_track_inventory_to_variant.rb +5 -0
- data/db/migrate/20131107132123_add_tax_category_to_variants.rb +6 -0
- data/db/migrate/20131113035136_add_channel_to_spree_orders.rb +5 -0
- data/db/migrate/20131118043959_add_included_to_adjustments.rb +5 -0
- data/db/migrate/20131118050234_rename_tax_total_fields.rb +11 -0
- data/db/migrate/20131118183431_add_line_item_id_to_spree_inventory_units.rb +21 -0
- data/db/migrate/20131120234456_add_updated_at_to_variants.rb +5 -0
- data/db/migrate/20131127001002_add_position_to_classifications.rb +5 -0
- data/db/migrate/20131211112807_create_spree_orders_promotions.rb +8 -0
- data/db/migrate/20131211192741_unique_shipping_method_categories.rb +24 -0
- data/db/migrate/20131218054603_add_item_count_to_spree_orders.rb +5 -0
- data/db/migrate/20140106065820_remove_value_type_from_spree_preferences.rb +8 -0
- data/db/migrate/20140106224208_rename_permalink_to_slug_for_products.rb +5 -0
- data/db/migrate/20140120160805_add_index_to_variant_id_and_currency_on_prices.rb +5 -0
- data/db/migrate/20140124023232_rename_activator_id_in_rules_and_actions_to_promotion_id.rb +6 -0
- data/db/migrate/20140129024326_add_deleted_at_to_spree_prices.rb +5 -0
- data/db/migrate/20140203161722_add_approver_id_and_approved_at_to_orders.rb +6 -0
- data/db/migrate/20140204115338_add_confirmation_delivered_to_spree_orders.rb +5 -0
- data/db/migrate/20140204192230_add_auto_capture_to_payment_methods.rb +5 -0
- data/db/migrate/20140205120320_create_spree_payment_capture_events.rb +12 -0
- data/db/migrate/20140205144710_add_uncaptured_amount_to_payments.rb +5 -0
- data/db/migrate/20140205181631_default_variant_weight_to_zero.rb +11 -0
- data/db/migrate/20140207085910_add_tax_category_id_to_shipping_methods.rb +5 -0
- data/db/migrate/20140207093021_add_tax_rate_id_to_shipping_rates.rb +5 -0
- data/db/migrate/20140211040159_add_pre_tax_amount_to_line_items_and_shipments.rb +6 -0
- data/db/migrate/20140213184916_add_more_indexes.rb +13 -0
- data/db/migrate/20140219060952_add_considered_risky_to_orders.rb +5 -0
- data/db/migrate/20140227112348_add_preference_store_to_everything.rb +8 -0
- data/db/migrate/20140307235515_add_user_id_to_spree_credit_cards.rb +13 -0
- data/db/migrate/20140309023735_migrate_old_preferences.rb +23 -0
- data/db/migrate/20140309024355_create_spree_stores.rb +25 -0
- data/db/migrate/20140309033438_create_store_from_preferences.rb +30 -0
- data/db/migrate/20140315053743_add_timestamps_to_spree_assets.rb +6 -0
- data/db/migrate/20140318191500_create_spree_taxons_promotion_rules.rb +8 -0
- data/db/migrate/20140331100557_add_additional_store_fields.rb +8 -0
- data/db/migrate/20140410141842_add_many_missing_indexes.rb +17 -0
- data/db/migrate/20140410150358_correct_some_polymorphic_index_and_add_more_missing.rb +66 -0
- data/db/migrate/20140415041315_add_user_id_created_by_id_index_to_order.rb +5 -0
- data/db/migrate/20140508151342_change_spree_price_amount_precision.rb +8 -0
- data/db/migrate/20140518174634_add_token_to_spree_orders.rb +5 -0
- data/db/migrate/20140530024945_move_order_token_from_tokenized_permission.rb +29 -0
- data/db/migrate/20140601011216_set_shipment_total_for_users_upgrading.rb +10 -0
- data/db/migrate/20140604135309_drop_credit_card_first_name_and_last_name.rb +6 -0
- data/db/migrate/20140609201656_add_deleted_at_to_spree_promotion_actions.rb +6 -0
- data/db/migrate/20140616202624_remove_uncaptured_amount_from_spree_payments.rb +5 -0
- data/db/migrate/20140625214618_create_spree_refunds.rb +12 -0
- data/db/migrate/20140702140656_create_spree_return_authorization_inventory_unit.rb +12 -0
- data/db/migrate/20140707125621_rename_return_authorization_inventory_unit_to_return_items.rb +5 -0
- data/db/migrate/20140708132019_create_order_mutex.rb +11 -0
- data/db/migrate/20140709160534_backfill_line_item_pre_tax_amount.rb +10 -0
- data/db/migrate/20140710041921_recreate_spree_return_authorizations.rb +55 -0
- data/db/migrate/20140710181204_add_amount_fields_to_return_items.rb +7 -0
- data/db/migrate/20140710190048_drop_return_authorization_amount.rb +5 -0
- data/db/migrate/20140713140455_create_spree_return_authorization_reasons.rb +28 -0
- data/db/migrate/20140713140527_create_spree_refund_reasons.rb +14 -0
- data/db/migrate/20140713142214_rename_return_authorization_reason.rb +5 -0
- data/db/migrate/20140715182625_create_spree_promotion_categories.rb +11 -0
- data/db/migrate/20140716204111_drop_received_at_on_return_items.rb +9 -0
- data/db/migrate/20140716212330_add_reception_and_acceptance_status_to_return_items.rb +6 -0
- data/db/migrate/20140717155155_create_default_refund_reason.rb +9 -0
- data/db/migrate/20140717185932_add_default_to_spree_stock_locations.rb +7 -0
- data/db/migrate/20140718133010_create_spree_customer_returns.rb +9 -0
- data/db/migrate/20140718133349_add_customer_return_id_to_return_item.rb +6 -0
- data/db/migrate/20140718195325_create_friendly_id_slugs.rb +15 -0
- data/db/migrate/20140723004419_rename_spree_refund_return_authorization_id.rb +5 -0
- data/db/migrate/20140723152808_increase_return_item_pre_tax_amount_precision.rb +13 -0
- data/db/migrate/20140723214541_copy_product_slugs_to_slug_history.rb +15 -0
- data/db/migrate/20140725131539_create_spree_reimbursements.rb +21 -0
- data/db/migrate/20140728225422_add_promotionable_to_spree_products.rb +5 -0
- data/db/migrate/20140729133613_add_exchange_inventory_unit_foreign_keys.rb +7 -0
- data/db/migrate/20140730155938_add_acceptance_status_errors_to_return_item.rb +5 -0
- data/db/migrate/20140731150017_create_spree_reimbursement_types.rb +20 -0
- data/db/migrate/20140804185157_add_default_to_shipment_cost.rb +10 -0
- data/db/migrate/20140805171035_add_default_to_spree_credit_cards.rb +5 -0
- data/db/migrate/20140805171219_make_existing_credit_cards_default.rb +10 -0
- data/db/migrate/20140806144901_add_type_to_reimbursement_type.rb +9 -0
- data/db/migrate/20140808184039_create_spree_reimbursement_credits.rb +10 -0
- data/db/migrate/20140827170513_add_meta_title_to_spree_products.rb +7 -0
- data/db/migrate/20140924164824_add_code_to_spree_tax_categories.rb +5 -0
- data/db/migrate/20140927193717_default_pre_tax_amount_should_be_zero.rb +6 -0
- data/db/migrate/20141002191113_add_code_to_spree_shipping_methods.rb +5 -0
- data/db/migrate/20141007230328_add_cancel_audit_fields_to_spree_orders.rb +6 -0
- data/db/migrate/20141009204607_add_store_id_to_orders.rb +8 -0
- data/db/migrate/20141012083513_create_spree_taxons_prototypes.rb +8 -0
- data/db/migrate/20141021194502_add_state_lock_version_to_order.rb +5 -0
- data/db/migrate/20141023005240_add_counter_cache_from_spree_variants_to_spree_stock_items.rb +8 -0
- data/db/migrate/20141101231208_fix_adjustment_order_presence.rb +13 -0
- data/db/migrate/20141105213646_update_classifications_positions.rb +9 -0
- data/db/migrate/20141120135441_add_guest_token_index_to_spree_orders.rb +5 -0
- data/db/migrate/20141231151320_add_default_column_to_price.rb +5 -0
- data/db/migrate/20150112194216_add_position_to_stock_location.rb +5 -0
- data/db/migrate/20150113002122_create_spree_promotion_codes.rb +13 -0
- data/db/migrate/20150113002123_create_adjustment_promotion_code_association.rb +6 -0
- data/db/migrate/20150121202544_add_restock_inventory_to_stock_location.rb +5 -0
- data/db/migrate/20150122202432_add_code_to_spree_promotion_categories.rb +5 -0
- data/db/migrate/20150127161843_create_order_stock_locations.rb +12 -0
- data/db/migrate/20150203151219_add_fulfillable_to_stock_location.rb +5 -0
- data/db/migrate/20150205210527_add_code_to_refund_reason.rb +5 -0
- data/db/migrate/20150213160148_add_promotion_code_id_to_orders_promotions.rb +7 -0
- data/db/migrate/20150213163612_add_approver_name_to_spree_orders.rb +5 -0
- data/db/migrate/20150225205344_move_promotion_code_to_promotion_code_value.rb +65 -0
- data/db/migrate/20150226195213_downcase_promotion_codes_values.rb +11 -0
- data/db/migrate/20150227161934_add_order_ids_to_adjustments_where_missing.rb +9 -0
- data/db/migrate/20150303212749_add_per_code_usage_limit_to_promotions.rb +5 -0
- data/db/migrate/20150303212826_remove_usage_limit_from_promotion_codes.rb +5 -0
- data/db/migrate/20150304211616_add_timestamps_to_order_promotions.rb +6 -0
- data/db/migrate/20150305043021_create_spree_cartons.rb +24 -0
- data/db/migrate/20150305210403_add_timestamps_to_spree_roles_users.rb +7 -0
- data/db/migrate/20150313140507_remove_considered_risky_from_spree_orders.rb +5 -0
- data/db/migrate/20150313192827_add_index_to_inventory_units_carton_id.rb +5 -0
- data/db/migrate/20150313201235_add_imported_from_shipment_id_to_cartons.rb +8 -0
- data/db/migrate/20150313201503_copy_shipped_shipments_to_cartons.rb +13 -0
- data/db/migrate/20150330144639_create_spree_user_stock_locations.rb +10 -0
- data/db/migrate/20150331134544_add_stock_location_code.rb +5 -0
- data/db/migrate/20150402210430_create_unit_cancels.rb +10 -0
- data/db/migrate/20150407173305_add_fields_to_stock_transfer.rb +12 -0
- data/db/migrate/20150407173531_create_transfer_items.rb +14 -0
- data/db/migrate/20150424143547_drop_stock_transfer_type.rb +10 -0
- data/db/migrate/20150424161102_add_stock_transfer_finalized_at.rb +8 -0
- data/db/migrate/20150429125822_rename_stock_transfer_reference.rb +5 -0
- data/db/migrate/20150430233803_create_line_item_actions.rb +10 -0
- data/db/migrate/20150506181159_create_spree_store_credit_categories.rb +10 -0
- data/db/migrate/20150506181244_create_spree_store_credits.rb +19 -0
- data/db/migrate/20150506181539_create_spree_store_credit_events.rb +17 -0
- data/db/migrate/20150506181611_create_spree_store_credit_payment_method.rb +13 -0
- data/db/migrate/20150506181715_create_store_credit_types.rb +17 -0
- data/db/migrate/20150506182045_create_store_credit_reimbursement_type.rb +5 -0
- data/db/migrate/20150508044622_add_resellable_to_return_items.rb +5 -0
- data/db/migrate/20150514185559_add_invalidated_at_to_spree_store_credits.rb +5 -0
- data/db/migrate/20150514201836_migrate_deleted_store_credits_to_invalidated.rb +13 -0
- data/db/migrate/20150515170322_add_check_stock_on_transfer.rb +5 -0
- data/db/migrate/20150528125647_delete_inventory_units_without_shipment.rb +25 -0
- data/db/migrate/20150601191251_add_deleted_at_to_stock_transfers.rb +5 -0
- data/db/migrate/20150601204148_add_deleted_at_to_transfer_items.rb +5 -0
- data/db/migrate/20150609193231_add_preferences_to_promotion_actions.rb +5 -0
- data/db/migrate/20150610182638_add_id_to_spree_option_values_variants.rb +5 -0
- data/db/migrate/20150611200247_add_frontend_viewable_to_spree_orders.rb +5 -0
- data/db/migrate/20150612205731_remove_spree_configurations.rb +15 -0
- data/db/migrate/20150618191713_remove_credit_card_address_id.rb +7 -0
- data/db/migrate/20150626214817_remove_counter_cache_from_spree_variants_to_spree_stock_items.rb +10 -0
- data/db/seeds.rb +5 -0
- data/lib/generators/spree/custom_user/custom_user_generator.rb +56 -0
- data/lib/generators/spree/custom_user/templates/authentication_helpers.rb.tt +36 -0
- data/lib/generators/spree/custom_user/templates/initializer.rb.tt +1 -0
- data/lib/generators/spree/custom_user/templates/migration.rb.tt +7 -0
- data/lib/generators/spree/dummy/dummy_generator.rb +140 -0
- data/lib/generators/spree/dummy/templates/initializers/custom_user.rb +1 -0
- data/lib/generators/spree/dummy/templates/initializers/devise.rb +3 -0
- data/lib/generators/spree/dummy/templates/rails/application.rb +10 -0
- data/lib/generators/spree/dummy/templates/rails/boot.rb +6 -0
- data/lib/generators/spree/dummy/templates/rails/database.yml +65 -0
- data/lib/generators/spree/dummy/templates/rails/routes.rb +2 -0
- data/lib/generators/spree/dummy/templates/rails/script/rails +6 -0
- data/lib/generators/spree/dummy/templates/rails/test.rb +34 -0
- data/lib/generators/spree/install/install_generator.rb +191 -0
- data/lib/generators/spree/install/templates/config/initializers/spree.rb +41 -0
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/backend/all.js +13 -0
- data/lib/generators/spree/install/templates/vendor/assets/javascripts/spree/frontend/all.js +13 -0
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/backend/all.css +12 -0
- data/lib/generators/spree/install/templates/vendor/assets/stylesheets/spree/frontend/all.css +12 -0
- data/lib/solidus_core.rb +1 -0
- data/lib/spree/core.rb +95 -0
- data/lib/spree/core/controller_helpers/auth.rb +83 -0
- data/lib/spree/core/controller_helpers/common.rb +74 -0
- data/lib/spree/core/controller_helpers/order.rb +106 -0
- data/lib/spree/core/controller_helpers/respond_with.rb +65 -0
- data/lib/spree/core/controller_helpers/search.rb +14 -0
- data/lib/spree/core/controller_helpers/store.rb +19 -0
- data/lib/spree/core/controller_helpers/strong_parameters.rb +42 -0
- data/lib/spree/core/delegate_belongs_to.rb +95 -0
- data/lib/spree/core/engine.rb +114 -0
- data/lib/spree/core/environment.rb +15 -0
- data/lib/spree/core/environment/calculators.rb +12 -0
- data/lib/spree/core/environment_extension.rb +25 -0
- data/lib/spree/core/importer.rb +9 -0
- data/lib/spree/core/importer/order.rb +202 -0
- data/lib/spree/core/importer/product.rb +62 -0
- data/lib/spree/core/permalinks.rb +71 -0
- data/lib/spree/core/product_duplicator.rb +74 -0
- data/lib/spree/core/product_filters.rb +194 -0
- data/lib/spree/core/routes.rb +46 -0
- data/lib/spree/core/search/base.rb +97 -0
- data/lib/spree/core/search/variant.rb +46 -0
- data/lib/spree/core/unreturned_item_charger.rb +102 -0
- data/lib/spree/core/validators/email.rb +7 -0
- data/lib/spree/core/version.rb +5 -0
- data/lib/spree/i18n.rb +37 -0
- data/lib/spree/i18n/base.rb +17 -0
- data/lib/spree/i18n/initializer.rb +1 -0
- data/lib/spree/localized_number.rb +24 -0
- data/lib/spree/migrations.rb +76 -0
- data/lib/spree/money.rb +72 -0
- data/lib/spree/permitted_attributes.rb +114 -0
- data/lib/spree/promo/environment.rb +9 -0
- data/lib/spree/responder.rb +45 -0
- data/lib/spree/testing_support/ability_helpers.rb +105 -0
- data/lib/spree/testing_support/authorization_helpers.rb +63 -0
- data/lib/spree/testing_support/bar_ability.rb +14 -0
- data/lib/spree/testing_support/caching.rb +47 -0
- data/lib/spree/testing_support/capybara_ext.rb +163 -0
- data/lib/spree/testing_support/common_rake.rb +40 -0
- data/lib/spree/testing_support/controller_requests.rb +83 -0
- data/lib/spree/testing_support/extension_rake.rb +10 -0
- data/lib/spree/testing_support/factories.rb +20 -0
- data/lib/spree/testing_support/factories/address_factory.rb +22 -0
- data/lib/spree/testing_support/factories/adjustment_factory.rb +26 -0
- data/lib/spree/testing_support/factories/calculator_factory.rb +24 -0
- data/lib/spree/testing_support/factories/carton_factory.rb +21 -0
- data/lib/spree/testing_support/factories/country_factory.rb +9 -0
- data/lib/spree/testing_support/factories/credit_card_factory.rb +10 -0
- data/lib/spree/testing_support/factories/customer_return_factory.rb +31 -0
- data/lib/spree/testing_support/factories/inventory_unit_factory.rb +10 -0
- data/lib/spree/testing_support/factories/line_item_factory.rb +14 -0
- data/lib/spree/testing_support/factories/options_factory.rb +13 -0
- data/lib/spree/testing_support/factories/order_factory.rb +100 -0
- data/lib/spree/testing_support/factories/order_promotion_factory.rb +6 -0
- data/lib/spree/testing_support/factories/payment_factory.rb +28 -0
- data/lib/spree/testing_support/factories/payment_method_factory.rb +27 -0
- data/lib/spree/testing_support/factories/price_factory.rb +7 -0
- data/lib/spree/testing_support/factories/product_factory.rb +36 -0
- data/lib/spree/testing_support/factories/product_option_type_factory.rb +6 -0
- data/lib/spree/testing_support/factories/product_property_factory.rb +6 -0
- data/lib/spree/testing_support/factories/promotion_category_factory.rb +6 -0
- data/lib/spree/testing_support/factories/promotion_code_factory.rb +6 -0
- data/lib/spree/testing_support/factories/promotion_factory.rb +62 -0
- data/lib/spree/testing_support/factories/property_factory.rb +6 -0
- data/lib/spree/testing_support/factories/prototype_factory.rb +6 -0
- data/lib/spree/testing_support/factories/refund_factory.rb +14 -0
- data/lib/spree/testing_support/factories/reimbursement_factory.rb +16 -0
- data/lib/spree/testing_support/factories/reimbursement_type_factory.rb +7 -0
- data/lib/spree/testing_support/factories/return_authorization_factory.rb +18 -0
- data/lib/spree/testing_support/factories/return_item_factory.rb +16 -0
- data/lib/spree/testing_support/factories/role_factory.rb +9 -0
- data/lib/spree/testing_support/factories/shipment_factory.rb +28 -0
- data/lib/spree/testing_support/factories/shipping_category_factory.rb +5 -0
- data/lib/spree/testing_support/factories/shipping_method_factory.rb +25 -0
- data/lib/spree/testing_support/factories/state_factory.rb +13 -0
- data/lib/spree/testing_support/factories/stock_factory.rb +31 -0
- data/lib/spree/testing_support/factories/stock_item_factory.rb +9 -0
- data/lib/spree/testing_support/factories/stock_location_factory.rb +28 -0
- data/lib/spree/testing_support/factories/stock_movement_factory.rb +11 -0
- data/lib/spree/testing_support/factories/stock_transfer_factory.rb +28 -0
- data/lib/spree/testing_support/factories/store_credit_category_factory.rb +6 -0
- data/lib/spree/testing_support/factories/store_credit_event_factory.rb +15 -0
- data/lib/spree/testing_support/factories/store_credit_factory.rb +10 -0
- data/lib/spree/testing_support/factories/store_credit_type_factory.rb +13 -0
- data/lib/spree/testing_support/factories/store_factory.rb +8 -0
- data/lib/spree/testing_support/factories/tax_category_factory.rb +7 -0
- data/lib/spree/testing_support/factories/tax_rate_factory.rb +8 -0
- data/lib/spree/testing_support/factories/taxon_factory.rb +7 -0
- data/lib/spree/testing_support/factories/taxonomy_factory.rb +5 -0
- data/lib/spree/testing_support/factories/tracker_factory.rb +7 -0
- data/lib/spree/testing_support/factories/user_factory.rb +22 -0
- data/lib/spree/testing_support/factories/variant_factory.rb +39 -0
- data/lib/spree/testing_support/factories/zone_factory.rb +17 -0
- data/lib/spree/testing_support/flash.rb +27 -0
- data/lib/spree/testing_support/i18n.rb +98 -0
- data/lib/spree/testing_support/mail.rb +20 -0
- data/lib/spree/testing_support/order_walkthrough.rb +78 -0
- data/lib/spree/testing_support/preferences.rb +29 -0
- data/lib/spree/testing_support/rspec-activemodel-mocks_patch.rb +8 -0
- data/lib/spree/testing_support/url_helpers.rb +9 -0
- data/lib/spree_core.rb +1 -0
- data/lib/tasks/core.rake +101 -0
- data/lib/tasks/email.rake +7 -0
- data/lib/tasks/exchanges.rake +48 -0
- data/lib/tasks/migrations/copy_shipped_shipments_to_cartons.rake +180 -0
- data/lib/tasks/order_capturing.rake +23 -0
- data/vendor/assets/javascripts/jquery-migrate-1.0.0.js +498 -0
- data/vendor/assets/javascripts/jquery.payment.js +497 -0
- data/vendor/assets/javascripts/jsuri.js +2 -0
- data/vendor/assets/stylesheets/normalize.css +375 -0
- data/vendor/assets/stylesheets/skeleton.css +242 -0
- metadata +993 -0
@@ -0,0 +1,103 @@
|
|
1
|
+
module Spree
|
2
|
+
class Taxon < Spree::Base
|
3
|
+
acts_as_nested_set dependent: :destroy
|
4
|
+
|
5
|
+
belongs_to :taxonomy, class_name: 'Spree::Taxonomy', inverse_of: :taxons
|
6
|
+
has_many :classifications, -> { order(:position) }, dependent: :delete_all, inverse_of: :taxon
|
7
|
+
has_many :products, through: :classifications
|
8
|
+
|
9
|
+
has_and_belongs_to_many :prototypes, join_table: :spree_taxons_prototypes
|
10
|
+
|
11
|
+
before_create :set_permalink
|
12
|
+
|
13
|
+
validates :name, presence: true
|
14
|
+
validates :meta_keywords, length: { maximum: 255 }
|
15
|
+
validates :meta_description, length: { maximum: 255 }
|
16
|
+
validates :meta_title, length: { maximum: 255 }
|
17
|
+
|
18
|
+
after_save :touch_ancestors_and_taxonomy
|
19
|
+
after_touch :touch_ancestors_and_taxonomy
|
20
|
+
|
21
|
+
has_attached_file :icon,
|
22
|
+
styles: { mini: '32x32>', normal: '128x128>' },
|
23
|
+
default_style: :mini,
|
24
|
+
url: '/spree/taxons/:id/:style/:basename.:extension',
|
25
|
+
path: ':rails_root/public/spree/taxons/:id/:style/:basename.:extension',
|
26
|
+
default_url: '/assets/default_taxon.png'
|
27
|
+
|
28
|
+
validates_attachment :icon,
|
29
|
+
content_type: { content_type: ["image/jpg", "image/jpeg", "image/png", "image/gif"] }
|
30
|
+
|
31
|
+
# @note This method is meant to be overridden on a store by store basis.
|
32
|
+
# @return [Array] filters that should be used for a taxon
|
33
|
+
def applicable_filters
|
34
|
+
fs = []
|
35
|
+
# fs << ProductFilters.taxons_below(self)
|
36
|
+
## unless it's a root taxon? left open for demo purposes
|
37
|
+
|
38
|
+
fs << Spree::Core::ProductFilters.price_filter if Spree::Core::ProductFilters.respond_to?(:price_filter)
|
39
|
+
fs << Spree::Core::ProductFilters.brand_filter if Spree::Core::ProductFilters.respond_to?(:brand_filter)
|
40
|
+
fs
|
41
|
+
end
|
42
|
+
|
43
|
+
# @return [String] meta_title if set otherwise a string containing the
|
44
|
+
# root name and taxon name
|
45
|
+
def seo_title
|
46
|
+
unless meta_title.blank?
|
47
|
+
meta_title
|
48
|
+
else
|
49
|
+
root? ? name : "#{root.name} - #{name}"
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# Sets this taxons permalink to a valid url encoded string based on its
|
54
|
+
# name and its parents permalink (if present.)
|
55
|
+
def set_permalink
|
56
|
+
if parent.present?
|
57
|
+
self.permalink = [parent.permalink, (permalink.blank? ? name.to_url : permalink.split('/').last)].join('/')
|
58
|
+
else
|
59
|
+
self.permalink = name.to_url if permalink.blank?
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
# @return [String] this taxon's permalink
|
64
|
+
def to_param
|
65
|
+
permalink
|
66
|
+
end
|
67
|
+
|
68
|
+
# @return [ActiveRecord::Relation<Spree::Product>] the active products the
|
69
|
+
# belong to this taxon
|
70
|
+
def active_products
|
71
|
+
products.active
|
72
|
+
end
|
73
|
+
|
74
|
+
# @return [String] this taxon's ancestors names followed by its own name,
|
75
|
+
# separated by arrows
|
76
|
+
def pretty_name
|
77
|
+
ancestor_chain = self.ancestors.inject("") do |name, ancestor|
|
78
|
+
name += "#{ancestor.name} -> "
|
79
|
+
end
|
80
|
+
ancestor_chain + "#{name}"
|
81
|
+
end
|
82
|
+
|
83
|
+
# @see https://github.com/spree/spree/issues/3390
|
84
|
+
def child_index=(idx)
|
85
|
+
# awesome_nested_set sorts by :lft and :rgt. This call re-inserts the
|
86
|
+
# child node so that its resulting position matches the observable
|
87
|
+
# 0-indexed position.
|
88
|
+
#
|
89
|
+
# NOTE: no :position column needed - awesom_nested_set doesn't handle the
|
90
|
+
# reordering if you bring your own :order_column.
|
91
|
+
move_to_child_with_index(parent, idx.to_i) unless self.new_record?
|
92
|
+
end
|
93
|
+
|
94
|
+
private
|
95
|
+
|
96
|
+
def touch_ancestors_and_taxonomy
|
97
|
+
# Touches all ancestors at once to avoid recursive taxonomy touch, and reduce queries.
|
98
|
+
self.class.where(id: ancestors.pluck(:id)).update_all(updated_at: Time.now)
|
99
|
+
# Have taxonomy touch happen in #touch_ancestors_and_taxonomy rather than association option in order for imports to override.
|
100
|
+
taxonomy.try!(:touch)
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module Spree
|
2
|
+
class Taxonomy < Spree::Base
|
3
|
+
acts_as_list
|
4
|
+
|
5
|
+
validates :name, presence: true
|
6
|
+
|
7
|
+
has_many :taxons, inverse_of: :taxonomy
|
8
|
+
has_one :root, -> { where parent_id: nil }, class_name: "Spree::Taxon", dependent: :destroy
|
9
|
+
|
10
|
+
after_save :set_name
|
11
|
+
|
12
|
+
default_scope -> { order("#{self.table_name}.position") }
|
13
|
+
|
14
|
+
private
|
15
|
+
def set_name
|
16
|
+
if root
|
17
|
+
root.update_columns(
|
18
|
+
name: name,
|
19
|
+
updated_at: Time.now,
|
20
|
+
)
|
21
|
+
else
|
22
|
+
self.root = Taxon.create!(taxonomy_id: id, name: name)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
module Spree
|
2
|
+
class TransferItem < ActiveRecord::Base
|
3
|
+
acts_as_paranoid
|
4
|
+
belongs_to :stock_transfer, inverse_of: :transfer_items
|
5
|
+
belongs_to :variant
|
6
|
+
|
7
|
+
validate :stock_availability, if: :check_stock?
|
8
|
+
validates_presence_of :stock_transfer, :variant
|
9
|
+
validates_uniqueness_of :variant_id, scope: :stock_transfer_id
|
10
|
+
validates :expected_quantity, numericality: { greater_than: 0 }
|
11
|
+
validates :received_quantity, numericality: { greater_than_or_equal_to: 0, less_than_or_equal_to: :expected_quantity }
|
12
|
+
|
13
|
+
scope :received, -> { where('received_quantity > 0') }
|
14
|
+
scope :fully_received, -> { where('expected_quantity = received_quantity') }
|
15
|
+
scope :partially_received, -> { received.where('expected_quantity > received_quantity') }
|
16
|
+
|
17
|
+
before_destroy :ensure_stock_transfer_not_finalized
|
18
|
+
before_validation :ensure_stock_transfer_not_closed
|
19
|
+
before_update :prevent_expected_quantity_update_stock_transfer_finalized
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def ensure_stock_transfer_not_closed
|
24
|
+
if stock_transfer_closed?
|
25
|
+
errors.add(:base, Spree.t('errors.messages.cannot_modify_transfer_item_closed_stock_transfer'))
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
def ensure_stock_transfer_not_finalized
|
30
|
+
unless stock_transfer.finalizable?
|
31
|
+
errors.add(:base, Spree.t('errors.messages.cannot_delete_transfer_item_with_finalized_stock_transfer'))
|
32
|
+
return false
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def prevent_expected_quantity_update_stock_transfer_finalized
|
37
|
+
if expected_quantity_changed? && stock_transfer.finalized?
|
38
|
+
errors.add(:base, Spree.t('errors.messages.cannot_update_expected_transfer_item_with_finalized_stock_transfer'))
|
39
|
+
return false
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def stock_availability
|
44
|
+
stock_item = variant.stock_items.find_by(stock_location: stock_transfer.source_location)
|
45
|
+
if stock_item.nil? || stock_item.count_on_hand < expected_quantity
|
46
|
+
errors.add(:base, Spree.t('errors.messages.transfer_item_insufficient_stock'))
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def stock_transfer_closed?
|
51
|
+
stock_transfer.closed?
|
52
|
+
end
|
53
|
+
|
54
|
+
def check_stock?
|
55
|
+
!stock_transfer_closed? && stock_transfer.source_location.check_stock_on_transfer?
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# This represents an inventory unit that has been canceled from an order after it has already been completed
|
2
|
+
# The reason specifies why it was canceled.
|
3
|
+
# This class should encapsulate logic related to canceling inventory after order complete
|
4
|
+
class Spree::UnitCancel < ActiveRecord::Base
|
5
|
+
SHORT_SHIP = 'Short Ship'
|
6
|
+
belongs_to :inventory_unit
|
7
|
+
has_one :adjustment, as: :source, dependent: :destroy
|
8
|
+
|
9
|
+
validates :inventory_unit, presence: true
|
10
|
+
|
11
|
+
# Creates necessary cancel adjustments for the line item.
|
12
|
+
def adjust!
|
13
|
+
raise "Adjustment is already created" if adjustment
|
14
|
+
|
15
|
+
amount = compute_amount(inventory_unit.line_item)
|
16
|
+
|
17
|
+
create_adjustment!(
|
18
|
+
adjustable: inventory_unit.line_item,
|
19
|
+
amount: amount,
|
20
|
+
order: inventory_unit.order,
|
21
|
+
label: "#{Spree.t(:cancellation)} - #{reason}",
|
22
|
+
eligible: true,
|
23
|
+
state: 'closed',
|
24
|
+
)
|
25
|
+
end
|
26
|
+
|
27
|
+
# This method is used by Adjustment#update to recalculate the cost.
|
28
|
+
def compute_amount(line_item)
|
29
|
+
raise "Adjustable does not match line item" unless line_item == inventory_unit.line_item
|
30
|
+
-(line_item.total.to_d / line_item.inventory_units.not_canceled.reject(&:original_return_item ).size)
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Spree
|
2
|
+
module Validations
|
3
|
+
##
|
4
|
+
# Validates a field based on the maximum length of the underlying DB field, if there is one.
|
5
|
+
class DbMaximumLengthValidator < ActiveModel::Validator
|
6
|
+
|
7
|
+
def initialize(options)
|
8
|
+
super
|
9
|
+
@field = options[:field].to_s
|
10
|
+
raise ArgumentError.new("a field must be specified to the validator") if @field.blank?
|
11
|
+
end
|
12
|
+
|
13
|
+
def validate(record)
|
14
|
+
limit = record.class.columns_hash[@field].limit
|
15
|
+
value = record[@field.to_sym]
|
16
|
+
if value && limit && value.to_s.length > limit
|
17
|
+
record.errors.add(@field.to_sym, :too_long, count: limit)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,356 @@
|
|
1
|
+
module Spree
|
2
|
+
# == Master Variant
|
3
|
+
#
|
4
|
+
# Every product has one master variant, which stores master price and SKU,
|
5
|
+
# size and weight, etc. The master variant does not have option values
|
6
|
+
# associated with it. Contains on_hand inventory levels only when there are
|
7
|
+
# no variants for the product.
|
8
|
+
#
|
9
|
+
# == Variants
|
10
|
+
#
|
11
|
+
# All variants can access the product properties directly (via reverse
|
12
|
+
# delegation). Inventory units are tied to Variant. The master variant can
|
13
|
+
# have inventory units, but not option values. All other variants have
|
14
|
+
# option values and may have inventory units. Sum of on_hand each variant's
|
15
|
+
# inventory level determine "on_hand" level for the product.
|
16
|
+
class Variant < Spree::Base
|
17
|
+
acts_as_paranoid
|
18
|
+
|
19
|
+
include Spree::DefaultPrice
|
20
|
+
|
21
|
+
belongs_to :product, touch: true, class_name: 'Spree::Product', inverse_of: :variants
|
22
|
+
belongs_to :tax_category, class_name: 'Spree::TaxCategory'
|
23
|
+
|
24
|
+
delegate_belongs_to :product, :name, :description, :slug, :available_on,
|
25
|
+
:shipping_category_id, :meta_description, :meta_keywords,
|
26
|
+
:shipping_category
|
27
|
+
|
28
|
+
has_many :inventory_units, inverse_of: :variant
|
29
|
+
has_many :line_items, inverse_of: :variant
|
30
|
+
has_many :orders, through: :line_items
|
31
|
+
|
32
|
+
has_many :stock_items, dependent: :destroy, inverse_of: :variant
|
33
|
+
has_many :stock_locations, through: :stock_items
|
34
|
+
has_many :stock_movements, through: :stock_items
|
35
|
+
|
36
|
+
has_many :option_values_variants, dependent: :destroy
|
37
|
+
has_many :option_values, through: :option_values_variants
|
38
|
+
|
39
|
+
has_many :images, -> { order(:position) }, as: :viewable, dependent: :destroy, class_name: "Spree::Image"
|
40
|
+
|
41
|
+
has_one :default_price,
|
42
|
+
-> { where(currency: Spree::Config[:currency], is_default: true) },
|
43
|
+
class_name: 'Spree::Price',
|
44
|
+
dependent: :destroy
|
45
|
+
|
46
|
+
delegate_belongs_to :default_price, :display_price, :display_amount, :price, :price=, :currency
|
47
|
+
|
48
|
+
has_many :prices,
|
49
|
+
class_name: 'Spree::Price',
|
50
|
+
dependent: :destroy,
|
51
|
+
inverse_of: :variant
|
52
|
+
|
53
|
+
before_validation :set_cost_currency
|
54
|
+
|
55
|
+
validate :check_price
|
56
|
+
|
57
|
+
validates :cost_price, numericality: { greater_than_or_equal_to: 0, allow_nil: true }
|
58
|
+
validates :price, numericality: { greater_than_or_equal_to: 0, allow_nil: true }
|
59
|
+
validates_uniqueness_of :sku, allow_blank: true, conditions: -> { where(deleted_at: nil) }
|
60
|
+
|
61
|
+
after_create :create_stock_items
|
62
|
+
after_create :set_position
|
63
|
+
after_create :set_master_out_of_stock, unless: :is_master?
|
64
|
+
|
65
|
+
after_touch :clear_in_stock_cache
|
66
|
+
|
67
|
+
scope :in_stock, -> { joins(:stock_items).where('count_on_hand > ? OR track_inventory = ?', 0, false) }
|
68
|
+
|
69
|
+
# Returns variants that are not deleted and have a price in the given
|
70
|
+
# currency.
|
71
|
+
#
|
72
|
+
# @param currency [String] the currency to filter by; defaults to Spree's default
|
73
|
+
# @return [ActiveRecord::Relation]
|
74
|
+
def self.active(currency = nil)
|
75
|
+
joins(:prices).where(deleted_at: nil).where('spree_prices.currency' => currency || Spree::Config[:currency]).where('spree_prices.amount IS NOT NULL')
|
76
|
+
end
|
77
|
+
|
78
|
+
# @return [Spree::TaxCategory] the variant's tax category
|
79
|
+
def tax_category
|
80
|
+
if self[:tax_category_id].nil?
|
81
|
+
product.tax_category
|
82
|
+
else
|
83
|
+
TaxCategory.find(self[:tax_category_id])
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
# Sets the cost_price for the variant.
|
88
|
+
#
|
89
|
+
# @param price [Any] the price to set
|
90
|
+
# @return [Bignum]
|
91
|
+
def cost_price=(price)
|
92
|
+
self[:cost_price] = Spree::LocalizedNumber.parse(price) if price.present?
|
93
|
+
end
|
94
|
+
|
95
|
+
# Sets the weight for the variant.
|
96
|
+
#
|
97
|
+
# @param weight [Any] the weight to set
|
98
|
+
# @return [Bignum]
|
99
|
+
def weight=(weight)
|
100
|
+
self[:weight] = Spree::LocalizedNumber.parse(weight) if weight.present?
|
101
|
+
end
|
102
|
+
|
103
|
+
# Counts the number of units currently on backorder for this variant.
|
104
|
+
#
|
105
|
+
# @return [Fixnum]
|
106
|
+
def on_backorder
|
107
|
+
inventory_units.with_state('backordered').size
|
108
|
+
end
|
109
|
+
|
110
|
+
# @return [Boolean] true if this variant can be backordered
|
111
|
+
def is_backorderable?
|
112
|
+
Spree::Stock::Quantifier.new(self).backorderable?
|
113
|
+
end
|
114
|
+
|
115
|
+
# Creates a sentence out of the variant's (sorted) option values.
|
116
|
+
#
|
117
|
+
# @return [String] a sentence-ified string of option values.
|
118
|
+
def options_text
|
119
|
+
values = self.option_values.sort do |a, b|
|
120
|
+
a.option_type.position <=> b.option_type.position
|
121
|
+
end
|
122
|
+
|
123
|
+
values.to_a.map! do |ov|
|
124
|
+
"#{ov.option_type.presentation}: #{ov.presentation}"
|
125
|
+
end
|
126
|
+
|
127
|
+
values.to_sentence({ words_connector: ", ", two_words_connector: ", " })
|
128
|
+
end
|
129
|
+
|
130
|
+
# Determines the name of an Exchange variant.
|
131
|
+
#
|
132
|
+
# @return [String] the master variant name, if it is a master; or a comma-separated list of all option values.
|
133
|
+
def exchange_name
|
134
|
+
is_master? ? name : options_text
|
135
|
+
end
|
136
|
+
|
137
|
+
# Generates a verbose name for the variant, appending 'Master' if it is a
|
138
|
+
# master variant, otherwise a list of its option values.
|
139
|
+
#
|
140
|
+
# @return [String] the generated name
|
141
|
+
def descriptive_name
|
142
|
+
is_master? ? name + ' - Master' : name + ' - ' + options_text
|
143
|
+
end
|
144
|
+
|
145
|
+
# Returns whether this variant has been deleted. Provided as a method of
|
146
|
+
# overriding the logic for determining if a variant is deleted.
|
147
|
+
#
|
148
|
+
# @return [Boolean] true if this variant has been deleted
|
149
|
+
def deleted?
|
150
|
+
!!deleted_at
|
151
|
+
end
|
152
|
+
|
153
|
+
# Override ActiveRecord finder to function even if the product has been
|
154
|
+
# deleted.
|
155
|
+
#
|
156
|
+
# @return [Spree::Product]
|
157
|
+
def product
|
158
|
+
Spree::Product.unscoped { super }
|
159
|
+
end
|
160
|
+
|
161
|
+
# Assign given options hash to option values.
|
162
|
+
#
|
163
|
+
# @param options [Array] array of hashes with a name and value.
|
164
|
+
def options=(options = {})
|
165
|
+
options.each do |option|
|
166
|
+
set_option_value(option[:name], option[:value])
|
167
|
+
end
|
168
|
+
end
|
169
|
+
|
170
|
+
# Sets an option type and value for the given name and value.
|
171
|
+
#
|
172
|
+
# @param opt_name [String] the name of the option
|
173
|
+
# @param opt_value [String] the value to set to the option
|
174
|
+
def set_option_value(opt_name, opt_value)
|
175
|
+
# no option values on master
|
176
|
+
return if self.is_master
|
177
|
+
|
178
|
+
option_type = Spree::OptionType.where(name: opt_name).first_or_initialize do |o|
|
179
|
+
o.presentation = opt_name
|
180
|
+
o.save!
|
181
|
+
end
|
182
|
+
|
183
|
+
current_value = self.option_values.detect { |o| o.option_type.name == opt_name }
|
184
|
+
|
185
|
+
unless current_value.nil?
|
186
|
+
return if current_value.name == opt_value
|
187
|
+
self.option_values.delete(current_value)
|
188
|
+
else
|
189
|
+
# then we have to check to make sure that the product has the option type
|
190
|
+
unless self.product.option_types.include? option_type
|
191
|
+
self.product.option_types << option_type
|
192
|
+
end
|
193
|
+
end
|
194
|
+
|
195
|
+
option_value = Spree::OptionValue.where(option_type_id: option_type.id, name: opt_value).first_or_initialize do |o|
|
196
|
+
o.presentation = opt_value
|
197
|
+
o.save!
|
198
|
+
end
|
199
|
+
|
200
|
+
self.option_values << option_value
|
201
|
+
self.save
|
202
|
+
end
|
203
|
+
|
204
|
+
# Fetches the option value for the given option name.
|
205
|
+
#
|
206
|
+
# @param opt_name [String] the name of the option whose value you want
|
207
|
+
# @return [String] the option value
|
208
|
+
def option_value(opt_name)
|
209
|
+
self.option_values.detect { |o| o.option_type.name == opt_name }.try(:presentation)
|
210
|
+
end
|
211
|
+
|
212
|
+
# Converts the variant's price to the given currency.
|
213
|
+
#
|
214
|
+
# @param currency [String] the desired currency
|
215
|
+
# @return [Spree::Price] the price in the desired currency
|
216
|
+
def price_in(currency)
|
217
|
+
prices.detect{ |price| price.currency == currency && price.is_default } || Spree::Price.new(variant_id: self.id, currency: currency)
|
218
|
+
end
|
219
|
+
|
220
|
+
# Fetches the price amount in the specified currency.
|
221
|
+
#
|
222
|
+
# @param currency (see #price)
|
223
|
+
# @return [Float] the amount in the specified currency.
|
224
|
+
def amount_in(currency)
|
225
|
+
price_in(currency).try(:amount)
|
226
|
+
end
|
227
|
+
|
228
|
+
# Calculates the sum of the specified price modifiers in the specified
|
229
|
+
# currency.
|
230
|
+
#
|
231
|
+
# @param currency [String] (see #price)
|
232
|
+
# @param options (see #price_modifier_amount)
|
233
|
+
# @return (see #price_modifier_amount)
|
234
|
+
def price_modifier_amount_in(currency, options = {})
|
235
|
+
return 0 unless options.present?
|
236
|
+
|
237
|
+
options.keys.map { |key|
|
238
|
+
m = "#{key}_price_modifier_amount_in".to_sym
|
239
|
+
if self.respond_to? m
|
240
|
+
self.send(m, currency, options[key])
|
241
|
+
else
|
242
|
+
0
|
243
|
+
end
|
244
|
+
}.sum
|
245
|
+
end
|
246
|
+
|
247
|
+
# Calculates the sum of the specified price modifiers.
|
248
|
+
#
|
249
|
+
# @param options [Hash] for specifying keys, eg: `{keys: ['key_1', 'key_2']}`
|
250
|
+
# @return [Fixnum] the sum
|
251
|
+
def price_modifier_amount(options = {})
|
252
|
+
return 0 unless options.present?
|
253
|
+
|
254
|
+
options.keys.map { |key|
|
255
|
+
m = "#{options[key]}_price_modifier_amount".to_sym
|
256
|
+
if self.respond_to? m
|
257
|
+
self.send(m, options[key])
|
258
|
+
else
|
259
|
+
0
|
260
|
+
end
|
261
|
+
}.sum
|
262
|
+
end
|
263
|
+
|
264
|
+
# Generates a friendly name and sku string.
|
265
|
+
#
|
266
|
+
# @return [String]
|
267
|
+
def name_and_sku
|
268
|
+
"#{name} - #{sku}"
|
269
|
+
end
|
270
|
+
|
271
|
+
# Generates a string of the SKU and a list of all the option values.
|
272
|
+
#
|
273
|
+
# @return [String]
|
274
|
+
def sku_and_options_text
|
275
|
+
"#{sku} #{options_text}".strip
|
276
|
+
end
|
277
|
+
|
278
|
+
# @return [Boolean] true if there is stock on-hand for the variant.
|
279
|
+
def in_stock?
|
280
|
+
Rails.cache.fetch(in_stock_cache_key) do
|
281
|
+
total_on_hand > 0
|
282
|
+
end
|
283
|
+
end
|
284
|
+
|
285
|
+
# @param quantity [Fixnum] how many are desired
|
286
|
+
# @return [Boolean] true if the desired quantity can be supplied
|
287
|
+
def can_supply?(quantity=1)
|
288
|
+
Spree::Stock::Quantifier.new(self).can_supply?(quantity)
|
289
|
+
end
|
290
|
+
|
291
|
+
# Fetches the on-hand quantity of the variant.
|
292
|
+
#
|
293
|
+
# @return [Fixnum] the number currently on-hand
|
294
|
+
def total_on_hand
|
295
|
+
Spree::Stock::Quantifier.new(self).total_on_hand
|
296
|
+
end
|
297
|
+
|
298
|
+
# Shortcut method to determine if inventory tracking is enabled for this
|
299
|
+
# variant. This considers both variant tracking flag and site-wide inventory
|
300
|
+
# tracking settings.
|
301
|
+
#
|
302
|
+
# @return [Boolean] true if inventory tracking is enabled
|
303
|
+
def should_track_inventory?
|
304
|
+
self.track_inventory? && Spree::Config.track_inventory_levels
|
305
|
+
end
|
306
|
+
|
307
|
+
def display_image
|
308
|
+
images.first || Spree::Image.new
|
309
|
+
end
|
310
|
+
|
311
|
+
private
|
312
|
+
|
313
|
+
def set_master_out_of_stock
|
314
|
+
if product.master && product.master.in_stock?
|
315
|
+
product.master.stock_items.update_all(:backorderable => false)
|
316
|
+
product.master.stock_items.each { |item| item.reduce_count_on_hand_to_zero }
|
317
|
+
end
|
318
|
+
end
|
319
|
+
|
320
|
+
# Ensures a new variant takes the product master price when price is not supplied
|
321
|
+
def check_price
|
322
|
+
if price.nil? && Spree::Config[:require_master_price]
|
323
|
+
raise 'No master variant found to infer price' unless (product && product.master)
|
324
|
+
raise 'Must supply price for variant or master.price for product.' if self == product.master
|
325
|
+
self.price = product.master.price
|
326
|
+
end
|
327
|
+
if currency.nil?
|
328
|
+
self.currency = Spree::Config[:currency]
|
329
|
+
end
|
330
|
+
end
|
331
|
+
|
332
|
+
def set_cost_currency
|
333
|
+
self.cost_currency = Spree::Config[:currency] if cost_currency.nil? || cost_currency.empty?
|
334
|
+
end
|
335
|
+
|
336
|
+
def create_stock_items
|
337
|
+
StockLocation.where(propagate_all_variants: true).each do |stock_location|
|
338
|
+
stock_location.propagate_variant(self)
|
339
|
+
end
|
340
|
+
end
|
341
|
+
|
342
|
+
def set_position
|
343
|
+
self.update_column(:position, product.variants.maximum(:position).to_i + 1)
|
344
|
+
end
|
345
|
+
|
346
|
+
def in_stock_cache_key
|
347
|
+
"variant-#{id}-in_stock"
|
348
|
+
end
|
349
|
+
|
350
|
+
def clear_in_stock_cache
|
351
|
+
Rails.cache.delete(in_stock_cache_key)
|
352
|
+
end
|
353
|
+
end
|
354
|
+
end
|
355
|
+
|
356
|
+
require_dependency 'spree/variant/scopes'
|