Results 1 to 10 of 75

Hybrid View

  1. #1
    Join Date
    Dec 2012
    Posts
    2
    Plugin Contributions
    0

    Default Re: ZC Inventory Report Module

    Hi, I have installed this mod, but it does not appear under "Admin", "Tools" despite refreshing. I do have "Sage Configuration" under the "Configuration" menu though.

    Any help would be appreciated.

  2. #2
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,674
    Plugin Contributions
    0

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by strettonbull View Post
    Hi, I have installed this mod, but it does not appear under "Admin", "Tools" despite refreshing. I do have "Sage Configuration" under the "Configuration" menu though.

    Any help would be appreciated.
    Its not under "Tools" its under "Reports"

  3. #3
    Join Date
    Dec 2012
    Posts
    2
    Plugin Contributions
    0

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by morrisgiftshop View Post
    Its not under "Tools" its under "Reports"
    Doh! How thick am I?

    Thanks so much.

  4. #4
    Join Date
    Sep 2008
    Posts
    10
    Plugin Contributions
    0

    Default Re: ZC Inventory Report Module

    This is a really useful mod.

    My brief was to find away to check stock on the website against actual stock in our warehouse. I spent ages trying to work out how to download stock list to an Excel spreadsheet for cross checking as that was all I could think of.

    This report/function is even better than I had hoped in that our website can be immediately updated using a tablet/iPad as the stock is checked on the ground.

    Thank you :-)

    Natalie

  5. #5
    Join Date
    Dec 2007
    Location
    Winter Park, FL
    Posts
    19
    Plugin Contributions
    0

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by BrightGreen View Post
    This is a really useful mod.

    My brief was to find away to check stock on the website against actual stock in our warehouse. I spent ages trying to work out how to download stock list to an Excel spreadsheet for cross checking as that was all I could think of.

    This report/function is even better than I had hoped in that our website can be immediately updated using a tablet/iPad as the stock is checked on the ground.

    Thank you :-)

    Natalie
    So... is it possible to export the resulting report to a spreadsheet?
    Jim Thomas www.tropicalsoul.com; Zen Cart v. 1.3.8a; Linux; PHP Version: 5.2.17; Database: MySQL 5

  6. #6
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by jbthomasfl View Post
    So... is it possible to export the resulting report to a spreadsheet?
    Try copy & paste.. I copied and pasted the full report into an Excel spreadsheet with no issues..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #7
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,700
    Plugin Contributions
    11

    Default Re: ZC Inventory Report Module

    Really liking this and appreciate (as usual) ajeh's addition. Hope it will be added to the plug-in release soon.
    Just want to suggest two small changes to the stats_inventory_report.php that Linda added above (post 21).
    Note: The following line numbers are based on the changed file.
    The heading row starts on line 134 and ends on line 148 of the file.
    PHP Code:
          <tr>
            <td colspan="2"><table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
                <td valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
                  <tr class="dataTableHeadingRow">
                    <td class="dataTableHeadingContent" align="center"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=p.products_id&dir=<?php echo $dir_id?>&cat=<?php echo $cat?>"><b><?php echo TABLE_HEADING_NUMBER?></b></a></td>
                    <td class="dataTableHeadingContent"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=products_name&dir=<?php echo $dir_name?>&cat=<?php echo $cat?>"><b><?php echo TABLE_HEADING_PRODUCTS?></b></a></td>
                    <td class="dataTableHeadingContent" align="center"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=cd.categories_name&dir=<?php echo $dir_name?>&cat=<?php echo $cat?>"><b>Master Category</b></a></td>
    <!-- // bof: add products_model -->
              <td class="dataTableHeadingContent" align="center"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=products_model&dir=<?php echo $dir_model?>&cat=<?php echo $cat?>"><b>Model</b></a></td>
    <!-- // eof: add products_model -->
                    <td class="dataTableHeadingContent" align="center"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=products_quantity&dir=<?php echo $dir_quantity?>&cat=<?php echo $cat?>"><b><?php echo TABLE_HEADING_QUANTITY?></b></a></td>
                    <td class="dataTableHeadingContent" align="right"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=products_price&dir=<?php echo $dir_price?>&cat=<?php echo $cat?>"><b><?php echo TABLE_HEADING_PRICE?></b></a></td>
                    <td class="dataTableHeadingContent" align="right"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=total&dir=<?php echo $dir_total?>&cat=<?php echo $cat?>"><b><?php echo TABLE_HEADING_TOTAL?></b></a></td>
                  </tr>
    The outputs for the Master Category and Model are actually left aligned while the titles are centered.
    How about this for a little cleaner look?
    PHP Code:
          <tr>
            <td colspan="2"><table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
                <td valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
                  <tr class="dataTableHeadingRow">
                    <td class="dataTableHeadingContent" align="center"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=p.products_id&dir=<?php echo $dir_id?>&cat=<?php echo $cat?>"><b><?php echo TABLE_HEADING_NUMBER?></b></a></td>
                    <td class="dataTableHeadingContent"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=products_name&dir=<?php echo $dir_name?>&cat=<?php echo $cat?>"><b><?php echo TABLE_HEADING_PRODUCTS?></b></a></td>
                    <td class="dataTableHeadingContent"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=cd.categories_name&dir=<?php echo $dir_name?>&cat=<?php echo $cat?>"><b>Master Category</b></a></td>
    <!-- // bof: add products_model -->
              <td class="dataTableHeadingContent"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=products_model&dir=<?php echo $dir_model?>&cat=<?php echo $cat?>"><b>Model</b></a></td>
    <!-- // eof: add products_model -->
                    <td class="dataTableHeadingContent" align="center"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=products_quantity&dir=<?php echo $dir_quantity?>&cat=<?php echo $cat?>"><b><?php echo TABLE_HEADING_QUANTITY?></b></a></td>
                    <td class="dataTableHeadingContent" align="right"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=products_price&dir=<?php echo $dir_price?>&cat=<?php echo $cat?>"><b><?php echo TABLE_HEADING_PRICE?></b></a></td>
                    <td class="dataTableHeadingContent" align="right"><a href="./stats_inventory_report.php?page=<?php echo $_GET['page']; ?>&sort=total&dir=<?php echo $dir_total?>&cat=<?php echo $cat?>"><b><?php echo TABLE_HEADING_TOTAL?></b></a></td>
                  </tr>
    What this does is change the
    PHP Code:
    <td class="dataTableHeadingContent" align="center"
    for both the Master Category and Model to
    PHP Code:
    <td class="dataTableHeadingContent"
    removing the align="center". Don't forget to also remove the space that was in front of the align call.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

 

 

Similar Threads

  1. v154 SBA Inventory Report
    By catsma_97504 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 6 May 2016, 04:16 PM
  2. Inventory Report
    By damonp in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 31 Jan 2011, 10:51 PM
  3. Store inventory report?
    By RocketFoot in forum General Questions
    Replies: 4
    Last Post: 14 May 2009, 01:15 PM
  4. Inventory Order Report
    By j1l2i3p4k5i6n7g8 in forum General Questions
    Replies: 4
    Last Post: 5 Jan 2008, 05:55 PM
  5. Inventory Report with Attributes
    By brad512 in forum General Questions
    Replies: 6
    Last Post: 31 Dec 2006, 09:38 PM

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