Topic: Bank details on Quotes

Hi all,
Using 2.2.8

When I print a quotation it includes my bank details at the bottom. This is really superfluous information for me on a Quote.  I have searched reporting>includes> doctext.inc , doctext2.inc and header2.inc but can't seem to locate where the instruction to print this information on quotes is located. 

Could someone please point me to the location of the code?

Thanks

Re: Bank details on Quotes

Comment out line header2.inc:318.
Janusz

Re: Bank details on Quotes

itronics wrote:

Comment out line header2.inc:318.
Janusz

Thanks Janusz,
Unfortunately that has the same effect on Sales Invoices, where I do want the bank details to appear.  I want to remove it from Quotes but not invoices.

Re: Bank details on Quotes

in the line 318

if (isset($bankaccount['bank_name']))

change to the following:

if (isset($bankcccount['bank_name']) && $doctype != ST_SALESQUOTE)

/Joe

Re: Bank details on Quotes

joe wrote:

in the line 318

if (isset($bankaccount['bank_name']))

change to the following:

if (isset($bankcccount['bank_name']) && $doctype != ST_SALESQUOTE)

/Joe

Ah - yes! Thanks Joe. That works perfectly.
Is there some reason the the default is to include banking details on a Quotation? My clients would only pay on Invoice so it would seem redundant information - but maybe others have a reason for this?

Re: Bank details on Quotes

I am using version 2.4.12. It contains "header2.inc:318". Not getting it.

Re: Bank details on Quotes

@msuhail197 please  use on thread for your  same query .

Re: Bank details on Quotes

Can this make it to the core or a flag for it company wide?

Re: Bank details on Quotes

This was helpful. I am using 2.4.11 and changed below in doctext.inc file.
Thanks Joe.


joe wrote:

in the line 318

if (isset($bankaccount['bank_name']))

change to the following:

if (isset($bankcccount['bank_name']) && $doctype != ST_SALESQUOTE)

/Joe