X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep108.php;h=de5d19408663409bc8c2a02761a71bb5722e43dc;hb=6a4d8e6c1e92ff1b8fc5abb3fae76fb1c1968550;hp=7f2d6069bade395ef321c7ead7cff0fea3ed3065;hpb=0489317205141deaecefe3a7243d11a3e38a51d0;p=fa-stable.git diff --git a/reporting/rep108.php b/reporting/rep108.php index 7f2d6069..de5d1940 100644 --- a/reporting/rep108.php +++ b/reporting/rep108.php @@ -84,7 +84,7 @@ function print_statements() if ($email == 0) $rep = new FrontReport(_('STATEMENT'), "StatementBulk", user_pagesize(), 9, $orientation); if ($orientation == 'L') - $rep->recalculate_cols($cols); + recalculate_cols($cols); $sql = "SELECT debtor_no, name AS DebtorName, address, tax_id, curr_code, curdate() AS tran_date FROM ".TB_PREF."debtors_master"; if ($customer != ALL_TEXT) $sql .= " WHERE debtor_no = ".db_escape($customer); @@ -104,12 +104,14 @@ function print_statements() if (db_num_rows($TransResult) == 0) continue; if ($email == 1) + { $rep = new FrontReport("", "", user_pagesize(), 9, $orientation); + $rep->title = _('STATEMENT'); + $rep->filename = "Statement" . $myrow['debtor_no'] . ".pdf"; + } $rep->SetHeaderType('Header2'); $rep->currency = $cur; $rep->Font(); - $rep->title = _('STATEMENT'); - $rep->filename = "Statement" . $myrow['debtor_no'] . ".pdf"; $rep->Info($params, $cols, null, $aligns); $contacts = get_customer_contacts($myrow['debtor_no'], 'invoice');