Topic: how to add some sentences to the end of quotation only

hello
I need to add this terms at the end of quotation template only :
---------------------------------------------------------------------------------------
General Terms:
1). Material Availability is subject to sales prior to order confirmation.
2). Prices are subject to change without prior notice.
3). Please mention the Quotation No. in your future correspondence.
---------------------------------------------------------------------------------------
How to do that ?
Best regards

Re: how to add some sentences to the end of quotation only

You can either do that in the Comment or Memo field,
or if this info is for all customers you can ad this in file /reporting/includes/header2.inc
or add the info in the file /reporting/rep111.php.

/Joe

Re: how to add some sentences to the end of quotation only

joe wrote:

You can either do that in the Comment or Memo field,
or if this info is for all customers you can ad this in file /reporting/includes/header2.inc
or add the info in the file /reporting/rep111.php.

/Joe

Thanks joe but I want for this words to be at the bottom of quotation only if I put them in header2.inc they will be shown in all
reports , I f i use other suggestions this words will not be at the bottom .

Re: how to add some sentences to the end of quotation only

If you do it in header2.inc, you can use a filter f.i.

if ($this->formData['doctype'] == ST_SALESQUOTE)
{
    $this->TextWrapLines(........................) // do what you want here.
}

Insert the lines about line 210.

/Joe

Re: how to add some sentences to the end of quotation only

Very good , Thank you Joe.

Re: how to add some sentences to the end of quotation only

is this right?

if ($this->formData['doctype'] == ST_SALESQUOTE)
{
    $txt = "test";
    $this->TextWrapLines($ccol, $this->row, $right - $ccol, $txt, 'C')
}

Thank you
Eric