-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Different shipping methods by item #38
Comments
hi, this feature is not implemented. |
Could you please point out a possible solution in order to implement this feature? |
may you describe the user story and feature a little more in detail. so others can add their thoughts and then we can think about the possible implementation. thx |
Suppose the shop offers 3 shipping methods: Suppose the shop sells digital printed photos on paper, digital printed photos on cups, digital printed photos on pillows. A buyer of a photo on paper asks to deliver it by public or insured mail service (cheaper) and not a carrier. A buyer of 1 paper can ask for mail shipping, but a buyer of 1000 cannot (only carrier should be allowed). The simplest way to handle this use case is to simply assign to any item the allowed shipping methods in the back-office. A little bit complicated approach is to configure some rules (for example based on overall weight,size,number of items in the basket, or more, based on administrator's assignments) in order to the system to show the available choices to the user. |
i would prefer defining the possible shipping methods on the item. But it's no done then. At checkout time a check must be performed whether all items can be shipped by an intersection of possible shipping methods, and if not, the shipping must be split up, which also implies changes how the shipping is stored on the order, since an order may contain more than one shipping then. |
There is one more scenario. Sometimes the shipping method does not depend only on the item category but on the quantity or weight or distance (for instance domestic shipping / international shipping). |
there are so many different usecases out there that it might be close to impossible to implement all thinkable combinations in a generic manner. what all the shop packages try to achieve is a common and documented way of hooking into it by defined interfaces, each for defined purpose, at the same time providing senceful defaults. your proposal makes me think of the following general requirements if we want to get things done here without polluting the software in the first place:
Additional thoughts and ideas are highly appreciated. |
Hi,
Would it be possible to ship items with a subset of available shipping methods?
Suppose you have items i1 and i2 and shipping methods sm1,sm2,sm3, I would like to configure the plugin to have (for example)
i1->sm1,sm2
i2->sm2,sm3
Is it possible?
Thanks.
M@rco
The text was updated successfully, but these errors were encountered: