X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep103.php;h=5eeeb22860b735725ce4cf3d2e459d10894df62c;hb=3ff9ed87cb909f19c8fe3e7dfda5df79d0c01a6c;hp=d6ebfb0052dbd5f89a8c6ebe1952efa259e30c85;hpb=45b9663b6305cb70c2f3f1782406232d3ed0d755;p=fa-stable.git diff --git a/reporting/rep103.php b/reporting/rep103.php index d6ebfb00..5eeeb228 100644 --- a/reporting/rep103.php +++ b/reporting/rep103.php @@ -1,15 +1,15 @@ . + See the License here . ***********************************************************************/ -$page_security = 2; +$page_security = 'SA_CUSTBULKREP'; // ---------------------------------------------------------------- // $ Revision: 2.0 $ // Creator: Joe Hunt @@ -25,7 +25,6 @@ include_once($path_to_root . "/gl/includes/gl_db.inc"); //---------------------------------------------------------------------------------------------------- -// trial_inquiry_controls(); print_customer_details_listing(); function get_customer_details_for_report($area=0, $salesid=0) @@ -81,7 +80,7 @@ function getTransactions($debtorno, $branchcode, $date) FROM ".TB_PREF."debtor_trans WHERE debtor_no='$debtorno' AND branch_code='$branchcode' - AND (type=10 or type=11) + AND (type=".ST_SALESINVOICE." OR type=".ST_CUSTCREDIT.") AND trandate >='$date'"; $result = db_query($sql,"No transactions were returned"); @@ -96,20 +95,23 @@ function print_customer_details_listing() { global $path_to_root; - include_once($path_to_root . "/reporting/includes/pdf_report.inc"); - $from = $_POST['PARAM_0']; $area = $_POST['PARAM_1']; $folk = $_POST['PARAM_2']; $more = $_POST['PARAM_3']; $less = $_POST['PARAM_4']; $comments = $_POST['PARAM_5']; + $destination = $_POST['PARAM_6']; + if ($destination) + include_once($path_to_root . "/reporting/includes/excel_report.inc"); + else + include_once($path_to_root . "/reporting/includes/pdf_report.inc"); $dec = 0; - if ($area == reserved_words::get_all_numeric()) + if ($area == ALL_NUMERIC) $area = 0; - if ($folk == reserved_words::get_all_numeric()) + if ($folk == ALL_NUMERIC) $folk = 0; if ($area == 0) @@ -145,7 +147,7 @@ function print_customer_details_listing() 3 => array('text' => _('Sales Folk'), 'from' => $salesfolk, 'to' => ''), 4 => array('text' => _('Activity'), 'from' => $morestr, 'to' => $lessstr)); - $rep = new FrontReport(_('Customer Details Listing'), "CustomerDetailsListing.pdf", user_pagesize()); + $rep = new FrontReport(_('Customer Details Listing'), "CustomerDetailsListing", user_pagesize()); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns);