I have searched after this whithout finding any answer.
In "Admin - Reports - Products low stock" the report shows products which are not active(red). Is there any way to only list the report for active products(green status)?
Thanks
I have searched after this whithout finding any answer.
In "Admin - Reports - Products low stock" the report shows products which are not active(red). Is there any way to only list the report for active products(green status)?
Thanks
Hmmmmmm..no one knows?
How to see if something is sold out or nothing on stock? The stock report is no use since iit also show inactive products
Hmmmmmm...still havent solved it. Anyone please?![]()
Hmm..i still havent solved this..can anyone help?
This is the code from the file stats_products_lowstock.php
Dont know how to change this..hmm.Code:$products_query_raw = "select p.products_id, pd.products_name, p.products_quantity, p.products_type from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and pd.language_id='" . $_SESSION['languages_id'] . "' order by p.products_quantity, pd.products_name";![]()
YES. thanks to myselfi fixed it.
Code:$products_query_raw = "select p.products_id, p.products_status, pd.products_name, p.products_quantity, p.products_type from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and pd.language_id='" . $_SESSION['languages_id'] . "' AND p.products_status='1' order by p.products_quantity, pd.products_name";
Thanks for the update that you got this working and for posting your solution to add the products_status to the WHERE statement ...![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Maybe looking in the bottom of your screen at the Similar Threads would of shown you the solution I posted to this same question that perhaps you missed when you searched the forum ...
Sometimes ... we get busy and just cannot get to every question right away ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!