X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=reporting%2Frep112.php;h=f04ee1d77f5cd1df851782269101da5492f0504d;hb=ef5133a65092c38f70278a2ed22952e3625855dc;hp=d2e06c0964a0e4e221f097366220d21d19f9cf02;hpb=565a41e2d7fd4b4a32848e4829c11dbbcb5881d1;p=fa-stable.git diff --git a/reporting/rep112.php b/reporting/rep112.php index d2e06c09..f04ee1d7 100644 --- a/reporting/rep112.php +++ b/reporting/rep112.php @@ -71,14 +71,14 @@ function print_receipts() $currency = $_POST['PARAM_2']; $comments = $_POST['PARAM_3']; - if ($from == null) - $from = 0; - if ($to == null) - $to = 0; + if (!$from || !$to) return; + $dec = user_price_dec(); $fno = explode("-", $from); $tno = explode("-", $to); + $from = min($fno[0], $tno[0]); + $to = max($fno[0], $tno[0]); $cols = array(4, 85, 150, 225, 275, 360, 450, 515); @@ -95,10 +95,10 @@ function print_receipts() $rep->Font(); $rep->Info($params, $cols, null, $aligns); - for ($i = $fno[0]; $i <= $tno[0]; $i++) + for ($i = $from; $i <= $to; $i++) { - if ($fno[0] == $tno[0]) - $types = array($fno[1]); + if ($from == $to) + $types = array($from); else $types = array(ST_BANKDEPOSIT, ST_CUSTPAYMENT); foreach ($types as $j)