Topic: Customer credit state on Invoices
Hi guys,
I want to know how we can configure FA to display customer credit status (balance) in sales invoice or delivery notes?
thanks for replies
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 → Customer credit state on Invoices
Hi guys,
I want to know how we can configure FA to display customer credit status (balance) in sales invoice or delivery notes?
thanks for replies
I add this lines on rep107.php
Line: 142
$custrecord = get_customer_details($branch['debtor_no']);
$creditBalance = $custrecord["Balance"];
and then on line: 199
$rep->Font('bold');
$rep->TextCol(3, 6, _("TOTAL INVOICE"), - 2);
$rep->TextCol(6, 7, $DisplayTotal, -2);
line: 199
$rep->NewLine();
$creditBalance = number_format2($creditBalance,$dec);
$rep->TextCol(3, 6, _("Total Debit / Credit"), -2);
$rep->TextCol(6, 7, $creditBalance, -2);
Is this desirable to be added in the current version?
No, I think not. We can send out statements when appropriate. Not balance on invoice.
/Joe
FrontAccounting forum → Reporting → Customer credit state on Invoices
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 4 official extensions. Copyright © 2003–2009 PunBB.