Topic: Delivery Note report - How to add in the line for Signature purpose

Hi All,
         Anyone can help me to show the below portion into the Delivery Note report?



"Acknowledge Goods Received In Good Order and Condition" 



    _________________________________________
         Signature, Company Stamp & Date


           
        Appreciated if you can help me to show it on the Delivery Note report!
        Thank You!


Best Regards,
Alex Ong

Re: Delivery Note report - How to add in the line for Signature purpose

Insert the following lines after line 216 in file /reporting/rep110.php.

$rep->NewLine(2);
$rep->TextCol(1, 4, "_______________________________________________", -2);
$rep->NewLine(1);
$rep->TextCol(1,4, "      Signature, Company Stamp & Date", -2);

You may need to adjust the underline and text a bit. Try it on the Training Co. first.
Please make a backup of the file, in case you get an update. You will then have to insert these lines again.

/Joe

Re: Delivery Note report - How to add in the line for Signature purpose

Thank you very much joe!         
It works and help a lot..   by the way,  if let said i want to add any text to any report,
Is that what i need to do is just type these few command lines as you mention inside the report
what is the meaning of $rep->NewLine  and what does the numeric value inside the bracket   
of $rep->NewLine  represented?

Re: Delivery Note report - How to add in the line for Signature purpose

Good that it works. The NewLine is a finction for making new lines and the value inside the brackers is the number of lines.

Joe

Re: Delivery Note report - How to add in the line for Signature purpose

Wiki-ed it.