
Originally Posted by
balihr
Public ID whatever you set it to? I'm assuming you're mixing the term ID with model number. You can set the model number, but you can not set the product's ID - that's a unique identifier that is automatically assigned by the database with the auto_increment. The ID is completely out of your control.
If you look at your URL on the product_info page, you'll see ...index.php?main_page=product_info&products_id=1234 - the 1234 is the actual ID. You can NOT search for a product by it's ID in the backend. You can see the product's ID (first column in admin where your products are listed), but you can not search for the ID.
If the "public ID" is really products_model, then your search might be giving you different results because you're using the same model number for multiple products.
If you look at the database, you'll see the products_id in multiple tables. Quantity is kept in the products table (zen_products, zc_products or whatever prefix you may have) - field name is products_quantity.