Merged changes up to 2.3.16 into unstable
[fa-stable.git] / reporting / rep109.php
index b5acbab7050552482d353ebcc2ee41f06b4e39f4..1f7270c4840e1c1885d3b013430ee38fea7dede7 100644 (file)
@@ -83,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();