New files from unstable branch
[fa-stable.git] / reporting / rep111.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = $_POST['PARAM_0'] == $_POST['PARAM_1'] ?
13         'SA_SALESTRANSVIEW' : 'SA_SALESBULKREP';
14 // ----------------------------------------------------------------
15 // $ Revision:  2.0 $
16 // Creator:     Joe Hunt
17 // date_:       2005-05-19
18 // Title:       Print Sales Quotations
19 // ----------------------------------------------------------------
20 $path_to_root="..";
21
22 include_once($path_to_root . "/includes/session.inc");
23 include_once($path_to_root . "/includes/date_functions.inc");
24 include_once($path_to_root . "/includes/data_checks.inc");
25 include_once($path_to_root . "/sales/includes/sales_db.inc");
26
27 //----------------------------------------------------------------------------------------------------
28
29 print_sales_quotations();
30
31 function print_sales_quotations()
32 {
33         global $path_to_root, $print_as_quote, $print_invoice_no;
34
35         include_once($path_to_root . "/reporting/includes/pdf_report.inc");
36
37         $from = $_POST['PARAM_0'];
38         $to = $_POST['PARAM_1'];
39         $currency = $_POST['PARAM_2'];
40         $email = $_POST['PARAM_3'];
41         $comments = $_POST['PARAM_4'];
42
43         if ($from == null)
44                 $from = 0;
45         if ($to == null)
46                 $to = 0;
47         $dec = user_price_dec();
48
49         $cols = array(4, 60, 225, 300, 325, 385, 450, 515);
50
51         // $headers in doctext.inc
52         $aligns = array('left', 'left', 'right', 'left', 'right', 'right', 'right');
53
54         $params = array('comments' => $comments);
55
56         $cur = get_company_Pref('curr_default');
57
58         if ($email == 0)
59         {
60                 $rep = new FrontReport(_("SALES QUOTATION"), "SalesQuotationBulk", user_pagesize());
61                 $rep->SetHeaderType('Header2');
62                 $rep->currency = $cur;
63                 $rep->Font();
64                 $rep->Info($params, $cols, null, $aligns);
65         }
66
67         for ($i = $from; $i <= $to; $i++)
68         {
69                 $myrow = get_sales_order_header($i, ST_SALESQUOTE);
70                 $baccount = get_default_bank_account($myrow['curr_code']);
71                 $params['bankaccount'] = $baccount['id'];
72                 $branch = get_branch($myrow["branch_code"]);
73                 if ($email == 1)
74                 {
75                         $rep = new FrontReport("", "", user_pagesize());
76                         $rep->SetHeaderType('Header2');
77                         $rep->currency = $cur;
78                         $rep->Font();
79                         if ($print_invoice_no == 1)
80                                 $rep->filename = "SalesQuotation" . $i . ".pdf";
81                         else    
82                                 $rep->filename = "SalesQuotation" . $myrow['reference'] . ".pdf";
83                         $rep->Info($params, $cols, null, $aligns);
84                 }
85                 $rep->title = _("SALES QUOTATION");
86                 $contacts = get_branch_contacts($branch['branch_code'], 'order', $branch['debtor_no']);
87                 $rep->SetCommonData($myrow, $branch, $myrow, $baccount, ST_SALESQUOTE, $contacts);
88                 //$rep->headerFunc = 'Header2';
89                 $rep->NewPage();
90
91                 $result = get_sales_order_details($i, ST_SALESQUOTE);
92                 $SubTotal = 0;
93                 while ($myrow2=db_fetch($result))
94                 {
95                         $Net = round2(((1 - $myrow2["discount_percent"]) * $myrow2["unit_price"] * $myrow2["quantity"]),
96                            user_price_dec());
97                         $SubTotal += $Net;
98                         $DisplayPrice = number_format2($myrow2["unit_price"],$dec);
99                         $DisplayQty = number_format2($myrow2["quantity"],get_qty_dec($myrow2['stk_code']));
100                         $DisplayNet = number_format2($Net,$dec);
101                         if ($myrow2["discount_percent"]==0)
102                                 $DisplayDiscount ="";
103                         else
104                                 $DisplayDiscount = number_format2($myrow2["discount_percent"]*100,user_percent_dec()) . "%";
105                         $rep->TextCol(0, 1,     $myrow2['stk_code'], -2);
106                         $oldrow = $rep->row;
107                         $rep->TextColLines(1, 2, $myrow2['description'], -2);
108                         $newrow = $rep->row;
109                         $rep->row = $oldrow;
110                         $rep->TextCol(2, 3,     $DisplayQty, -2);
111                         $rep->TextCol(3, 4,     $myrow2['units'], -2);
112                         $rep->TextCol(4, 5,     $DisplayPrice, -2);
113                         $rep->TextCol(5, 6,     $DisplayDiscount, -2);
114                         $rep->TextCol(6, 7,     $DisplayNet, -2);
115                         $rep->row = $newrow;
116                         //$rep->NewLine(1);
117                         if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight))
118                                 $rep->NewPage();
119                 }
120                 if ($myrow['comments'] != "")
121                 {
122                         $rep->NewLine();
123                         $rep->TextColLines(1, 5, $myrow['comments'], -2);
124                 }
125                 $DisplaySubTot = number_format2($SubTotal,$dec);
126                 $DisplayFreight = number_format2($myrow["freight_cost"],$dec);
127
128                 $rep->row = $rep->bottomMargin + (15 * $rep->lineHeight);
129                 $linetype = true;
130                 $doctype = ST_SALESQUOTE;
131                 include($path_to_root . "/reporting/includes/doctext.inc");
132
133                 $rep->TextCol(3, 6, $doc_Sub_total, -2);
134                 $rep->TextCol(6, 7,     $DisplaySubTot, -2);
135                 $rep->NewLine();
136                 $rep->TextCol(3, 6, $doc_Shipping, -2);
137                 $rep->TextCol(6, 7,     $DisplayFreight, -2);
138                 $rep->NewLine();
139                 $DisplayTotal = number_format2($myrow["freight_cost"] + $SubTotal, $dec);
140                 $rep->Font('bold');
141                 if ($myrow['tax_included'] == 0)
142                         $rep->TextCol(3, 6, $doc_TOTAL_ORDER, - 2);
143                 else    
144                         $rep->TextCol(3, 6, $doc_TOTAL_ORDER2, - 2);
145                 $rep->TextCol(6, 7,     $DisplayTotal, -2);
146                 $words = price_in_words($myrow["freight_cost"] + $SubTotal, ST_SALESQUOTE);
147                 if ($words != "")
148                 {
149                         $rep->NewLine(1);
150                         $rep->TextCol(1, 7, $myrow['curr_code'] . ": " . $words, - 2);
151                 }       
152                 $rep->Font();
153                 if ($email == 1)
154                 {
155                         if ($print_invoice_no == 1)
156                                 $myrow['reference'] = $i;
157                         $rep->End($email, $doc_Invoice_no . " " . $myrow['reference'], $myrow);
158                 }
159         }
160         if ($email == 0)
161                 $rep->End();
162 }
163
164 ?>