Topic: Sales quotation with images

Is it possible to print sales quotation with item images along-with item code? It would really help.

Re: Sales quotation with images

Of course it is technical possible. If this is a common wish I will have a look at it. I guess it will need an extra option in the print selection or a global variable in config.php.

In the meantime you can look into the price list in the sales report section to see how to achieve this.

Joe

Re: Sales quotation with images

I have prepared a document for you that shows Pictures on your Sales Quotation.

Please download the file rep111.php1, rename it to rep111.php and copy it into folder:

/Company/X/reporting, where X is your Company number.

FA Always look for a local report here Before taking the /reporting reports.

If you want a larger Picture size, you can increase the $pic_height in line 125. Just remove the // characters and set your own value.

/Joe

Post's attachments

rep111.php1 7.3 kb, 17 downloads since 2014-09-24 

You don't have the permssions to download the attachments of this post.

Re: Sales quotation with images

Thanks, it works!

5 (edited by apmuthu 09/24/2014 11:00:12 am)

Re: Sales quotation with images

Any config.php flag to switch it on / off?

    /* for uploaded item pictures */
    $pic_width         = 80;
    $pic_height     = 50;
    $max_image_size = 500;

Whilst the units for the width/height is clearly understood as pixels, the image_size is in Kb or just bytes?
A comment in the report to indicate setting width/height in the config.php would be useful.