Rerun. Changed query_size in users table to unsigned tinyint(1)
[fa-stable.git] / reporting / rep109.php
index 64502e2abd6202f3958b58f739ca347579f95592..1f7270c4840e1c1885d3b013430ee38fea7dede7 100644 (file)
@@ -45,11 +45,9 @@ function print_sales_orders()
        $comments = $_POST['PARAM_5'];
        $orientation = $_POST['PARAM_6'];
 
+       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, 325, 385, 450, 515);
@@ -70,7 +68,7 @@ function print_sales_orders()
                        $rep = new FrontReport(_("QUOTE"), "QuoteBulk", user_pagesize(), 9, $orientation);
        }
     if ($orientation == 'L')
-       $rep->recalculate_cols($cols);
+       recalculate_cols($cols);
 
        for ($i = $from; $i <= $to; $i++)
        {
@@ -85,17 +83,26 @@ function print_sales_orders()
                $rep->Font();
                if ($print_as_quote == 1)
                {
-                       $rep->title = _('QUOTE');
-                       $rep->filename = "Quote" . $i . ".pdf";
+                       $rep = new FrontReport("", "", user_pagesize(), 9, $orientation);
+                       if ($print_as_quote == 1)
+                       {
+                               $rep->title = _('QUOTE');
+                               $rep->filename = "Quote" . $i . ".pdf";
+                       }
+                       else
+                       {
+                               $rep->title = _("SALES ORDER");
+                               $rep->filename = "SalesOrder" . $i . ".pdf";
+                       }
                }
                else
-               {
-                       $rep->title = _("SALES ORDER");
-                       $rep->filename = "SalesOrder" . $i . ".pdf";
-               }
+                       $rep->title = ($print_as_quote==1 ? _("QUOTE") : _("SALES ORDER"));
+               $rep->SetHeaderType('Header2');
+               $rep->currency = $cur;
+               $rep->Font();
                $rep->Info($params, $cols, null, $aligns);
 
-               $contacts = get_branch_contacts($branch['branch_code'], 'order', $branch['debtor_no'], false);
+               $contacts = get_branch_contacts($branch['branch_code'], 'order', $branch['debtor_no'], true);
                $rep->SetCommonData($myrow, $branch, $myrow, $baccount, ST_SALESORDER, $contacts);
                $rep->NewPage();