spree-product-assembly
spree-product-assembly copied to clipboard
Adds ability to make product bundles
Hi, I just installed solidus in a new project, I tried to install this gem and got this: ``` Bundler could not find compatible versions for gem "activemerchant": In Gemfile:...
``` ruby config.action_view.raise_on_missing_translations = true ``` The Spree::LineItem class will give a missing translations exception on the quantity validation message Spree.t('validation.must_be_int'). I have tried multiple ways to fix this but...
A bundle / assembly should not track inventory. Currently users an _Out of stock_ flag even then all parts within the bundle have enough stock.
@huoxito In our app it's important to make sure that bundles ship together. If one 'part' of the bundle is backordered then the entire shipment should remain together as one...
Stock used to be calculated based on parts on 1-3
The AvailabilityValidator seems to be validating for the entire quantity of the line_item instead of the quantity being added to the line_item (as spree's does). The AvailabilityValidator needs to be...
Package#shipping_methods https://github.com/spree/spree/blob/3-0-stable/core/app/models/spree/stock/package.rb#L68 is based on parts shipping categories, but store owner can set separate shipping category for assembly itself. I propose to override https://github.com/spree/spree/blob/3-0-stable/core/app/models/spree/stock/package.rb#L64..L66 with: ``` ruby module Spree module...
The `line_items.js.coffee` is overriden in `spree-products-assembly` and it has not been updated along with the spree 2.3.x. Hence, some issues arise when trying to edit a new order. When clicking...
hello, after adding "spree-product-assembly" gem to the gemfile when i get to a one of the pages i get this error: "Encoding::UndefinedConversionError ("\xD7" from ASCII-8BIT to UTF-8)" just to let...
Related to #75 We would require the ability to determine the price of the Kit either by being explicitly defined in the Kit OR from the price of the selected...