Page 1 of 2 12 LastLast
Results 1 to 10 of 19
  1. #1
    Join Date
    May 2013
    Location
    Tucson, AZ
    Posts
    7
    Plugin Contributions
    0

    Default How can I print a report showing total inventory on hand?

    I am trying to deal with my daughter's e-commerce site, https://opalessenceshop.com, following her unexpected death. I have no web site background whatsoever. In the report module I can print a report showing low stock, and I have changed the quantities of product I was unable to take from my daughter's home in another state. I was also able, through the catalog categories/products tab to take screen shots of each page of each category, which collectively let me know how much product I had of the inventory I was able to take with me. But since then we have made sales through the web site, reducing the stock. It was very time consuming to have to go through each page, and I don't want to have to do that every time there are sales made. What I would like to do is print out one report, maybe weekly, showing all of the existing inventory. I have looked at every tab in the back office and cannot find anything that will do this. When her existing stock has been sold, I will take down the website, because she was the artisan and entrepreneur. If I can have the list of inventory, I may be able to sell some of the stock locally, off site. But I would need a printed list to help me do that.

    [I apologize that I cannot answer the other required questions, because my daughter was also a web designer, and she set up the web site herself.] I would appreciate any assistance.

  2. #2
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,197
    Plugin Contributions
    0

    Default Re: How can I print a report showing total inventory on hand?

    Sorry to hear about your loss ...
    You would have to download and FTP the files to your site so you can get an inventory count of the entire site ...


  3. #3
    Join Date
    Oct 2007
    Posts
    143
    Plugin Contributions
    0

    Default Re: How can I print a report showing total inventory on hand?

    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)

  4. #4
    Join Date
    May 2013
    Location
    Tucson, AZ
    Posts
    7
    Plugin Contributions
    0

    Default Re: How can I print a report showing total inventory on hand?

    I do have access to the hosting account and will try this.

  5. #5
    Join Date
    Oct 2007
    Posts
    143
    Plugin Contributions
    0

    Default Re: How can I print a report showing total inventory on hand?

    one word of caution - not at all meant to scare you away. be careful in phpmyadmin. what you are doing is just a simple "select" query, which WILL NOT modify, add, or delete any information from the database. However, if someone starts mucking around in that program and doesn't know what they're doing - you can potentially do lots of damage to the database. (again - not meant to scare you.. running this report will NOT wipe anything out. just in general, tread carefully in this program).

  6. #6
    Join Date
    May 2013
    Location
    Tucson, AZ
    Posts
    7
    Plugin Contributions
    0

    Default Re: How can I print a report showing total inventory on hand?

    I got stuck at the point in phpmyadmin, where it is asking for my SQL password, which I don't know. I got into everything else by resetting the passwords, but this reset screen warns "PLEASE BE AWARE that any scripts using the old password will not be automatically updated. These applications will break until you update them to use the new password." I don't know what else uses that or how to update the applications, so I am loathe to do this.

  7. #7
    Join Date
    Oct 2007
    Posts
    143
    Plugin Contributions
    0

    Default Re: How can I print a report showing total inventory on hand?

    yes, DO NOT change that password right now..

    sorry, when I login to most cpanels, then access phpmyadmin, it automatically logs in. if you're being asked for a username/password at that point - go into the files of the website, look in the includes folder, there's a file called configure.php

    download it and view it with notepad or similar (or you can probably view it from your "file manager" or similar in cpanel).. you're looking for the mysql username and password info towards the bottom. (don't share these here obviously, but take them and use them to login)

  8. #8
    Join Date
    May 2013
    Location
    Tucson, AZ
    Posts
    7
    Plugin Contributions
    0

    Default Re: How can I print a report showing total inventory on hand?

    I don't know where on the website to go to access the files

  9. #9
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: How can I print a report showing total inventory on hand?

    You can use the "File Manager" in cPanel to see your file/folder structure, and there is a button in the top right if I recall correctly that will let you look at a file's contents. Don't try editing anything that way, though.

  10. #10
    Join Date
    May 2013
    Location
    Tucson, AZ
    Posts
    7
    Plugin Contributions
    0

    Default Re: How can I print a report showing total inventory on hand?

    Thanks to everyone. I was able to get the information I needed. Is there a way to frame the query that would omit items where the quantity is 0?

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v154 Admin Inventory Report Print Out....
    By wmorris in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 4 Feb 2016, 06:17 AM
  2. Can I get an inventory report to use for stock checks?
    By sugarandspice in forum Basic Configuration
    Replies: 6
    Last Post: 12 May 2009, 08:52 PM
  3. Replies: 2
    Last Post: 8 Jun 2008, 07:06 PM
  4. How to print Graphical report?
    By Baljeet in forum General Questions
    Replies: 4
    Last Post: 17 Nov 2007, 09:49 AM
  5. products sold but not showing sold in report or inventory
    By knitlady in forum Managing Customers and Orders
    Replies: 3
    Last Post: 7 Jul 2006, 04:31 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg