X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep709.php;h=e52f293395c08b265a20e203b0eb4cce09a88daa;hb=6c2eb8504065becb97a0bbe66f87ed18d067293f;hp=d944960c87b16e97d4c9be84ecedd9adec0563e7;hpb=b37623cf1de2cfce6825744557d76475f002321f;p=fa-stable.git diff --git a/reporting/rep709.php b/reporting/rep709.php index d944960c..e52f2933 100644 --- a/reporting/rep709.php +++ b/reporting/rep709.php @@ -71,14 +71,18 @@ function getTaxInfo($id) function print_tax_report() { - global $path_to_root, $trans_dir, $Hooks, $systypes_array; + global $path_to_root, $trans_dir, $systypes_array; $from = $_POST['PARAM_0']; $to = $_POST['PARAM_1']; $summaryOnly = $_POST['PARAM_2']; $comments = $_POST['PARAM_3']; + $destination = $_POST['PARAM_4']; - include_once($path_to_root . "/reporting/includes/pdf_report.inc"); + if ($destination) + include_once($path_to_root . "/reporting/includes/excel_report.inc"); + else + include_once($path_to_root . "/reporting/includes/pdf_report.inc"); $dec = user_price_dec(); @@ -165,8 +169,10 @@ function print_tax_report() $aligns2 = array('left', 'right', 'right', 'right', 'right', 'right', 'right'); - for ($i = 0; $i < count($cols2); $i++) - $rep->cols[$i] = $rep->leftMargin + $cols2[$i]; + $rep->Info($params, $cols2, $headers2, $aligns2); + + //for ($i = 0; $i < count($cols2); $i++) + // $rep->cols[$i] = $rep->leftMargin + $cols2[$i]; $rep->headers = $headers2; $rep->aligns = $aligns2; @@ -196,10 +202,7 @@ function print_tax_report() $rep->Font(); $rep->NewLine(); - if (method_exists($Hooks, 'TaxFunction')) - { - $Hooks->TaxFunction(); - } + hook_tax_report_done(); $rep->End(); }