Multi-vendor roadmap. Let's discuss (UPDATE: done)

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Il y a 11 ans
Just making a suggestion. It's all cool though. I'll just go through and make the changes myself with the items that don't implement multi-vendor.
Il y a 11 ans
not a big issue, but vendor manager user is allowed to specify product/product variant properties like "Show on home page" and "Admin comment".

I'm not sure this is desirable?
Il y a 11 ans
rudgr wrote:
not a big issue, but vendor manager user is allowed to specify product/product variant properties like "Show on home page" and "Admin comment".

I'm not sure this is desirable?


i dont think show on home page should be there, I limited it for admin only


@if(!Model.IsLoggedInAsVendor)
        {
        <tr>
            <td class="adminTitle">
                @Html.NopLabelFor(model => model.ShowOnHomePage):
            </td>
            <td class="adminData">
                @Html.EditorFor(model => model.ShowOnHomePage)
                @Html.ValidationMessageFor(model => model.ShowOnHomePage)
            </td>
        </tr>
        }
Il y a 11 ans
Agree. Thanks

hezyz wrote:
i dont think show on home page should be there, I limited it for admin only...

I would also add some server-side validation. See changeset f3bea21dc6ac
Il y a 11 ans
i think the same should be valid for associating a product to Vendor in dropdown
Il y a 11 ans
a.m. wrote:
Agree. Thanks

i dont think show on home page should be there, I limited it for admin only...
I would also add some server-side validation. See changeset f3bea21dc6ac



//cannot enable "show on home page"
model.ShowOnHomePage = false;


by adding this to edit a vendor will reset the value to false when ever product is saved.
admin may add the product to home page and the vendor will set it to false
Il y a 11 ans
hezyz wrote:
by adding this to edit a vendor will reset the value to false when ever product is saved.
admin may add the product to home page and the vendor will set it to false

Thanks. Agree. But in this case a vendor can send any value to a server. But it's better because a store owner will see it anyway and can block a vendor in this case

BTW, you solution will also reset the value. For a valid solution please see the latest version (we should hide the field on the client-side, not on a server-side)
Il y a 11 ans
sch09 wrote:
i think the same should be valid for associating a product to Vendor in dropdown

It initially was done. A vendor does not see this dropdown
Il y a 11 ans
Created two more improvement suggestions:

Add support for VendorNavigation
http://nopcommerce.codeplex.com/workitem/11377

Add Vendor Product RSS:
http://nopcommerce.codeplex.com/workitem/11378

please vote, thanks ;-)
Il y a 11 ans
rudgr wrote:
Created two more improvement suggestions:

Add support for VendorNavigation
http://nopcommerce.codeplex.com/workitem/11377

Add Vendor Product RSS:
http://nopcommerce.codeplex.com/workitem/11378

please vote, thanks ;-)



check this
https://www.nopcommerce.com/boards/t/22614/multi-vendor.aspx

or at the demo store
http://demo.online-ex.com
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.