We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoMethodError in Spree::UserSessionsController#create undefined method `quantity' for true:TrueClass
How to reproduce:
Resolution: file: order_decorator.rb line no. 4 current_item = contains?(variant, ad_hoc_option_value_ids, product_customizations)
current_item = contains?(variant, ad_hoc_option_value_ids, product_customizations)
change this to: current_item = find_line_item_by_variant(variant, ad_hoc_option_value_ids, product_customizations)
current_item = find_line_item_by_variant(variant, ad_hoc_option_value_ids, product_customizations)
Note: I have created a pull request for the issue (#100).
The text was updated successfully, but these errors were encountered:
class:Order add_variant methods 'current_item' is now an instance of …
8ac1368
…'variant' instead of truthy/falsy values. Issue: jsqu99#99.
No branches or pull requests
NoMethodError in Spree::UserSessionsController#create
undefined method `quantity' for true:TrueClass
How to reproduce:
Resolution:
file: order_decorator.rb
line no. 4
current_item = contains?(variant, ad_hoc_option_value_ids, product_customizations)
change this to:
current_item = find_line_item_by_variant(variant, ad_hoc_option_value_ids, product_customizations)
Note: I have created a pull request for the issue (#100).
The text was updated successfully, but these errors were encountered: