Topic: invoice Template
How i can edit invoice template
when i print invoice i want to add word (Tax) above it is now like this Invoice i want it Tax Invoice
How
It's much more fun, when you can discuss your problems with others...
You are not logged in. Please login or register.
FrontAccounting forum → Reporting → invoice Template
How i can edit invoice template
when i print invoice i want to add word (Tax) above it is now like this Invoice i want it Tax Invoice
How
Hi realjedd,
I am new to PHP and Frontaccounting, but I did some research and achieve this in my instance (May be experts here can help with better way)
FA Install Directory > reporting > includes
Edit file doctext.inc for Case ST_SALESINVOICE as below -
Original -
case ST_SALESINVOICE:
$this->title = $this->formData['prepaid']=='partial' ? _("PREPAYMENT INVOICE")
: ($this->formData['prepaid']=='final' ? _("FINAL INVOICE") : _("INVOICE"));
Modified -
case ST_SALESINVOICE:
$this->title = $this->formData['prepaid']=='partial' ? _("PREPAYMENT INVOICE")
: ($this->formData['prepaid']=='final' ? _("FINAL INVOICE") : _("TAX INVOICE"));
and this will display Invoice as "Tax Invoice"
Thanks
Great. I found it as you told me. Thanks.
FrontAccounting forum → Reporting → invoice Template
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 4 official extensions. Copyright © 2003–2009 PunBB.