Topic: change credit note numbering
hello.
please a hint!
where should I look in order to change credit notes to use same numbering as sales invoices ?
Regards,
S
It's much more fun, when you can discuss your problems with others...
You are not logged in. Please login or register.
FrontAccounting forum → Accounts Receivable → change credit note numbering
hello.
please a hint!
where should I look in order to change credit notes to use same numbering as sales invoices ?
Regards,
S
found it.
in case someone really needs it.
in /sales/includes/cart_class.inc at line 208
replace
$this->reference = $Refs->get_next($this->trans_type);
with
if ($this->trans_type == ST_CUSTCREDIT) {
$this->reference = $Refs->get_next(ST_SALESINVOICE);
} else {
$this->reference = $Refs->get_next($this->trans_type);
}
FrontAccounting forum → Accounts Receivable → change credit note numbering
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 4 official extensions. Copyright © 2003–2009 PunBB.