Re: ZC Inventory Report Module
Quote:
Originally Posted by
dbltoe
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.......
1 Attachment(s)
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
Re: ZC Inventory Report Module
Quote:
Originally Posted by
Ajeh
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.
1 Attachment(s)
Re: ZC Inventory Report Module
Adding a bit more customization should be able to offer you either/or on the CSV file ...
Re: ZC Inventory Report Module
Quote:
Originally Posted by
Ajeh
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.
Re: ZC Inventory Report Module
You are most welcome ... remember the Zen Cart Team when you are rich and famous! :cool:
Re: ZC Inventory Report Module
Quote:
Originally Posted by
Ajeh
You are most welcome ... remember the Zen Cart Team when you are rich and famous! :cool:
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.
Re: ZC Inventory Report Module
Quote:
Originally Posted by
muteyaar
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...
Re: ZC Inventory Report Module
Quote:
Originally Posted by
bislewl
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
Re: ZC Inventory Report Module
Quote:
Originally Posted by
muteyaar
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.