Summary:
Supplier param not keeped in add to cart form
Detailed Description:
Hi,
When Using the CGEcommerceBase suite with the Cart module and another supplier
module than Products, the product can't be added to the cart.
I call the add to cart form in my EventsManager module (under development)
{cgecomm_form_addtocart supplier='EventsManager' product=$entry->id}
In the form, the "supplier" params isn't used - That's why when we submit, the
Cart module tries to search a product in the Products module instead of the
"supplier" one
Adding this line :
if ($supplier_mod != 'Products')
$parms['supplier'] = $supplier_mod;
line 165 in file action.default.php seems to solve the problem
Thanks