Page 5 of 8 FirstFirst ... 34567 ... LastLast
Results 41 to 50 of 72
  1. #41
    Join Date
    Oct 2007
    Posts
    134
    Plugin Contributions
    0

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by dbltoe View Post
    The original file established the $csv on line 50. What to do if $csv ==1 took place at line 95 and continues in lines 110-119 creates $filename for the .csv file.
    Line 171 is probably related to the button as it is part of the form.
    None of those are found in the file Ajeh submitted.
    Wish I had a simple way to reinsert them but, there's a lot going on between old and new. My comparison software is not helping much. AND... Never will my skills match Ajeh.
    Hopefully, this info can speed up a solution.
    Thanks for your reply dbltoe, I am waiting for a reply from Ajeh also.......

  2. #42
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: ZC Inventory Report Module

    I think this is what you are wanting ... you might ask the author to add this field to future releases ...

    This is updated based on v1.8.1
    Attached Files Attached Files
    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: v1.5.5]
    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!

  3. #43
    Join Date
    Oct 2007
    Posts
    134
    Plugin Contributions
    0

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by Ajeh View Post
    I think this is what you are wanting ... you might ask the author to add this field to future releases ...

    This is updated based on v1.8.1
    That's Perfect !!
    Thank you very much.

    There is one more thing that I want in this mod. I do not know if this is possible or not.

    I want the CSV file with only the ACTIVE products inventory. This Module is presently showing the whole inventory. there are many INACTIVE PRODUCTS in my store with NON ZERO quantity, and it is very difficult to select these manually.
    Is there any method, that I get the desired results with only the ACTIVE products inventory?

    Or at least there should be the ACTIVE /INACTIVE status column in the report.

    thanks in advance.
    Last edited by muteyaar; 15 Sep 2015 at 11:49 AM.

  4. #44
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: ZC Inventory Report Module

    Adding a bit more customization should be able to offer you either/or on the CSV file ...
    Attached Files Attached Files
    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: v1.5.5]
    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!

  5. #45
    Join Date
    Oct 2007
    Posts
    134
    Plugin Contributions
    0

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by Ajeh View Post
    Adding a bit more customization should be able to offer you either/or on the CSV file ...
    Thank You Very much Ajeh !!

    You are a genius....... I just wanted this exactly same style.

    Thanks a lot.

  6. #46
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: ZC Inventory Report Module

    You are most welcome ... remember the Zen Cart Team when you are rich and famous!
    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: v1.5.5]
    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!

  7. #47
    Join Date
    Oct 2007
    Posts
    134
    Plugin Contributions
    0

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by Ajeh View Post
    You are most welcome ... remember the Zen Cart Team when you are rich and famous!
    Hi,
    I have one more question about this mod.

    is it possible to receive a column with URL link of main image of each product in the report?
    If it is is possible, then kindly help me in this regard.

    thanks.

  8. #48
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by muteyaar View Post
    Hi,
    I have one more question about this mod.

    is it possible to receive a column with URL link of main image of each product in the report?
    If it is is possible, then kindly help me in this regard.

    thanks.
    You would need to add a column, and then use the product_image field to get the image name, then you could create a <a href>, to the images url.

    So yes, simple kinda...

  9. #49
    Join Date
    Oct 2007
    Posts
    134
    Plugin Contributions
    0

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by bislewl View Post
    You would need to add a column, and then use the product_image field to get the image name, then you could create a <a href>, to the images url.

    So yes, simple kinda...
    Thanks for the quick reply bislewl, i am a layman and do not have much knowledge about this. Can you please give me a step by step process of doing this?

    or can you please upload the file with required modification.
    I will be very thankful to you.

    - muteyaar

  10. #50
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: ZC Inventory Report Module

    Quote Originally Posted by muteyaar View Post
    Thanks for the quick reply bislewl, i am a layman and do not have much knowledge about this. Can you please give me a step by step process of doing this?

    or can you please upload the file with required modification.
    I will be very thankful to you.

    - muteyaar
    Ok, Here is a rough idea. If you don't feel comfortable you may need to hire someone.
    Using file-set for version 1.9.0
    Line 114: you will need to add p.products_image into the sql select statment

    somewhere between 200-210
    your's need to add a table header perhaps
    HTML Code:
    <td class="dataTableHeadingContent" align="center">Image Link</td>
    between 235-245 as position as above
    you will want to add something like:
    PHP Code:
    <td class="dataTableContent" align="center"><a href="<?php echo DIR_WS_IMAGES.$products->fields['products_image']; ?>" target="_blank">Link</a></td>
    I haven't verified if that works, but that should get you pretty close.
    Last edited by bislewl; 25 Sep 2015 at 02:28 AM. Reason: missing semi-colon in code

 

 
Page 5 of 8 FirstFirst ... 34567 ... LastLast

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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR