
Originally Posted by
Jenovee
Hello, I have a question regarding updating quantities.
If I have 10,000 products in my catalog, it would be painstaking to search for every single item and update the quantity one-by-one. I exported a Model/Price/Quantity and tried to update the easiest way possible. I entered, at the bottom, the model and new quantity for an existing item. When I imported it, the quantity updated in my catalog, but the item name got deleted.
Why would the item name get deleted?? That isn't even one of the editable fields when doing Model/Price/Qty. I can understand if I left the required field blank, but the field isn't even there.
Is there a simple way to update mass product quantities? Shouldn't new data overwrite old, and same data remain untouched?
Looks like you found an error... Hmm.. Now to call the correction a new version or just fix it... Been working on a few changes/additions... How about this, I provide the correction location and soon should have an update (especially since trying to get the v_options_values_price_w field addressed in addition to some of the other things...
line 589 of admin/easypopulate_4_import.php of version 4.0.28 currently reads:
Code:
$row2 = ($ep_uses_mysqli ? mysqli_fetch_array($result) : mysql_fetch_array($result2));
and should read:
Code:
$row2 = ($ep_uses_mysqli ? mysqli_fetch_array($result2) : mysql_fetch_array($result2));
That will resolve your issue, and may resolve some of the issues identified recently by others...
Bookmarks