Merged changes from main trunk up to 2.2.5
[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;
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->currency = $cur;
62                 $rep->Font();
63                 $rep->Info($params, $cols, null, $aligns);
64         }
65
66         for ($i = $from; $i <= $to; $i++)
67         {
68                 $myrow = get_sales_order_header($i, ST_SALESQUOTE);
69                 $baccount = get_default_bank_account($myrow['curr_code']);
70                 $params['bankaccount'] = $baccount['id'];
71                 $branch = get_branch($myrow["branch_code"]);
72                 if ($email == 1)
73                 {
74                         $rep = new FrontReport("", "", user_pagesize());
75                         $rep->currency = $cur;
76                         $rep->Font();
77                         $rep->filename = "SalesQuotation" . $i . ".pdf";
78                         $rep->Info($params, $cols, null, $aligns);
79                 }
80                 $rep->title = _("SALES QUOTATION");
81                 $rep->Header2($myrow, $branch, $myrow, $baccount, ST_SALESQUOTE);
82
83                 $result = get_sales_order_details($i, ST_SALESQUOTE);
84                 $SubTotal = 0;
85                 while ($myrow2=db_fetch($result))
86                 {
87                         $Net = round2(((1 - $myrow2["discount_percent"]) * $myrow2["unit_price"] * $myrow2["quantity"]),
88                            user_price_dec());
89                         $SubTotal += $Net;
90                         $DisplayPrice = number_format2($myrow2["unit_price"],$dec);
91                         $DisplayQty = number_format2($myrow2["quantity"],get_qty_dec($myrow2['stk_code']));
92                         $DisplayNet = number_format2($Net,$dec);
93                         if ($myrow2["discount_percent"]==0)
94                                 $DisplayDiscount ="";
95                         else
96                                 $DisplayDiscount = number_format2($myrow2["discount_percent"]*100,user_percent_dec()) . "%";
97                         $rep->TextCol(0, 1,     $myrow2['stk_code'], -2);
98                         $oldrow = $rep->row;
99                         $rep->TextColLines(1, 2, $myrow2['description'], -2);
100                         $newrow = $rep->row;
101                         $rep->row = $oldrow;
102                         $rep->TextCol(2, 3,     $DisplayQty, -2);
103                         $rep->TextCol(3, 4,     $myrow2['units'], -2);
104                         $rep->TextCol(4, 5,     $DisplayPrice, -2);
105                         $rep->TextCol(5, 6,     $DisplayDiscount, -2);
106                         $rep->TextCol(6, 7,     $DisplayNet, -2);
107                         $rep->row = $newrow;
108                         //$rep->NewLine(1);
109                         if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight))
110                                 $rep->Header2($myrow, $branch, $myrow, $baccount, ST_SALESQUOTE);
111                 }
112                 if ($myrow['comments'] != "")
113                 {
114                         $rep->NewLine();
115                         $rep->TextColLines(1, 5, $myrow['comments'], -2);
116                 }
117                 $DisplaySubTot = number_format2($SubTotal,$dec);
118                 $DisplayFreight = number_format2($myrow["freight_cost"],$dec);
119
120                 $rep->row = $rep->bottomMargin + (15 * $rep->lineHeight);
121                 $linetype = true;
122                 $doctype = ST_SALESQUOTE;
123                 if ($rep->currency != $myrow['curr_code'])
124                 {
125                         include($path_to_root . "/reporting/includes/doctext2.inc");
126                 }
127                 else
128                 {
129                         include($path_to_root . "/reporting/includes/doctext.inc");
130                 }
131
132                 $rep->TextCol(3, 6, $doc_Sub_total, -2);
133                 $rep->TextCol(6, 7,     $DisplaySubTot, -2);
134                 $rep->NewLine();
135                 $rep->TextCol(3, 6, $doc_Shipping, -2);
136                 $rep->TextCol(6, 7,     $DisplayFreight, -2);
137                 $rep->NewLine();
138                 $DisplayTotal = number_format2($myrow["freight_cost"] + $SubTotal, $dec);
139                 $rep->Font('bold');
140                 if ($myrow['tax_included'] == 0)
141                         $rep->TextCol(3, 6, $doc_TOTAL_ORDER, - 2);
142                 else    
143                         $rep->TextCol(3, 6, $doc_TOTAL_ORDER2, - 2);
144                 $rep->TextCol(6, 7,     $DisplayTotal, -2);
145                 $words = price_in_words($myrow["freight_cost"] + $SubTotal, ST_SALESQUOTE);
146                 if ($words != "")
147                 {
148                         $rep->NewLine(1);
149                         $rep->TextCol(1, 7, $myrow['curr_code'] . ": " . $words, - 2);
150                 }       
151                 $rep->Font();
152                 if ($email == 1)
153                 {
154                         if ($myrow['contact_email'] == '')
155                         {
156                                 $myrow['contact_email'] = $branch['email'];
157                                 if ($myrow['contact_email'] == '')
158                                         $myrow['contact_email'] = $myrow['master_email'];
159                                 $myrow['DebtorName'] = $branch['br_name'];
160                         }
161                         //$myrow['reference'] = $i;
162                         $rep->End($email, $doc_Invoice_no . " " . $i, $myrow);
163                 }
164         }
165         if ($email == 0)
166                 $rep->End();
167 }
168
169 ?>