Rerun of implemented Selectable Print Orientation (Portrait, Landscape) for all repor...
[fa-stable.git] / reporting / rep209.php
index 1340c61b0623b7ed24ada8a6ec2817604a9fd4ca..e5188bc6e812a28d9cd714259855a0534a82bc15 100644 (file)
@@ -69,11 +69,9 @@ function print_po()
        $comments = $_POST['PARAM_4'];
        $orientation = $_POST['PARAM_5'];
 
+       if (!$from || !$to) return;
+
        $orientation = ($orientation ? 'L' : 'P');
-       if ($from == null)
-               $from = 0;
-       if ($to == null)
-               $to = 0;
        $dec = user_price_dec();
 
        $cols = array(4, 60, 225, 300, 340, 385, 450, 515);
@@ -88,7 +86,7 @@ function print_po()
        if ($email == 0)
                $rep = new FrontReport(_('PURCHASE ORDER'), "PurchaseOrderBulk", user_pagesize(), 9, $orientation);
     if ($orientation == 'L')
-       $rep->recalculate_cols($cols);
+       recalculate_cols($cols);
 
        for ($i = $from; $i <= $to; $i++)
        {
@@ -97,12 +95,14 @@ function print_po()
                $params['bankaccount'] = $baccount['id'];
 
                if ($email == 1)
-                       $rep = new FrontReport("", "", user_pagesize(), $orientation);
+               {
+                       $rep = new FrontReport("", "", user_pagesize(), 9, $orientation);
+                       $rep->title = _('PURCHASE ORDER');
+                       $rep->filename = "PurchaseOrder" . $i . ".pdf";
+               }       
                $rep->SetHeaderType('Header2');
                $rep->currency = $cur;
                $rep->Font();
-               $rep->title = _('PURCHASE ORDER');
-               $rep->filename = "PurchaseOrder" . $i . ".pdf";
                $rep->Info($params, $cols, null, $aligns);
 
                $contacts = get_supplier_contacts($myrow['supplier_id'], 'order');