Page 1 of 1
How can I change the default value of "Shippable" to Yes?
Posted: Tue Jul 29, 2008 11:27 am
by Mike718NY
How can I change the default value of "Shippable" in the
TAXES & SHIPPING section of admin,
to Yes and instead of No?
I would think Yes would be prefered.
Re: How can I change the default value of "Shippable" to Yes?
Posted: Tue Jul 29, 2008 11:36 am
by Robbie@FireFold
Another question I have pondered. I imported without this field and had to go thru the database to change them.
When one of our employee's create an item this would just be 2 more steps that would have to be taken. If defaulted it could save time/mistakes.
Re: How can I change the default value of "Shippable" to Yes?
Posted: Tue Jul 29, 2008 11:44 am
by Mike718NY
I missed this field in the import also, I just ran:
update ac_products
set ShippableId = 1
Re: How can I change the default value of "Shippable" to Yes?
Posted: Tue Jul 29, 2008 11:53 am
by mazhar
I think on Admin its already fine. When adding a new product it is already Yes and this what you are asking for because on the edit product screen this option is loaded from database. So if in the database you have the products with Shippable option set as No then you must change those.
For example you can use some code like this somewhere on the Merchant side which loads all the products and then set all these to Shipable= Yes
Code: Select all
ProductCollection products = ProductDataSource.LoadForStore();
foreach (Product product in products)
{
product.ShippableId = 1;
product.Save();
}
Re: How can I change the default value of "Shippable" to Yes?
Posted: Tue Jul 29, 2008 12:00 pm
by Mike718NY
Yes, the default is Yes . . should have tried to add a new product first
The default for the Import is No.
Also, the Import default for the WarehouseId is 0.
I ran this just incase that may be a problem:
update ac_products
set WarehouseId = 1
Re: How can I change the default value of "Shippable" to Yes?
Posted: Tue Jul 29, 2008 12:10 pm
by Robbie@FireFold
Mike718NY wrote:Yes, the default is Yes . . should have tried to add a new product first
The default for the Import is No.
Also, the Import default for the WarehouseId is 0.
I ran this just incase that may be a problem:
update ac_products
set WarehouseId = 1
We are on the same boat haha.
I've only imported - never added a product.
Thanks for the quick answers again.