Rerun of implemented Selectable Print Orientation (Portrait, Landscape) for all repor...
[fa-stable.git] / reporting / rep210.php
index 4b9489c53685c00bb38c958ca8c0a1fc9aa14cbd..0b3f92a4463db6bd3962471d38993c54f78e8ac5 100644 (file)
@@ -60,9 +60,9 @@ function print_remittances()
        $comments = $_POST['PARAM_4'];
        $orientation = $_POST['PARAM_5'];
 
-       $orientation = ($orientation ? 'L' : 'P');
        if (!$from || !$to) return;
 
+       $orientation = ($orientation ? 'L' : 'P');
        $dec = user_price_dec();
 
        $fno = explode("-", $from);
@@ -82,7 +82,7 @@ function print_remittances()
        if ($email == 0)
                $rep = new FrontReport(_('REMITTANCE'), "RemittanceBulk", user_pagesize(), 9, $orientation);
     if ($orientation == 'L')
-       $rep->recalculate_cols($cols);
+       recalculate_cols($cols);
 
        for ($i = $from; $i <= $to; $i++)
        {
@@ -100,12 +100,14 @@ function print_remittances()
                        $params['bankaccount'] = $baccount['bank_act'];
 
                        if ($email == 1)
+                       {
                                $rep = new FrontReport("", "", user_pagesize(), 9, $orientation);
+                               $rep->title = _('REMITTANCE');
+                               $rep->filename = "Remittance" . $i . ".pdf";
+                       }       
                        $rep->SetHeaderType('Header2');
                        $rep->currency = $cur;
                        $rep->Font();
-                       $rep->title = _('REMITTANCE');
-                       $rep->filename = "Remittance" . $i . ".pdf";
                        $rep->Info($params, $cols, null, $aligns);
 
                        $contacts = get_supplier_contacts($myrow['supplier_id'], 'invoice');