So sorry for your loss.. Most of the reports or solutions you will find are going to require you "installing" or editing some files. While it's usually a pretty simple process, you might not be interested in learning how to do this for a short term need. I would suggest you could run a query right from the database to get the report you need. Normally I wouldn't recommend doing it this way, but it would be a quick solution that wouldn't involve you modifying the website. It won't look fancy, but will give you the info you need. Basically you would need access to her web hosting account - hopefully you have that? If so, I can give you a few (fairly) simple steps to generate a report that will show: products_id, products_model, products_name, and products_quantity
All you would need is the username/password for the hosting account, and the name of the database that the store uses. (this can be found by downloading the configure.php file from the /includes directory of the shop. there is a field towards the bottom that lists the database name.
From there, (in a nutshell) you would
-log into hosting account "cpanel"
-open phpmyadmin
-open correct database
-run the following query
Code:
select p.products_id, p.products_model, p.products_quantity, pd.products_name from products p, products_description pd where p.products_id = pd.products_id
After the results show, you can choose to display them all on screen and then print, or you could export into an excel file.
If you have any trouble along the way, please let me know. (or, if you call your hosting company - i'm sure they could do this for you for little to no fee - especially considering the circumstances)